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