/* 에어컨 수리 페이지 전용 스타일 */

/* 히어로 제목 기본 스타일 */
.hero-title .title-line1,
.hero-title .title-line2 {
    display: inline;
}

.hero-title .title-line1::after {
    content: ' ';
}

/* 에어컨 수리 페이지의 서비스 이미지 높이 증가 */
.services .service-image {
    height: 300px; /* 기본 220px에서 300px로 증가 */
}

/* 카드 간격 조정 */
.services .service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    padding: 2rem 2rem 2rem; /* 하단 패딩만 조정 */
    line-height: 1.2;
    margin-bottom: 0; /* 설명 문구 없으므로 마진 제거 */
}

/* 445px 이하에서 히어로 제목 두 줄 분리 */
@media (max-width: 445px) {
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .title-line1,
    .title-line2 {
        display: block;
    }
}

/* 반응형 조정 */
@media (max-width: 768px) {
    .services .service-image {
        height: 280px;
    }
    
    .services .service-card h3 {
        font-size: 1.375rem;
        padding: 1.75rem 1.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .services .service-image {
        height: 250px;
    }
    
    .services .service-card h3 {
        font-size: 1.25rem;
        padding: 1.5rem 1.25rem 1.5rem;
    }
}
