.system-wrap h1 {
    margin-bottom: 2rem;
}

.system-search-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.server-select {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.server-select li {    
    overflow: hidden;
    border: 3px solid var(--color-lightgray);    
    border-radius: 20px;    
}

.server-select .active {
    background: var(--color-deepblue);
    border-color: var(--color-deepblue);    
}

.server-select li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.8rem;
    color: var(--color-gray3);
    text-decoration: none;    
}

.server-select .active a {
    color: var(--color-white);
}

#system_form {
    position: relative;
    width: 350px;
    height: 50px;
}

#system_form #searchkw {
    width: 100%;
    height: 100%;
    padding-left: 10px;
    padding-right: 50px;
    border: 1px solid var(--color-lightgray);  
    outline: none;  
}

#system_form #search_confirm {
    position: absolute;
    top: 0;
    right: 10px;
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
}
#system_form #search_confirm svg {
    width: 25px;
    height: 25px;
}

.system-type {
    width: 200px;
    height: 50px;
    background: #31325C;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 25px;
}

.system-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;    
}

.system-list:not(:last-child) {
    margin-bottom: 2rem;
}

.system-list li {
    position: relative;
}
.system-list li:not(:last-of-type)::after {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    content: "";
    width: 1px;
    height: 12px;
    background: var(--color-dark);
}

.system-list li a {
    display: block;
    padding: 0 10px;
    text-decoration: none;
    color: var(--color-dark);
    transition: color 0.2s ease;
}
.system-list li a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}