/* css/pages/chirurgia-andrologiczna.css - CHIRURGIA ANDROLOGICZNA */
/* ===================== MODERN SURGICAL STYLES WITH CLEAN DESIGN ===================== */

/* Import base specialization styles */
@import url('../specialization.css');

/* ===================== HERO SECTION WITH BACKGROUND IMAGE ===================== */
.specialization-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    width: 100%;
    margin-top: -70px;
    padding-top: 70px;
}

.specialization-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../../zdj/chirurgia_andrologiczna.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.8) saturate(0.8) contrast(0.95);
}

.specialization-hero-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(8, 47, 97, 0.7) 0%, rgba(10, 51, 94, 0.8) 50%, rgba(8, 47, 97, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.specialization-hero .container {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
}

.specialization-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1em;
}

/* Jasny równoległobok dla smaczku */
.specialization-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.1) 100%);
    transform: skewX(-15deg);
    z-index: 2;
}

/* Responsywność */
@media (max-width: 768px) {
    .specialization-hero {
        height: auto;
        min-height: unset;
        padding: 140px 0 40px;
    }

    .specialization-hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

.specialization-hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================== CLEAN TITLE FORMATTING LIKE WAZEKTOMIA ===================== */
.page-template-template-chirurgia-andrologiczna .section-title h1 {
    font-family: 'Michroma', sans-serif;
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    line-height: 1.3;
    padding-bottom: 40px;
    display: inline-block;
}

.page-template-template-chirurgia-andrologiczna .section-title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* ===================== IKONY W PRAWYM GÓRNYM ROGU KART ===================== */
.page-template-template-chirurgia-andrologiczna .description-block {
    position: relative;
}

.page-template-template-chirurgia-andrologiczna .description-block .card-icon-wrap {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(8,47,97,0.3);
    z-index: 2;
}

.page-template-template-chirurgia-andrologiczna .description-block .card-icon-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.page-template-template-chirurgia-andrologiczna .description-block .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.page-template-template-chirurgia-andrologiczna .description-block .card-icon i {
    color: var(--white);
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Specyficzne ikony dla każdej karty */
.page-template-template-chirurgia-andrologiczna .description-block:nth-child(1) .card-icon i:before { content: '\f0f0'; } /* fa-ambulance */
.page-template-template-chirurgia-andrologiczna .description-block:nth-child(2) .card-icon i:before { content: '\f3cb'; } /* fa-cut */
.page-template-template-chirurgia-andrologiczna .description-block:nth-child(3) .card-icon i:before { content: '\f291'; } /* fa-thermometer-half */
.page-template-template-chirurgia-andrologiczna .description-block:nth-child(4) .card-icon i:before { content: '\f0f1'; } /* fa-stethoscope */
.page-template-template-chirurgia-andrologiczna .description-block {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
    border-radius: 15px;
    padding: 48px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(8,47,97,0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-template-template-chirurgia-andrologiczna .description-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 0;
    box-shadow: none;
}

/* Clean headings */
.page-template-template-chirurgia-andrologiczna .description-block h2 {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    line-height: 1.3;
}

.page-template-template-chirurgia-andrologiczna .description-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(8, 47, 97, 0.3);
}

.page-template-template-chirurgia-andrologiczna .description-block h3 {
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 35px 0 20px 0;
    position: relative;
    padding-left: 30px;
    line-height: 1.4;
}

.page-template-template-chirurgia-andrologiczna .description-block h3::before {
    content: '⚕️';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Clean paragraphs */
.page-template-template-chirurgia-andrologiczna .description-block p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: justify;
}

.page-template-template-chirurgia-andrologiczna .description-block p:last-child {
    margin-bottom: 0;
}

/* Clean lists */
.page-template-template-chirurgia-andrologiczna .description-block ul {
    margin: 15px 0;
    padding-left: 0;
}

.page-template-template-chirurgia-andrologiczna .description-block li {
    color: var(--dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.page-template-template-chirurgia-andrologiczna .description-block li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.page-template-template-chirurgia-andrologiczna .description-block li:last-child {
    margin-bottom: 0;
}

/* Clean clinic intro block - centered like peyroniego intro */
.page-template-template-chirurgia-andrologiczna .clinic-intro-block {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
    border: 1px solid rgba(8,47,97,0.1);
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}

.page-template-template-chirurgia-andrologiczna .clinic-intro-block p {
    color: var(--dark);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* ===================== CLEAN SURGICAL TECHNIQUES GRID ===================== */
.surgical-techniques {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.technique-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(8, 47, 97, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.technique-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(8, 47, 97, 0.3);
}

.technique-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.technique-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================== CLEAN CONTACT CTA ===================== */
.page-template-template-chirurgia-andrologiczna .contact-cta {
    background: linear-gradient(135deg, rgba(8, 47, 97, 0.08), rgba(0, 163, 224, 0.06));
    border-radius: 25px;
    padding: 60px 40px;
    text-align: center;
    margin: 80px 0;
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, var(--primary), var(--secondary)) 1;
    position: relative;
    overflow: hidden;
}

.page-template-template-chirurgia-andrologiczna .contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(8,47,97,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(8,47,97,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(8,47,97,0.1)"/></svg>');
    opacity: 0.5;
}

.page-template-template-chirurgia-andrologiczna .contact-cta h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.page-template-template-chirurgia-andrologiczna .contact-cta h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.page-template-template-chirurgia-andrologiczna .contact-cta p {
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-template-template-chirurgia-andrologiczna .contact-cta .btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(8, 47, 97, 0.4);
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.page-template-template-chirurgia-andrologiczna .contact-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(8, 47, 97, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.page-template-template-chirurgia-andrologiczna .contact-cta .btn::before {
    content: '📞';
    margin-right: 10px;
    font-size: 1.2rem;
}

/* ===================== CLEAN RESPONSIVE DESIGN ===================== */
@media (max-width: 768px) {
    .page-template-template-chirurgia-andrologiczna .section-title h1 {
        font-size: 2.2rem;
    }

    .page-template-template-chirurgia-andrologiczna .description-block {
        padding: 25px;
        margin-bottom: 25px;
    }

    .page-template-template-chirurgia-andrologiczna .description-block h2 {
        font-size: 1.8rem;
        padding-left: 0;
    }

    .page-template-template-chirurgia-andrologiczna .description-block h2::before {
        display: none;
    }

    .page-template-template-chirurgia-andrologiczna .description-block h3 {
        font-size: 1.4rem;
        padding-left: 25px;
    }

    .surgical-techniques {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .technique-card {
        padding: 20px;
    }

    .page-template-template-chirurgia-andrologiczna .contact-cta {
        padding: 40px 20px;
        margin: 50px 0;
    }

    .page-template-template-chirurgia-andrologiczna .contact-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-template-template-chirurgia-andrologiczna .section-title h1 {
        font-size: 1.8rem;
    }

    .page-template-template-chirurgia-andrologiczna .description-block h2 {
        font-size: 1.6rem;
    }

    .page-template-template-chirurgia-andrologiczna .description-block h3 {
        font-size: 1.2rem;
    }

    .technique-card {
        padding: 15px;
    }

    .page-template-template-chirurgia-andrologiczna .contact-cta h2 {
        font-size: 1.6rem;
    }

    .page-template-template-chirurgia-andrologiczna .contact-cta .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* ===================== ACCESSIBILITY ENHANCEMENTS ===================== */
.page-template-template-chirurgia-andrologiczna .description-block:focus-within,
.technique-card:focus-within {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .page-template-template-chirurgia-andrologiczna .description-block {
        border: 3px solid var(--primary);
    }

    .technique-card {
        border: 2px solid var(--primary);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .page-template-template-chirurgia-andrologiczna .description-block,
    .technique-card,
    .page-template-template-chirurgia-andrologiczna .contact-cta .btn {
        transition: none;
        animation: none;
    }

    .page-template-template-chirurgia-andrologiczna .description-block:hover,
    .technique-card:hover {
        transform: none;
    }
}

/* System kart - neutralized for peyroniego-style */
.cards {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
}

/* Wspólne style dla kart - neutralized for peyroniego-style */
.card {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    overflow: visible;
}

/* Karta z gradientem (tło) - hidden */
.card-gradient {
    display: none;
}

/* Karta glass (z treścią) - transparent pass-through */
.card--glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: transparent;
    position: relative;
    z-index: auto;
    border: none;
}

/* Gradientowa ramka - disabled for peyroniego-style */
.card--glass::before,
.card--glass::after {
    display: none;
}

/* Styl dla tekstu w karcie glass - transparent pass-through */
.card--glass .card__content {
    padding: 0;
    color: var(--dark);
    width: 100%;
    position: relative;
    z-index: auto;
    background: transparent;
    border-radius: 0;
}

.card--glass .card__title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.card--glass ul {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.card--glass li,
.card--glass p {
    color: var(--dark);
    line-height: 1.6;
}

.card--glass li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.card--glass li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.card--glass h2 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-top: 1.5rem;
}

/* Klasy pomocnicze dla offsetów - disabled */
.offset-left .card-gradient,
.offset-right .card-gradient {
    display: none;
}

/* Asymetryczne bloki treści - styl jak choroba Peyroniego */
.asymmetric-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px auto;
    max-width: 1200px;
    padding: 0 60px;
    position: relative;
}

.asymmetric-image {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    position: relative;
}

.asymmetric-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.asymmetric-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asymmetric-content {
    flex: 1;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.95) 100%);
    border-radius: 15px;
    border: 1px solid rgba(8,47,97,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.asymmetric-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 15px 15px 0 0;
}

.asymmetric-content .card__title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.asymmetric-content p,
.asymmetric-content li {
    color: var(--dark);
    line-height: 1.6;
}

.asymmetric-content ul {
    margin: 15px 0;
    padding-left: 0;
}

.asymmetric-content li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.asymmetric-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

.asymmetric-content strong {
    color: var(--primary);
    font-weight: 600;
}

/* Responsywność asymetrycznych sekcji */
@media (max-width: 768px) {
    .asymmetric-section {
        flex-direction: column !important;
        gap: 30px;
        margin: 50px 0;
    }

    .asymmetric-image {
        flex: none;
        width: 100%;
        max-width: 100%;
        height: 250px;
    }

    .asymmetric-content {
        padding: 25px 20px;
        min-height: auto;
    }

    .asymmetric-content .card__title,
    .card--glass .card__title {
        font-size: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .asymmetric-section {
        gap: 20px;
        margin: 35px 0;
    }

    .asymmetric-image {
        height: 200px;
    }

    .asymmetric-content {
        padding: 20px 15px;
    }

    .asymmetric-content .card__title,
    .card--glass .card__title {
        font-size: 1.3rem;
    }
}

/* ===================== ACCORDION DLA PYTAŃ ===================== */
.accordion-container {
    margin: 10px auto 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.accordion-item {
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid rgba(8,47,97,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(8,47,97,0.2);
}

.accordion-header {
    background: linear-gradient(135deg, rgba(8,47,97,0.05) 0%, rgba(10,51,94,0.08) 100%);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(8,47,97,0.08) 0%, rgba(10,51,94,0.12) 100%);
}

.accordion-header h2 {
    color: var(--primary);
    font-family: 'Michroma', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.accordion-header h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-header:hover h2::after {
    opacity: 1;
}

.accordion-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.accordion-icon::before {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon::before {
    content: '\f077';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 30px;
    position: relative;
}

.accordion-body p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.accordion-body ul {
    margin: 5px 0 15px 0;
    padding-left: 0;
}

.accordion-body li {
    margin-bottom: 6px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.accordion-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
}

/* ================================================================== */
/* ============== COMPACT LAYOUT — fit more content =============== */
/* ================================================================== */

.page-template-template-chirurgia-andrologiczna .asymmetric-section {
    gap: 40px;
    margin: 32px auto;
    max-width: 1320px;
    padding: 0 48px;
    align-items: stretch;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-image {
    flex: 0 0 320px;
    height: auto;
    min-height: 240px;
    align-self: stretch;
    border-radius: 14px;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content {
    padding: 24px 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(8, 47, 97, 0.1);
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content .card__title,
.page-template-template-chirurgia-andrologiczna .asymmetric-content h1.card__title,
.page-template-template-chirurgia-andrologiczna .asymmetric-content h2 {
    font-size: 1.35rem !important;
    margin-bottom: 12px !important;
    margin-top: 0 !important;
    line-height: 1.3;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content h3 {
    font-size: 1.05rem;
    margin: 14px 0 6px 0;
    line-height: 1.35;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content h4 {
    font-size: 0.98rem;
    margin: 10px 0 4px 0;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 8px;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content ul,
.page-template-template-chirurgia-andrologiczna .asymmetric-content ol {
    margin: 8px 0 12px 0;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content li {
    font-size: 0.93rem;
    line-height: 1.5;
    margin-bottom: 4px;
    padding-left: 18px;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-content li::before {
    top: 7px;
    width: 5px;
    height: 5px;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-intro {
    margin: 20px auto 28px auto;
    padding: 0 48px;
    max-width: 1320px;
}

.page-template-template-chirurgia-andrologiczna .asymmetric-intro .asymmetric-content {
    padding: 24px 32px;
}

/* Card system compact */
.page-template-template-chirurgia-andrologiczna .card--glass .card__content {
    padding: 24px 30px;
}

.page-template-template-chirurgia-andrologiczna .card--glass .card__title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.page-template-template-chirurgia-andrologiczna .card--glass h2 {
    font-size: 1.15rem;
    margin-top: 14px;
}

.page-template-template-chirurgia-andrologiczna .card--glass li,
.page-template-template-chirurgia-andrologiczna .card--glass p {
    font-size: 0.95rem;
    line-height: 1.55;
}

.page-template-template-chirurgia-andrologiczna .card--glass li {
    margin-bottom: 4px;
}

/* Description blocks (chirurgia) */
.page-template-template-chirurgia-andrologiczna .description-block {
    padding: 22px 28px !important;
    margin-bottom: 20px !important;
}

.page-template-template-chirurgia-andrologiczna .description-block h2 {
    font-size: 1.4rem !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
}

.page-template-template-chirurgia-andrologiczna .description-block p,
.page-template-template-chirurgia-andrologiczna .description-block li {
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Container side margins */
.page-template-template-chirurgia-andrologiczna .content,
.page-template-template-chirurgia-andrologiczna .specialization-description {
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 1024px) {
    .page-template-template-chirurgia-andrologiczna .asymmetric-section {
        padding: 0 32px;
        gap: 32px;
    }
    .page-template-template-chirurgia-andrologiczna .asymmetric-image {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .page-template-template-chirurgia-andrologiczna .asymmetric-section {
        flex-direction: column !important;
        padding: 0 16px;
        gap: 20px;
        margin: 24px auto;
    }
    .page-template-template-chirurgia-andrologiczna .asymmetric-image {
        flex: none;
        width: 100%;
        min-height: 200px;
    }
    .page-template-template-chirurgia-andrologiczna .asymmetric-content {
        padding: 20px 22px;
    }
}
