/* 클리닉 페이지 개선된 공통 스타일 */

/* 프로세스 타임라인 개선 - 디자인 통일 */
.process-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    flex-wrap: wrap;
}

.process-timeline::before {
    display: none;
}

.process-item {
    width: auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.process-content h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #333;
}

.process-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* 검사 항목 그리드 - 원인 섹션과 동일한 디자인 */
.test-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.test-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

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

.test-icon {
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.test-icon i {
    font-size: 2.5rem;
    color: #0066cc;
}

.test-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.test-item p {
    color: #666;
    line-height: 1.6;
}

/* 치료 방법 카드 개선 */
.treatment-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.treatment-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.treatment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.treatment-header i {
    font-size: 2rem;
    color: #0066cc;
}

.treatment-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.treatment-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.treatment-content li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.treatment-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* 모바일에서 카드 2개 표시 시 */
@media (max-width: 1200px) {
    .test-items-grid,
    .treatment-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .test-items-grid,
    .treatment-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .treatment-card {
        padding: 30px 20px;
    }
    
    .treatment-header {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .treatment-header i {
        font-size: 1.5rem;
    }
    
    .treatment-header h4 {
        font-size: 1.25rem;
    }
}
