/* ===== section1.css ===== */

.service-section {
    padding-top: 150px;
}

.service-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 헤더 */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.icon-circle a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.icon-circle a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-header .title {
    color: #111;
    margin: 0;
}

.service-header .more {
    color: #555;
    text-decoration: none;
}

.service-header .more:hover {
    color: #433CC2;
}

/* 아이콘 리스트 */
.service-icon-list {
    display: flex;
    align-items: flex-start;
    gap: 36px;
}

/* 아이콘 아이템 */
.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}


.service-icon-list {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 50px;
}

/* 원형 배경 */
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 1px solid #E7E7E7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-item:hover .icon-circle {
    border: 1px solid #433CC2;
    box-shadow: 0px 4px 25px rgba(67, 60, 194, 0.08);
}



.service-icon-item:hover .icon-label {
    color: #433CC2;
    font-weight: 700;
}

/* 라벨 */
.icon-label {
    color: #333;
    text-align: center;
    margin: 0;
    white-space: nowrap;
    margin-top: 10px;
}

/* 반응형 */
@media (max-width: 768px) {
    .service-icon-list {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .service-icon-item {
        width: calc(33.333% - 20px);
    }
    
    .service-header {
        padding-right: 30px;
    }
    
    .service-header .more {
        flex-shrink: 0;
    }
    
    .service-container {
    	padding: 0;
    }
    
}