/* 장비소개 페이지 전용 스타일 */
/* doctors.css와 동일한 기본 구조 사용 */

/* 애니메이션 클래스 */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* 서브페이지 헤더 - doctors.css와 동일 */
.sub-header {
    position: relative;
    height: 400px;
    background-image: url('/assets/images/greting.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

/* 모바일에서 margin-top 제거 */
@media (max-width: 768px) {
    .sub-header {
        margin-top: 0;
    }
}

.sub-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.sub-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(20, 20, 20, 0.8) 100%);
    z-index: 1;
}

.sub-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.sub-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

/* 브레드크럼 */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: white;
    font-weight: 500;
}

/* 장비소개 섹션 */
.equipment-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 14px;
    color: #2c5aa0;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
    line-height: 1.4;
}

.section-title .highlight {
    color: #2c5aa0;
    font-weight: 500;
}

/* 카테고리 스타일 */
.equipment-category {
    margin-bottom: 100px;
}

.equipment-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 3px solid #2c5aa0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title i {
    color: #2c5aa0;
    font-size: 32px;
}

/* 장비 그리드 */
.equipment-grid {
    display: grid;
    gap: 40px;
}

/* 장비 아이템 */
.equipment-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 장비 이미지 */
.equipment-image {
    position: relative;
    width: 300px;
    height: 250px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.equipment-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.05);
}

/* 장비 콘텐츠 */
.equipment-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipment-content h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.equipment-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* 장비 특징 태그 */
.equipment-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature {
    display: inline-block;
    padding: 8px 20px;
    background: #e8f4f8;
    color: #2c5aa0;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .equipment-item {
        grid-template-columns: 250px 1fr;
    }
    
    .equipment-image {
        width: 250px;
        height: 200px;
    }
}

@media (max-width: 992px) {
    .equipment-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .equipment-image {
        width: 100%;
        height: 300px;
    }
    
    .equipment-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    /* 모바일 스타일 */
    .equipment-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.4;
        word-break: keep-all;
    }
    
    .section-title .highlight {
        display: inline-block;
        white-space: nowrap;
    }
    
    /* 카테고리 */
    .category-title {
        font-size: 22px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    
    .category-title i {
        font-size: 24px;
    }
    
    .equipment-category {
        margin-bottom: 50px;
    }
    
    /* 모바일에서 한 줄에 하나씩 세로 배치 */
    .equipment-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    /* 장비 아이템 - 카드 스타일 */
    .equipment-item {
        display: flex;
        flex-direction: column;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        background: #ffffff;
        border: 1px solid #f0f0f0;
        transform: none !important; /* hover 효과 제거 */
    }
    
    .equipment-item:hover {
        transform: none !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    }
    
    .equipment-item:hover .equipment-image img {
        transform: none !important;
    }
    
    .equipment-image {
        width: 100%;
        height: 200px;
        background: #f8f9fa;
        border-bottom: 1px solid #f0f0f0;
        padding: 15px;
    }
    
    .equipment-content {
        padding: 25px 20px;
        background: #ffffff;
    }
    
    .equipment-content h4 {
        font-size: 18px;
        margin-bottom: 12px;
        color: #2c5aa0;
        font-weight: 600;
    }
    
    .equipment-content p {
        font-size: 14px;
        line-height: 1.7;
        word-break: keep-all;
        color: #666;
        margin-bottom: 20px;
    }
    
    .equipment-features {
        gap: 8px;
        justify-content: flex-start;
    }
    
    .feature {
        font-size: 12px;
        padding: 6px 14px;
        background: #e8f4f8;
        color: #2c5aa0;
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .equipment-image {
        height: 180px;
    }
    
    .equipment-content {
        padding: 20px 15px;
    }
    
    .equipment-content h4 {
        font-size: 16px;
    }
    
    .equipment-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .feature {
        font-size: 11px;
        padding: 5px 12px;
    }
}
