/**
 * Related Services Component
 * 관련 서비스 링크 섹션
 */

.related-services {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.related-services__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.related-services__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.related-services__grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.related-services__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 200px;
    flex: 1;
    max-width: 300px;
}

.related-services__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.related-services__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.related-services__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.related-services__desc {
    font-size: 0.9rem;
    color: #666;
}

/* 모바일 대응 */
@media (max-width: 600px) {
    .related-services {
        padding: 40px 16px;
    }

    .related-services__title {
        font-size: 1.25rem;
    }

    .related-services__grid {
        flex-direction: column;
    }

    .related-services__item {
        max-width: 100%;
        padding: 24px 20px;
    }
}
