/* =============================================================================
   SURGERY PAGE: Köldöksérv (Umbilical Hernia)
   ============================================================================= */

/* Header */
.uh-header {
    background: linear-gradient(135deg, #0a2540 0%, #1a4a7a 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}

.uh-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.uh-header-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
}

/* Article body */
.uh-article {
    max-width: 960px;
    margin: 0 auto;
    padding: 3.5rem 1rem;
}

/* Intro split: text + image */
.uh-intro-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.uh-intro-text p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.uh-intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.uh-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Section title */
.uh-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 3rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-blue-light);
}

/* Divider */
.uh-divider {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--border-light), transparent);
    margin: 3rem 0;
}

/* Symptoms section */
.uh-symptoms-intro {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Urgent box */
.uh-urgent-box {
    background: #fef2f2;
    border-left: 4px solid var(--danger);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
}

.uh-urgent-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--danger);
    margin: 0 0 0.5rem;
}

.uh-urgent-box ul {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
}

.uh-urgent-box ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #7f1d1d;
    padding: 0.15rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.uh-urgent-box ul li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    font-size: 0.85rem;
}

.uh-urgent-box > p {
    font-size: 1rem;
    color: #991b1b;
    font-weight: 600;
    margin: 0;
}

/* Treatment intro */
.uh-treatment-intro {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Methods heading */
.uh-methods-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

/* Info note box (inside method cards) */
.uh-info-note {
    background: var(--bg-blue-light);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.uh-info-note p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* Surgery method cards */
.uh-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.uh-method {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.uh-method:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.uh-method-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
}

.uh-method--open .uh-method-badge {
    background: linear-gradient(135deg, var(--text-secondary), #3d5065);
}

.uh-method--robot .uh-method-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.uh-method--lap .uh-method-badge {
    background: linear-gradient(135deg, var(--accent), #2e9e85);
}

.uh-method-badge-num {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.uh-method-body {
    padding: 1.5rem;
}

.uh-method-body > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Advantages grid (robot section) */
.uh-advantages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.uh-advantage-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.uh-advantage-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.uh-advantage-icon {
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.uh-advantage-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}

.uh-advantage-card p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0;
}

/* Procedure section */
.uh-procedure-section {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: var(--radius-md);
}

.uh-procedure-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem;
}

.uh-procedure-section p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.uh-procedure-section p:last-child {
    margin-bottom: 0;
}

/* Video wrapper */
.uh-video-wrapper {
    margin: 1.5rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
}

.uh-video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

/* Recovery sub-section inside method card */
.uh-method-recovery {
    margin-top: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.uh-method-recovery h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.6rem;
}

.uh-method-recovery-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.uh-method-recovery-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.uh-method-recovery-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Back link */
.uh-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.uh-back:hover {
    gap: 0.75rem;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (min-width: 768px) {
    .uh-intro-split {
        grid-template-columns: 1.3fr 1fr;
        gap: 3rem;
    }

    .uh-advantages {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .uh-header {
        padding: 100px 0 40px;
    }

    .uh-header h1 {
        font-size: 1.7rem;
    }

    .uh-article {
        padding: 2rem 1rem;
    }

    .uh-method-body {
        padding: 1.25rem;
    }

    .uh-advantage-card {
        padding: 1rem 1.25rem;
    }
}