/**
 * Styl dedykowany dla kampanii: "Inny Rytm to nie błąd, to nowa piosenka"
 * Organizacja modułowa sekcja po sekcji.
 */

/* ==========================================================================
   1. GLOBALNE OGRANICZENIA I BAZOWY RESET DLA KAMPANII
   - Szerokość ograniczona do max 1044px
   - Minimalna szerokość 390px
   ========================================================================== */
:root {
    --ir-site-max-width: 1920px;
    --ir-content-max-width: 1570px;
    --ir-min-width: 390px;
    --ir-primary-orange: #FF6600;
    --ir-primary-hover: #E05500;
    --ir-dark-bg: #111111;
    --ir-light-bg: #FFFFFF;
    --ir-text-dark: #222222;
    --ir-text-muted: #666666;
    --ir-font-base: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --ir-highlight-color: #FFAC65;
    --ir-highlight-gradient: linear-gradient(to top, #FFAC65 50%, transparent 50%);
    --ir-hero-max-height: 1044px;
}

/* Globalne podświetlenie / zaznaczenie tekstu występujące w wielu sekcjach */
.ir-highlight,
mark.ir-highlight,
.pdep-title strong span,
.pdep-title span.ir-highlight,
#o-kampanii strong span,
#o-kampanii .pdep-title strong span,
#o-kampanii .pdep-title span,
#o-kampanii .pdep-intro-content strong span,
.ir-intro-section strong span,
#brzmi-znajomo strong span,
#brzmi-znajomo .pdep-title strong span,
#brzmi-znajomo .pdep-title span,
.ir-brzmi-text-col .pdep-title strong span,
.ir-brzmi-text-col .pdep-title span,
#wesprzyj strong span,
#wesprzyj .pdep-title strong span,
#wesprzyj .pdep-title span,
.ir-wesprzyj-section strong span,
.ir-wesprzyj-highlighted strong span {
    background: var(--ir-highlight-gradient);
    display: inline;
    padding: 0 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
}

/* Główny kontener kampanii - rozciągany do 1920px */
.inny-rytm-campaign-wrap {
    font-family: var(--ir-font-base);
    color: var(--ir-text-dark);
    line-height: 1.5;
    box-sizing: border-box;
    width: 100%;
    max-width: var(--ir-site-max-width);
    min-width: var(--ir-min-width);
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.inny-rytm-campaign-wrap *,
.inny-rytm-campaign-wrap *::before,
.inny-rytm-campaign-wrap *::after {
    box-sizing: inherit;
}

/* Standardowy kontener wewnętrzny dla kontentu (teksty, gridy) - max 1570px na środku */
.inny-rytm-container,
.dg-container {
    width: 100%;
    max-width: var(--ir-content-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* ==========================================================================
   SEKCJA 1: HERO IMAGE (pded_hero_image_sy / pded_hero_image_mobile_sy)
   ========================================================================== */

/* --- 1A. WIDOK DESKTOP (od 769px w górę) --- */
.pded-hero-section {
    position: relative;
    max-height: var(--ir-hero-max-height);
}

.pded-hero-section-desktop {
    position: relative;
    width: 100%;
    max-width: var(--ir-site-max-width);
    max-height: var(--ir-hero-max-height);
    margin: 0 auto;
    overflow: hidden;
    background-color: #ffffff;
}

.pded-hero-image-wrap {
    width: 100%;
    max-height: var(--ir-hero-max-height);
    display: block;
    line-height: 0;
    overflow: hidden;
}

.pded-hero-image {
    width: 100%;
    max-height: var(--ir-hero-max-height);
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
}

/* --- 1B. WIDOK MOBILE (do 768.98px) --- */
.pded-hero-mobile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Marginesy / paddingi po bokach i od góry/dołu */
    padding: 16px 20px 20px 20px;
    width: 100%;
    max-height: var(--ir-hero-max-height);
    box-sizing: border-box;
    background-color: #ffffff;
}

.pded-hero-mobile-wrap {
    width: 100%;
    max-height: var(--ir-hero-max-height);
    display: block;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.pded-hero-mobile-image {
    width: 100%;
    max-height: var(--ir-hero-max-height);
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- PRZEŁĄCZANIE RESPONDERÓW HERO DESKTOP / MOBILE --- */
@media (min-width: 769px) {
    .pded-hero-section-desktop {
        display: block !important;
    }
    .pded-hero-mobile-section {
        display: none !important;
    }
}

@media (max-width: 768.98px) {
    .pded-hero-section-desktop {
        display: none !important;
    }
    .pded-hero-mobile-section {
        display: flex !important;
    }
}

/* ==========================================================================
   SEKCJA 2: SUBNAWIGACJA (pded_nav_sy / pded_nav_ir)
   - Kolor tła: #F8F5F4 (z projektu TABLET NAV.svg)
   - Wysokość: 64px
   - Zachowanie Desktop: sticky (przyklejona do górnej krawędzi)
   - Zachowanie Mobile: znika całkowicie (zgodnie z Figmą)
   ========================================================================== */
.dg-navwrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #F8F5F4;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

/* Kompatybilność z paskiem administratora WordPress */
.admin-bar .dg-navwrap {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar .dg-navwrap {
        top: 46px;
    }
}

.dg-navwrap.is-sticky {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.dg-nav {
    width: 100%;
    max-width: 1100px; /* Wyrównane idealnie do linii tekstu intro (x=410px przy 1920px) */
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    box-sizing: border-box;
}

.dg-container {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.dg-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 8px;
}

.dg-item {
    margin: 0;
    padding: 0;
}

.dg-link {
    display: inline-block;
    font-family: var(--ir-font-base);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111111;
    text-decoration: none;
    opacity: 0.85;
    padding: 6px 0;
    position: relative;
    transition: opacity 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.dg-link:hover,
.dg-link:focus {
    opacity: 1;
    color: #000000;
}

/* Aktywny element (węższe podkreślenie blisko tekstu na wzór stereotypy.php) */
.dg-link.dg-active {
    opacity: 1;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

/* Tablet padding dla menu (zgodny z paddingiem tekstu) */
@media (min-width: 769px) and (max-width: 1140px) {
    .dg-nav {
        padding: 0 24px;
    }
}

/* ==========================================================================
   MOBILE: PŁYWAJĄCY PRZYCISK (FAB) I PANEL BOCZNY (DRAWER)
   Wzorowane na strukturze i zachowaniu z example/stereotypy.php
   ========================================================================== */
.dg-fab {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F48120;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(244, 129, 32, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1001;
    font-family: var(--ir-font-base);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.dg-fab:hover,
.dg-fab:focus {
    background: #e07214;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(244, 129, 32, 0.45), 0 6px 16px rgba(0, 0, 0, 0.2);
    outline: none;
}

.dg-fab:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.dg-fab-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dg-fab-label {
    font-size: 14px;
    line-height: 1;
}

/* Nakładka przyciemniająca tło (Overlay) */
.dg-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.dg-navwrap.dg-open .dg-overlay {
    opacity: 1;
    visibility: visible;
    display: block !important;
}

/* Wysuwany boczny panel nawigacji (Drawer) */
.dg-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(86vw, 340px);
    background: #ffffff;
    color: #111111;
    transform: translateX(-100%);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1003;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.2);
}

.dg-navwrap.dg-open .dg-drawer {
    transform: translateX(0);
}

.dg-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: #F8F5F4;
}

.dg-drawer-title {
    margin: 0;
    font-family: var(--ir-font-base);
    font-size: 17px;
    font-weight: 800;
    color: #111111;
    letter-spacing: -0.01em;
}

.dg-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dg-close:hover,
.dg-close:focus {
    background: rgba(0, 0, 0, 0.06);
    color: #000000;
}

.dg-close:focus-visible {
    outline: 2px solid #F48120;
    outline-offset: 2px;
}

.dg-drawer-body {
    padding: 12px 10px 24px 10px;
    overflow-y: auto;
    flex: 1;
}

.dg-drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dg-drawer-item {
    margin: 0;
}

.dg-drawer-link {
    display: block;
    padding: 13px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: #222222;
    font-family: var(--ir-font-base);
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.dg-drawer-link:hover,
.dg-drawer-link:focus {
    background: #f4f4f4;
    color: #000000;
}

.dg-drawer-link.dg-active {
    background: rgba(244, 129, 32, 0.1);
    color: #F48120;
    font-weight: 800;
}

/* Reguły widoczności Desktop vs Mobile */
@media (min-width: 769px) {
    .dg-fab,
    .dg-drawer,
    .dg-overlay {
        display: none !important;
    }
    .dg-nav {
        display: flex !important;
    }
}

@media (max-width: 768.98px) {
    .dg-nav {
        display: none !important;
    }
    .dg-fab {
        display: flex !important;
    }
    .dg-overlay[hidden],
    .dg-drawer[hidden] {
        display: none;
    }
    .dg-open .dg-drawer[hidden],
    .dg-open .dg-overlay[hidden] {
        display: block !important;
    }
}


/* Kotwica z offsetem pod sticky header */
.dg-anchor {
    position: relative;
    top: -80px;
    visibility: hidden;
}

/* --- KONTROLKI WIDEO (Ukryte na ten moment zgodnie z wytycznymi) --- */
.pded-hero-controls-hidden {
    display: none !important;
}

.pded-hero-content {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 10;
    text-align: right;
    max-width: 50%;
}

.pded-hero-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0 0 16px 0;
}

.pded-hero-mobile-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--ir-text-dark);
    margin: 16px 0 12px 0;
    text-align: center;
}

.pded-hero-buttons,
.pded-hero-mobile-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.pded-hero-mobile-buttons {
    justify-content: center;
}

.pded-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--ir-primary-orange);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.pded-btn:hover {
    background-color: var(--ir-primary-hover);
    transform: translateY(-1px);
}

.pded-btn svg {
    flex-shrink: 0;
}

/* Modal Wideo */
.pded-video-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pded-video-modal[hidden] {
    display: none !important;
}

.pded-video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.pded-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.pded-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 2.2rem;
    line-height: 1;
    color: #ffffff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    transition: opacity 0.2s;
}

.pded-modal-close:hover {
    opacity: 0.75;
}

/* ==========================================================================
   SEKCJA 3: INTRO / O KAMPANII (#o-kampanii, pded_intro_ir / pded_intro_shortcode_sy)
   - Tło: #F8F9FA rozciągane do 100% szerokości (max 1920px)
   - Kontent tekstowy wyśrodkowany do max 1100px (dokładnie wg pozycji x=410px w desktop.svg)
   - Podświetlenie tekstu: gradient #FFAC65
   - Precyzyjne rozmiary czcionek, odstępy i line-height dla Desktop, Tablet i Mobile
   ========================================================================== */
#o-kampanii,
.ir-intro-section {
    background-color: #F8F9FA;
    width: 100%;
    position: relative;
    padding: 64px 0 64px 0;
    scroll-margin-top: 70px;
    box-sizing: border-box;
}

#o-kampanii .container,
#o-kampanii .inny-rytm-container {
    width: 100%;
    max-width: var(--ir-content-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

/* Wewnętrzny kontener tekstu - ograniczony do 1100px na środku */
#o-kampanii .ir-intro-inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    box-sizing: border-box;
}

/* Nagłówek sekcji - Pół miliona dzieci to nie błąd */
#o-kampanii .pdep-title {
    font-family: var(--ir-font-base);
    font-size: 45px;
    font-weight: 700;
    line-height: 51px;
    color: #000000;
    letter-spacing: -0.01em;
    margin: 0 0 62px 0;
    text-transform: none;
    text-align: left;
}

#o-kampanii .pdep-title strong,
#o-kampanii .pdep-title span {
    font-weight: 700;
}

/* Ewentualny podtytuł (jeśli zdefiniowany w ACF) */
#o-kampanii .pdep-subtitle {
    font-family: var(--ir-font-base);
    font-size: 24px;
    font-weight: 700;
    line-height: 38px;
    color: #000000;
    margin: 0 0 28px 0;
    text-align: left;
}

/* Treść intro - 3 akapity z Figmy */
#o-kampanii p,
#o-kampanii .pdep-intro-content p {
    font-family: var(--ir-font-base);
    font-size: 23px;
    font-weight: 700;
    line-height: 48px;
    color: #000000;
    margin: 0 0 24px 0;
    text-align: left;
    letter-spacing: 0;
}

#o-kampanii p:last-child,
#o-kampanii .pdep-intro-content p:last-child {
    margin-bottom: 0;
}

/* Kotwica techniczna poznaj-bohaterow-kampanii z szablonu stereotypy.php */
#poznaj-bohaterow-kampanii {
    position: relative;
    top: -64px;
    visibility: hidden;
}

/* --- RESPONSYWNOŚĆ: TABLET (769px - 1200px) --- */
@media (min-width: 769px) and (max-width: 1200px) {
    #o-kampanii,
    .ir-intro-section {
        padding: 56px 0;
    }

    #o-kampanii .ir-intro-inner {
        padding: 0 24px;
    }

    #o-kampanii .pdep-title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 44px;
    }

    #o-kampanii p,
    #o-kampanii .pdep-intro-content p {
        font-size: 20px;
        line-height: 40px;
        margin-bottom: 20px;
    }
}

/* --- RESPONSYWNOŚĆ: MOBILE (poniżej 769px, wzorzec mobile.svg 390px) --- */
@media (max-width: 768.98px) {
    #o-kampanii,
    .ir-intro-section {
        padding: 50px 0;
        scroll-margin-top: 0;
    }

    #o-kampanii .container,
    #o-kampanii .inny-rytm-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #o-kampanii .ir-intro-inner {
        padding: 0;
        max-width: 100%;
    }

    #o-kampanii .pdep-title {
        font-size: 30px;
        line-height: 46px;
        margin: 0 0 36px 0;
    }

    #o-kampanii .pdep-subtitle {
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    #o-kampanii p,
    #o-kampanii .pdep-intro-content p {
        font-size: 18px;
        font-weight: 700;
        line-height: 32px;
        margin: 0 0 32px 0;
    }

    #o-kampanii p:last-child,
    #o-kampanii .pdep-intro-content p:last-child {
        margin-bottom: 0;
    }
}

/* ==========================================================================
   SEKCJA 4: BRZMI ZNAJOMO + TELEFON WSPARCIA (#telefon-wsparcia / #brzmi-znajomo)
   - Tło: Czysta biel (#ffffff)
   - Górna część: tekst wyrównany do linii x=410px, grafika ręki dociągnięta do prawej krawędzi (max 1920px)
   - Dolna część: Pomarańczowy Telefon Wsparcia (ramka 2.5px solid #F48120) + 3 kolumny porad specjalistów
   - Pełna responsywność: na mobile ręka przechodzi na górę, a porady w układ 1-kolumnowy
   ========================================================================== */
.ir-phone-support-section {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    padding: 80px 0 100px 0;
    overflow: hidden;
    box-sizing: border-box;
}

/* --- 4A. GÓRNA CZĘŚĆ: BRZMI ZNAJOMO + RĘKA ZE SMARTFONEM --- */
.ir-brzmi-top-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--ir-site-max-width);
    margin: 0 auto;
    min-height: 820px;
    box-sizing: border-box;
}

/* Kolumna tekstu po lewej - wyrównana idealnie do linii tekstu sekcji 3 */
.ir-brzmi-text-col {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    margin-left: max(24px, calc((100% - 1100px) / 2));
    padding-right: 20px;
    box-sizing: border-box;
    text-align: left;
}

.ir-brzmi-text-col .pdep-title {
    font-family: var(--ir-font-base);
    font-size: 45px;
    font-weight: 700;
    line-height: 51px;
    color: #000000;
    letter-spacing: -0.01em;
    margin: 0 0 28px 0;
    text-transform: none;
}

.ir-brzmi-text-col .pdep-title strong span,
.ir-brzmi-text-col .pdep-title span {
    background: var(--ir-highlight-gradient);
    display: inline;
    padding: 0 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
}

.ir-brzmi-text-col .pdep-subtitle {
    font-family: var(--ir-font-base);
    font-size: 23px;
    font-weight: 700;
    line-height: 38px;
    color: #000000;
    margin: 0 0 48px 0;
    letter-spacing: -0.01em;
}

.ir-brzmi-body p {
    font-family: var(--ir-font-base);
    font-size: 19px;
    font-weight: 700;
    line-height: 34px;
    color: #000000;
    margin: 0 0 24px 0;
    letter-spacing: 0;
}

/* Wyróżnione podsumowanie z gradientem */
.ir-lead-highlight {
    margin-top: 36px !important;
    font-size: 19px !important;
    line-height: 36px !important;
    font-weight: 700 !important;
}

.ir-lead-highlight strong span,
.ir-lead-highlight span.ir-highlight {
    background: var(--ir-highlight-gradient);
    display: inline;
    padding: 0 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Kolumna z grafiką ręki dociągniętą do prawej krawędzi (max 1920px) */
.ir-hand-graphic-col {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    max-height: 100%;
    width: 48%;
    max-width: 820px;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
}

.ir-hand-img {
    height: 100%;
    max-height: 100%;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    object-position: right top;
}

/* --- 4B. DOLNA CZĘŚĆ: POMARAŃCZOWY TELEFON WSPARCIA + SPECJALIŚCI --- */
.ir-telefon-wsparcia-wrap {
    width: 100%;
    max-width: var(--ir-content-max-width);
    margin: 80px auto 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    scroll-margin-top: 80px;
}

.ir-telefon-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Karta z ramką na numer telefonu */
.ir-phone-card {
    width: 100%;
    max-width: 580px;
    flex-shrink: 0;
    background: #ffffff;
    border: 2.5px solid #F48120;
    border-radius: 36px;
    padding: 48px 36px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(244, 129, 32, 0.08);
    box-sizing: border-box;
}

.ir-phone-card-title {
    font-family: var(--ir-font-base);
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    color: #000000;
    margin: 0 0 16px 0;
}

.ir-phone-number {
    font-family: var(--ir-font-base);
    font-size: 52px;
    font-weight: 800;
    color: #F48120;
    text-decoration: none;
    display: inline-block;
    margin: 14px 0 18px 0;
    letter-spacing: -0.01em;
    line-height: 1.1;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ir-phone-number:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.ir-phone-desc {
    font-family: var(--ir-font-base);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #222222;
    margin: 0 auto;
    max-width: 440px;
}

/* Kolumna prawa: porady specjalistów */
.ir-specialists-card {
    flex: 1;
    padding-left: 20px;
    box-sizing: border-box;
}

.ir-spec-title {
    font-family: var(--ir-font-base);
    font-size: 26px;
    font-weight: 800;
    line-height: 36px;
    color: #000000;
    margin: 0 0 36px 0;
    text-align: left;
}

.ir-spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}

.ir-spec-col {
    text-align: left;
}

.ir-spec-col-title {
    font-family: var(--ir-font-base);
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.ir-spec-col-hours {
    font-family: var(--ir-font-base);
    font-size: 15px;
    font-weight: 500;
    line-height: 26px;
    color: #222222;
    margin: 0;
    white-space: pre-line;
}

/* --- RESPONSYWNOŚĆ SEKCJI 4: TABLET (769px - 1140px) --- */
@media (min-width: 769px) and (max-width: 1140px) {
    .ir-phone-support-section {
        padding: 60px 0 80px 0;
    }

    .ir-brzmi-top-wrapper {
        min-height: 720px;
    }

    .ir-brzmi-text-col {
        max-width: 520px;
        margin-left: 24px;
    }

    .ir-brzmi-text-col .pdep-title {
        font-size: 38px;
        line-height: 46px;
    }

    .ir-hand-graphic-col {
        width: 50%;
        max-width: 580px;
        top: 0;
        bottom: 0;
        height: 100%;
        max-height: 100%;
    }

    .ir-telefon-grid {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .ir-phone-card {
        max-width: 650px;
    }

    .ir-specialists-card {
        padding-left: 0;
        width: 100%;
    }

    .ir-spec-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* --- RESPONSYWNOŚĆ SEKCJI 4: MOBILE (do 768.98px) --- */
@media (max-width: 768.98px) {
    .ir-phone-support-section {
        padding: 30px 0 60px 0;
    }

    /* Układ kolumnowy na mobile - ręka na samej górze */
    .ir-brzmi-top-wrapper {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .ir-hand-graphic-col {
        position: relative;
        top: 0;
        right: 0;
        bottom: auto;
        height: auto;
        max-height: none;
        width: 100%;
        max-width: 380px;
        margin: 0 auto 24px auto;
        order: 1;
        overflow: visible;
        display: block;
    }

    .ir-hand-img {
        width: 105%;
        max-width: 410px;
        height: auto;
        max-height: none;
        margin-left: auto;
        margin-right: -15px;
    }

    .ir-brzmi-text-col {
        order: 2;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding: 0 20px;
    }

    .ir-brzmi-text-col .pdep-title {
        font-size: 32px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .ir-brzmi-text-col .pdep-subtitle {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 28px;
    }

    .ir-brzmi-body p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .ir-lead-highlight {
        font-size: 16px !important;
        line-height: 30px !important;
        margin-top: 24px !important;
    }

    /* Dolna część telefonu i specjalistów */
    .ir-telefon-wsparcia-wrap {
        margin-top: 50px;
        padding: 0 20px;
    }

    .ir-telefon-grid {
        flex-direction: column;
        gap: 40px;
    }

    .ir-phone-card {
        max-width: 100%;
        border-radius: 26px;
        padding: 36px 20px;
    }

    .ir-phone-card-title {
        font-size: 20px;
        line-height: 28px;
    }

    .ir-phone-number {
        font-size: 38px;
        margin: 14px 0 16px 0;
    }

    .ir-phone-desc {
        font-size: 15px;
        line-height: 24px;
    }

    .ir-specialists-card {
        padding-left: 0;
        width: 100%;
    }

    .ir-spec-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .ir-spec-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ir-spec-col-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .ir-spec-col-hours {
        font-size: 15px;
        line-height: 26px;
    }
}

/* ==========================================================================
   SEKCJA 5: O KAMPANII - VITO BAMBINO (pded_gallery_sy / pded_vito_bambino_ir)
   - Tło zewnętrzne: Czysta biel (#ffffff)
   - Karta wewnętrzna: #F8F9FA, obramowanie 2px solid #F48120, zaokrąglenie 55px (desktop) / 24px (mobile)
   - Układ 2-kolumnowy: Tekst (lewa) + Pusty podgląd wideo + Przycisk "Posłuchaj Vito" (prawa)
   ========================================================================== */
.ir-vito-section {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    padding: 60px 0 80px 0;
    box-sizing: border-box;
}

.ir-vito-container {
    width: 100%;
    max-width: var(--ir-content-max-width);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.ir-vito-card {
    background-color: #F8F9FA;
    border: 2px solid #F48120;
    border-radius: 55px;
    padding: 65px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}

/* Kolumna tekstowa po lewej */
.ir-vito-text-col {
    flex: 1 1 52%;
    max-width: 730px;
    box-sizing: border-box;
    text-align: left;
}

.ir-vito-title {
    font-family: var(--ir-font-base);
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: #1D211D;
    letter-spacing: -0.01em;
    margin: 0 0 28px 0;
}

.ir-vito-body p {
    font-family: var(--ir-font-base);
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    color: #1D211D;
    margin: 0 0 24px 0;
}

.ir-vito-body p:last-child {
    margin-bottom: 0;
}

/* Wyróżniony pierwszy akapit z cudzysłowem cytatu */
.ir-quote-lead {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ir-quote-icon {
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 4px;
    line-height: 1;
}

.ir-quote-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* Kolumna multimediów po prawej - podgląd wideo + przycisk */
.ir-vito-media-col {
    flex: 0 0 668px;
    max-width: 668px;
    display: flex;
    flex-direction: column;
}

.ir-vito-media-wrap {
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    background-color: #9D9D9D;
}

/* Pusty podgląd wideo */
.ir-vito-video-placeholder {
    width: 100% !important;
    height: 554px !important;
    max-width: 100% !important;
    background-color: #9D9D9D !important;
    position: relative !important;
    cursor: pointer !important;
    overflow: hidden !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    transition: background-color 0.25s ease;
}

.ir-vito-video-placeholder:hover {
    background-color: #919191 !important;
}

.ir-vito-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Przycisk "Posłuchaj Vito" */
.ir-btn-vito {
    width: 100%;
    height: 70px;
    background-color: #F48120;
    color: #ffffff;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--ir-font-base);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.15s ease;
    text-decoration: none;
    padding: 0 24px;
    box-sizing: border-box;
}

.ir-btn-vito:hover,
.ir-btn-vito:focus-visible {
    background-color: #e07010;
    color: #ffffff;
}

.ir-btn-vito svg {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
}

/* --- RESPONSYWNOŚĆ SEKCJI 5: TABLET (769px - 1140px) --- */
@media (min-width: 769px) and (max-width: 1140px) {
    .ir-vito-section {
        padding: 50px 0 70px 0;
    }

    .ir-vito-card {
        padding: 45px 35px;
        border-radius: 36px;
        flex-direction: column;
        gap: 40px;
    }

    .ir-vito-text-col {
        max-width: 100%;
    }

    .ir-vito-title {
        font-size: 23px;
        line-height: 32px;
    }

    .ir-vito-media-col {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .ir-vito-video-placeholder {
        height: 440px !important;
    }
}

/* --- RESPONSYWNOŚĆ SEKCJI 5: MOBILE (do 768.98px) --- */
@media (max-width: 768.98px) {
    .ir-vito-section {
        padding: 30px 0 50px 0;
    }

    .ir-vito-container {
        padding: 0 16px;
    }

    .ir-vito-card {
        padding: 36px 20px;
        border-radius: 24px;
        border-width: 2px;
        flex-direction: column;
        gap: 36px;
    }

    .ir-vito-text-col {
        max-width: 100%;
    }

    .ir-vito-title {
        font-size: 21px;
        line-height: 30px;
        margin-bottom: 24px;
    }

    .ir-vito-body p {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .ir-quote-icon svg {
        width: 22px;
        height: 22px;
    }

    .ir-vito-media-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .ir-vito-media-wrap {
        border-radius: 20px;
    }

    .ir-vito-video-placeholder {
        height: 380px !important;
    }

    .ir-btn-vito {
        height: 64px;
        font-size: 18px;
    }
}

/* ==========================================================================
   SEKCJA 6: KUP I WESPRZYJ FUNDACJĘ (MERCH & PARTNER KAUFLAND)
   - Tytuł wycentrowany z gradientowym pomarańczowym podświetleniem
   - Desktop: 2 kolumny (lewa: tekst ze znacznikami podświetlenia, prawa: kompozytowa grafika 908x1000px)
   - Mobile: pojedyncza kolumna, 4 osobne pionowe zdjęcia produktów (product_1 do 4)
   - Karta GŁÓWNY PARTNER KAMPANII (Kaufland) z ramką 2px #F48120 i zaokrągleniami
   ========================================================================== */

.ir-wesprzyj-section {
    padding: 90px 0 100px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.ir-wesprzyj-container {
    max-width: var(--ir-content-max-width); /* 1570px */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Tytuł sekcji */
.ir-wesprzyj-title {
    text-align: center;
    margin: 0 auto 70px auto;
    font-size: 42px;
    line-height: 52px;
    font-weight: 700;
    color: #1D211D;
    font-family: var(--ir-font-base);
}

.ir-wesprzyj-title strong span {
    background: var(--ir-highlight-gradient);
    display: inline;
    padding: 0 6px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Główny układ dwukolumnowy */
.ir-wesprzyj-content-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 70px;
    width: 100%;
    margin-bottom: 90px;
    box-sizing: border-box;
}

/* Lewa kolumna: teksty */
.ir-wesprzyj-text-col {
    flex: 1 1 540px;
    max-width: 580px;
    box-sizing: border-box;
}

.ir-wesprzyj-p {
    font-size: 26px;
    line-height: 48px;
    font-weight: 600;
    color: #1D211D;
    margin: 0 0 40px 0;
    font-family: var(--ir-font-base);
}

.ir-wesprzyj-p:last-child {
    margin-bottom: 0;
}

.ir-wesprzyj-highlighted strong span {
    background: var(--ir-highlight-gradient);
    display: inline;
    padding: 0 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: inherit;
}

/* Pomarańczowy link lotwkosmos.com */
.ir-orange-link {
    color: #F48120;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
}

.ir-orange-link:hover,
.ir-orange-link:focus {
    text-decoration: underline;
    opacity: 0.85;
}

/* Prawa kolumna: produkty */
.ir-wesprzyj-media-col {
    flex: 0 0 908px;
    max-width: 908px;
    width: 100%;
    box-sizing: border-box;
}

/* Na desktopie: jedna gotowa grafika 908x1000px wg dyspozycji użytkownika */
.ir-wesprzyj-desktop-wrap {
    display: block;
    width: 100%;
}

.ir-wesprzyj-desktop-img {
    display: block;
    width: 100%;
    max-width: 908px;
    height: auto;
    object-fit: contain;
    border-radius: 0;
}

/* Na desktopie kafelki mobile są ukryte */
.ir-wesprzyj-mobile-wrap {
    display: none;
}

/* ==========================================================================
   KARTA GŁÓWNEGO PARTNERA KAMPANII (KAUFLAND)
   ========================================================================== */
.ir-wesprzyj-partner-card {
    max-width: 1150px;
    width: 100%;
    height: 290px;
    margin: 0 auto;
    border: 2px solid #F48120;
    border-radius: 55px;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 65px;
    box-sizing: border-box;
    padding: 20px 40px;
}

.ir-wesprzyj-partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ir-wesprzyj-partner-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    display: block;
}

.ir-wesprzyj-partner-title {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #1D211D;
    text-transform: uppercase;
    font-family: var(--ir-font-base);
}

.ir-partner-line2 {
    display: inline;
}

/* --- RESPONSYWNOŚĆ SEKCJI 6: TABLET (769px - 1280px) --- */
@media (min-width: 769px) and (max-width: 1280px) {
    .ir-wesprzyj-section {
        padding: 70px 0 80px 0;
    }

    .ir-wesprzyj-container {
        padding: 0 30px;
    }

    .ir-wesprzyj-title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 50px;
    }

    .ir-wesprzyj-content-grid {
        gap: 40px;
        margin-bottom: 60px;
    }

    .ir-wesprzyj-text-col {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .ir-wesprzyj-p {
        font-size: 21px;
        line-height: 38px;
        margin-bottom: 30px;
    }

    .ir-wesprzyj-media-col {
        flex: 1 1 50%;
        max-width: 50%;
    }

    .ir-wesprzyj-partner-card {
        height: auto;
        min-height: 220px;
        padding: 30px 40px;
        border-radius: 40px;
        gap: 40px;
    }

    .ir-wesprzyj-partner-title {
        font-size: 26px;
        line-height: 36px;
    }
}

/* --- RESPONSYWNOŚĆ SEKCJI 6: MOBILE (do 768.98px) --- */
@media (max-width: 768.98px) {
    .ir-wesprzyj-section {
        padding: 40px 0 30px 0;
    }

    .ir-wesprzyj-container {
        padding: 0 20px;
    }

    .ir-wesprzyj-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 36px;
    }

    .ir-wesprzyj-content-grid {
        flex-direction: column;
        gap: 0;
        margin-bottom: 50px;
    }

    .ir-wesprzyj-text-col {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 36px;
    }

    .ir-wesprzyj-p {
        font-size: 18px;
        line-height: 32px;
        font-weight: 600;
        margin-bottom: 28px;
    }

    .ir-wesprzyj-media-col {
        max-width: 100%;
        flex: 0 0 100%;
    }

    /* Ukrywamy kompozyt desktopowy, pokazujemy 4 pionowe produkty */
    .ir-wesprzyj-desktop-wrap {
        display: none;
    }

    .ir-wesprzyj-mobile-wrap {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: 100%;
    }

    .ir-wesprzyj-product-item {
        width: 100%;
        max-width: 350px;
        height: auto;
        display: block;
        border-radius: 0;
    }

    /* Karta partnera Kaufland na mobile */
    .ir-wesprzyj-partner-card {
        max-width: 350px;
        min-height: 434px;
        height: auto;
        padding: 48px 20px;
        border-radius: 23px;
        border-width: 2px;
        flex-direction: column;
        gap: 28px;
        text-align: center;
        margin-top: 36px;
    }

    .ir-wesprzyj-partner-logo img {
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .ir-wesprzyj-partner-title {
        font-size: 22px;
        line-height: 30px;
        letter-spacing: 0.04em;
    }

    .ir-partner-line2 {
        display: block;
    }
}

/* ==========================================================================
   SEKCJA 7: PARTNERZY KAMPANII (KATARZYNA & ŁUKASZ)
   - Układ naprzemienny na desktopie (Row 1: Zdjęcie lewo, Tekst prawo; Row 2: Tekst lewo, Zdjęcie prawo)
   - Na mobile: Zdjęcie na górze (350x350px), Tekst poniżej
   - Akordeon "Czytaj więcej" / "Czytaj mniej" z pomarańczową ramką 2px #F48120
   - Podpis z prawej strony (kursywa)
   ========================================================================== */

.ir-partnerzy-section {
    padding: 80px 0 100px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.ir-partnerzy-container {
    max-width: var(--ir-content-max-width); /* 1570px */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Wiersz pojedynczego partnera */
.ir-partner-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 65px;
    margin-bottom: 90px;
    box-sizing: border-box;
}

.ir-partner-row:last-child {
    margin-bottom: 0;
}

/* Wiersz odwrócony na desktopie dla Pana Łukasza (Tekst po lewej, zdjęcie po prawej) */
.ir-partner-row-reverse {
    flex-direction: row-reverse;
}

/* Kolumna ze zdjęciem */
.ir-partner-img-col {
    flex: 0 0 577px;
    max-width: 577px;
    width: 100%;
    box-sizing: border-box;
}

.ir-partner-img {
    width: 577px;
    height: 577px;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* Kolumna z treścią */
.ir-partner-body {
    flex: 1 1 auto;
    max-width: 890px;
    width: 100%;
    box-sizing: border-box;
}

.ir-partner-title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    color: #1D211D;
    margin: 0 0 24px 0;
    font-family: var(--ir-font-base);
}

.ir-partner-body p {
    font-size: 20px;
    line-height: 38px;
    color: #1D211D;
    margin: 0 0 20px 0;
    font-family: var(--ir-font-base);
}

.ir-partner-dots {
    display: inline;
}

.ir-partner-body.is-expanded .ir-partner-dots {
    display: none;
}

.ir-partner-more {
    display: none;
}

.ir-partner-body.is-expanded .ir-partner-more {
    display: block;
    animation: irFadeIn 0.3s ease;
}

@keyframes irFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Podpis autora (z prawej, kursywa) */
.ir-partner-sig {
    text-align: right;
    font-style: italic;
    margin: 32px 0 24px 0;
    color: #1D211D;
    font-family: var(--ir-font-base);
}

.ir-partner-sig-name {
    display: block;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    font-style: italic;
}

.ir-partner-sig-role {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
}

/* Przycisk akordeonu Czytaj więcej / Czytaj mniej */
.btn-partner-toggle {
    width: 100%;
    height: 61px;
    border: 2px solid #F48120;
    background-color: #FFFFFF;
    color: #1D211D;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--ir-font-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    border-radius: 0;
    padding: 0 20px;
}

.btn-partner-toggle:hover,
.btn-partner-toggle:focus-visible {
    background-color: rgba(244, 129, 32, 0.06);
    outline: none;
}

.btn-partner-toggle .ir-toggle-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
}

.ir-partner-body.is-expanded .btn-partner-toggle .ir-toggle-arrow {
    transform: rotate(180deg);
}

/* --- RESPONSYWNOŚĆ SEKCJI 7: TABLET (769px - 1280px) --- */
@media (min-width: 769px) and (max-width: 1280px) {
    .ir-partnerzy-section {
        padding: 60px 0 80px 0;
    }

    .ir-partnerzy-container {
        padding: 0 30px;
    }

    .ir-partner-row {
        gap: 40px;
        margin-bottom: 70px;
    }

    .ir-partner-img-col {
        flex: 0 0 420px;
        max-width: 420px;
    }

    .ir-partner-img {
        width: 420px;
        height: 420px;
    }

    .ir-partner-title {
        font-size: 24px;
        line-height: 34px;
    }

    .ir-partner-body p {
        font-size: 18px;
        line-height: 32px;
    }
}

/* --- RESPONSYWNOŚĆ SEKCJI 7: MOBILE (do 768.98px) --- */
@media (max-width: 768.98px) {
    .ir-partnerzy-section {
        padding: 20px 0 36px 0;
    }

    .ir-partnerzy-container {
        padding: 0 20px;
    }

    .ir-partner-row,
    .ir-partner-row-reverse {
        flex-direction: column;
        align-items: center;
        gap: 0;
        margin-bottom: 28px;
    }

    .ir-partner-img-col {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        margin-bottom: 16px;
    }

    .ir-partner-img {
        width: 100%;
        max-width: 320px;
        height: auto;
        aspect-ratio: 1/1;
        margin: 0 auto;
    }

    .ir-partner-body {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .ir-partner-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 12px;
    }

    .ir-partner-body p {
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 12px;
    }

    /* Zmniejszenie wysokości leadu w stanie zwiniętym do 5 linijek wg makiety mobile */
    .ir-partner-body:not(.is-expanded) .ir-partner-lead-p {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ir-partner-body:not(.is-expanded) .ir-partner-dots {
        display: none;
    }

    .ir-partner-sig {
        margin: 10px 0 14px 0;
    }

    .ir-partner-sig-name {
        font-size: 15px;
        line-height: 22px;
    }

    .ir-partner-sig-role {
        font-size: 13px;
        line-height: 18px;
    }

    .btn-partner-toggle {
        height: 50px;
        font-size: 15px;
        padding: 0 16px;
    }
}

/* ==========================================================================
   SEKCJA 8: RAPORT ("Pobierz nasz raport i poznaj pełny obraz sytuacji w polskich szkołach")
   - Tytuł wyśrodkowany z delikatnym pomarańczowym podkreśleniem (marker highlight)
   - 6 statystyk (2 kolumny na desktopie, 1 kolumna na mobile)
   - Przycisk "Pobierz raport" z ikoną chmurki pobierania
   ========================================================================== */

.ir-raport-section {
    padding: 90px 0 110px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.ir-raport-container {
    max-width: var(--ir-content-max-width); /* 1570px */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Nagłówek sekcji z podkreśleniem */
.ir-raport-header {
    text-align: center;
    margin-bottom: 75px;
}

.ir-raport-title {
    font-size: 38px;
    line-height: 52px;
    font-weight: 800;
    color: #1D211D;
    margin: 0;
    font-family: var(--ir-font-base);
    display: inline-block;
}

.ir-raport-title-highlight {
    background: linear-gradient(180deg, transparent 52%, rgba(255, 172, 101, 0.45) 52%);
    padding: 0 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Układ statystyk: 2 kolumny na desktopie */
.ir-raport-stats-wrap {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 85px;
    box-sizing: border-box;
}

.ir-raport-stats-col {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 55px;
}

/* Pojedynczy element statystyki */
.ir-raport-stat-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.ir-raport-stat-num {
    flex: 0 0 135px;
    font-size: 58px;
    line-height: 1;
    font-weight: 800;
    color: #F48120;
    font-family: var(--ir-font-base);
    letter-spacing: -0.02em;
}

.ir-raport-stat-desc {
    flex: 1;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #1D211D;
    font-family: var(--ir-font-base);
    margin: 0;
    padding-top: 4px;
}

/* Przycisk akcji "Pobierz raport" */
.ir-raport-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.ir-raport-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    max-width: 1531px;
    height: 94px;
    background-color: #F48120;
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--ir-font-base);
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    border-radius: 0;
    box-sizing: border-box;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.ir-raport-btn:hover {
    background-color: #df6f13;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(244, 129, 32, 0.25);
}

.ir-raport-btn:active {
    transform: translateY(0);
}

.ir-raport-btn-icon {
    width: 39px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}

/* --- RESPONSYWNOŚĆ SEKCJI 8: TABLET (769px - 1280px) --- */
@media (min-width: 769px) and (max-width: 1280px) {
    .ir-raport-section {
        padding: 70px 0 85px 0;
    }

    .ir-raport-container {
        padding: 0 30px;
    }

    .ir-raport-header {
        margin-bottom: 55px;
    }

    .ir-raport-title {
        font-size: 30px;
        line-height: 42px;
    }

    .ir-raport-stats-wrap {
        gap: 40px;
        margin-bottom: 60px;
    }

    .ir-raport-stats-col {
        gap: 40px;
    }

    .ir-raport-stat-num {
        flex: 0 0 110px;
        font-size: 46px;
    }

    .ir-raport-stat-desc {
        font-size: 17px;
        line-height: 26px;
    }

    .ir-raport-btn {
        height: 80px;
        font-size: 21px;
    }
}

/* --- RESPONSYWNOŚĆ SEKCJI 8: MOBILE (do 768.98px) --- */
@media (max-width: 768.98px) {
    .ir-raport-section {
        padding: 45px 0 55px 0;
    }

    .ir-raport-container {
        padding: 0 20px;
    }

    .ir-raport-header {
        margin-bottom: 36px;
    }

    .ir-raport-title {
        font-size: 20px;
        line-height: 29px;
        max-width: 320px;
    }

    .ir-raport-stats-wrap {
        flex-direction: column;
        gap: 22px;
        margin-bottom: 40px;
    }

    .ir-raport-stats-col {
        gap: 22px;
    }

    .ir-raport-stat-item {
        gap: 16px;
        align-items: flex-start;
    }

    .ir-raport-stat-num {
        flex: 0 0 82px;
        font-size: 34px;
        line-height: 1;
    }

    .ir-raport-stat-desc {
        font-size: 13px;
        line-height: 19px;
        font-weight: 500;
        padding-top: 2px;
    }

    .ir-raport-btn {
        width: 100%;
        max-width: 350px;
        height: 72px;
        font-size: 17px;
        gap: 12px;
    }

    .ir-raport-btn-icon {
        width: 28px;
        height: 22px;
    }
}

/* ==========================================================================
   SEKCJA 9: MATERIAŁY EDUKACYJNE / WEBINARY ("Jak lepiej zrozumieć neuroatypowość?")
   - Nagłówek wyśrodkowany z podświetleniem (marker highlight) i leadem
   - Siatka 2x2 na desktopie (3 webinary + karta materiałów do pobrania)
   - Na mobile: 4 kafelki jeden pod drugim
   ========================================================================== */

.ir-edukacja-section {
    padding: 85px 0 110px 0;
    background-color: #ffffff;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.ir-edukacja-container {
    max-width: var(--ir-content-max-width); /* 1570px */
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Nagłówek sekcji */
.ir-edukacja-header {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 65px auto;
}

.ir-edukacja-title {
    font-size: 38px;
    line-height: 52px;
    font-weight: 800;
    color: #1D211D;
    margin: 0 0 20px 0;
    font-family: var(--ir-font-base);
    display: inline-block;
}

.ir-edukacja-title-highlight {
    background: linear-gradient(180deg, transparent 52%, rgba(255, 172, 101, 0.45) 52%);
    padding: 0 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.ir-edukacja-lead {
    font-size: 20px;
    line-height: 32px;
    color: #1D211D;
    margin: 0 auto;
    max-width: 1100px;
    font-family: var(--ir-font-base);
    font-weight: 500;
}

/* Siatka 2x2 */
.ir-edukacja-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    box-sizing: border-box;
}

.ir-edukacja-card {
    width: 100%;
    box-sizing: border-box;
}

/* Karta webinaru */
.ir-webinar-thumb {
    position: relative;
    width: 100%;
    height: 311px;
    background-color: #9D9D9D;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    overflow: hidden;
}

.ir-webinar-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #9D9D9D;
    background-size: cover;
    background-position: center;
}

.ir-webinar-btn {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 60px;
    background-color: #F48120;
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--ir-font-base);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.ir-webinar-btn:hover {
    background-color: #df6f13;
    color: #FFFFFF;
    transform: translateY(-1px);
}

.ir-webinar-title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #1D211D;
    font-family: var(--ir-font-base);
    margin: 18px 0 0 0;
}

.ir-webinar-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.ir-webinar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F48120;
    flex-shrink: 0;
}

.ir-webinar-date {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #1D211D;
    font-family: var(--ir-font-base);
    margin: 0;
}

.ir-webinar-date-orange {
    color: #F48120;
}

/* Karta "Materiały do pobrania" */
.ir-materialy-card {
    background-color: #F48120;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 360px;
    box-sizing: border-box;
}

.ir-materialy-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    font-family: var(--ir-font-base);
    margin: 0 0 32px 0;
}

.ir-materialy-links {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
}

.ir-materialy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 51px;
    background-color: #F48120;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--ir-font-base);
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    border-radius: 0;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    padding: 0 16px;
    text-align: center;
}

.ir-materialy-btn:hover {
    background-color: #FFFFFF;
    color: #F48120;
    transform: translateY(-1px);
}

.ir-materialy-btn .ir-mat-icon {
    flex-shrink: 0;
}

/* --- RESPONSYWNOŚĆ SEKCJI 9: TABLET (769px - 1280px) --- */
@media (min-width: 769px) and (max-width: 1280px) {
    .ir-edukacja-section {
        padding: 65px 0 85px 0;
    }

    .ir-edukacja-container {
        padding: 0 30px;
    }

    .ir-edukacja-title {
        font-size: 30px;
        line-height: 42px;
    }

    .ir-edukacja-lead {
        font-size: 17px;
        line-height: 27px;
    }

    .ir-edukacja-grid {
        gap: 30px 20px;
    }

    .ir-webinar-thumb {
        height: 260px;
    }

    .ir-materialy-card {
        padding: 30px 20px;
    }

    .ir-materialy-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 24px;
    }

    .ir-materialy-btn {
        font-size: 15px;
    }
}

/* --- RESPONSYWNOŚĆ SEKCJI 9: MOBILE (do 768.98px) --- */
@media (max-width: 768.98px) {
    .ir-edukacja-section {
        padding: 40px 0 55px 0;
    }

    .ir-edukacja-container {
        padding: 0 20px;
    }

    .ir-edukacja-header {
        margin-bottom: 35px;
    }

    .ir-edukacja-title {
        font-size: 20px;
        line-height: 28px;
        max-width: 310px;
    }

    .ir-edukacja-lead {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
        margin-top: 14px;
    }

    .ir-edukacja-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 350px;
        margin: 0 auto;
    }

    .ir-webinar-thumb {
        height: 311px;
    }

    .ir-webinar-btn {
        height: 60px;
        font-size: 17px;
    }

    .ir-webinar-title {
        font-size: 20px;
        line-height: 28px;
        margin-top: 14px;
    }

    .ir-materialy-card {
        padding: 32px 16px;
        min-height: auto;
    }

    .ir-materialy-title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 22px;
    }

    .ir-materialy-links {
        gap: 16px;
    }

    .ir-materialy-btn {
        height: 51px;
        font-size: 14px;
        padding: 0 10px;
    }

    .ir-materialy-btn .ir-mat-icon {
        width: 22px;
        height: 17px;
    }
}

/* ==========================================================================
   SEKCJA 10: POZNAJ NASZYCH EKSPERTÓW (HERO-CAROUSEL wg stereotypy.php)
   - Karuzela Splide z 3 slajdami desktop / 2 tablet / 1 mobile
   - Zdjęcie kwadratowe, nazwisko italic na dole zdjęcia, pomarańczowy pasek Poznaj mnie
   - Okrągłe pomarańczowe strzałki nawigacji (60x60px)
   - Modal hero-popup z pełnym biogramem, wideo i galerią
   ========================================================================== */
#eksperci {
    padding: 80px 0 100px 0;
    background-color: #FFFFFF;
    position: relative;
}

.ir-eksperci-container {
    max-width: 1570px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.ir-eksperci-title {
    text-align: center;
    margin: 0 0 50px 0;
}

.ir-eksperci-title-highlight {
    font-family: var(--ir-font-base);
    font-size: 38px;
    line-height: 48px;
    font-weight: 700;
    color: #1D211D;
    display: inline;
    background: linear-gradient(180deg, transparent 52%, rgba(255, 172, 101, 0.45) 52%);
    padding: 0 8px;
}

/* Karuzela Splide #hero-carousel */
#hero-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

#hero-carousel .splide__track {
    overflow: hidden;
}

#hero-carousel .splide__slide {
    position: relative;
    overflow: hidden;
    outline: none;
    box-sizing: border-box;
    cursor: pointer;
}

.hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    cursor: pointer;
    background-color: #9D9D9D;
    border-radius: 0;
}

.hero-att {
    position: relative;
    width: 100%;
}

.hero-name.new-v {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: 0 !important;
    padding: 0 15px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    font-family: var(--ir-font-base);
    font-size: 24px !important;
    line-height: 32px;
    font-weight: 700;
    font-style: italic;
    cursor: pointer;
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
    text-decoration: none !important;
}

.hero-att .hero-btn {
    margin: 0 !important;
    background-color: #F48120;
    width: 100% !important;
    height: 51.19px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center !important;
    color: #FFFFFF;
    font-family: var(--ir-font-base);
    font-size: 17px;
    font-weight: 600;
    font-style: italic;
    cursor: pointer;
    border-radius: 0;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
    text-decoration: none !important;
}

.hero-att .hero-btn:hover {
    background-color: #df6f13;
}

.hero-att .hero-btn span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Strzałki nawigacyjne Splide (60x60px pomarańczowe okręgi) */
#hero-carousel .splide__arrow {
    width: 60px;
    height: 60px;
    background: #F48120;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

#hero-carousel .splide__arrow:hover {
    background: #df6f13;
    transform: scale(1.05);
}

#hero-carousel .splide__arrow svg {
    width: 24px !important;
    height: 24px !important;
    fill: #FFFFFF !important;
}

#hero-carousel .splide__arrow--prev {
    left: -70px;
}

#hero-carousel .splide__arrow--next {
    right: -70px;
}

/* Modal #hero-popup (identyczny jak w stereotypy.php) */
.hero-popup {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    overflow-y: auto;
}

.hero-popup-content {
    position: relative;
    max-width: 980px;
    margin: 5% auto;
    background: #FFFFFF;
    padding: 30px;
    display: flex;
    gap: 30px;
    box-sizing: border-box;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: #1D211D;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
}

.popup-left {
    flex: 0 0 45%;
    max-width: 45%;
}

.media-area {
    position: relative;
    width: 100%;
}

.media-area img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-embed iframe,
.video-embed video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.popup-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#popup-name {
    font-family: var(--ir-font-base);
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    color: #1D211D;
    margin: 0 0 6px 0;
}

.hero-tagline {
    font-family: var(--ir-font-base);
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    color: #F48120;
    margin-bottom: 16px;
}

#popup-content {
    font-family: var(--ir-font-base);
    font-size: 16px;
    line-height: 26px;
    color: #4A5149;
    max-height: 260px;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 20px;
}

#popup-social {
    margin-bottom: 16px;
}

.custom-hero-some {
    text-decoration: none !important;
    border-bottom: 2px solid #F48120;
    color: #1D211D;
    font-weight: 600;
    font-family: var(--ir-font-base);
    font-size: 15px;
    display: inline-block;
}

.popup-video {
    margin-top: 12px;
    margin-bottom: 16px;
}

.custo-play-inside-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #F48120;
    background: #FFFFFF;
    padding: 10px 18px;
    border-radius: 0;
    cursor: pointer;
    font-family: var(--ir-font-base);
    font-weight: 600;
    font-size: 15px;
    color: #1D211D;
    transition: background-color 0.2s ease;
}

.custo-play-inside-hero:hover {
    background-color: #fff6ee;
}

.popup-gallery {
    margin-top: 16px;
}

.popup-gallery .hero-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.popup-gallery .hero-thumb {
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.popup-gallery .hero-thumb img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}

.popup-gallery .hero-thumb:hover img {
    border-color: #F48120;
}

/* Responsywność dla Ekspertów */
@media (max-width: 1200px) {
    #hero-carousel .splide__arrow--prev {
        left: -10px;
    }
    #hero-carousel .splide__arrow--next {
        right: -10px;
    }
}

@media (max-width: 991.98px) {
    .hero-popup-content {
        flex-direction: column;
        margin: 20px;
        padding: 20px;
    }
    .popup-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768.98px) {
    #eksperci {
        padding: 45px 0 60px 0;
    }
    .ir-eksperci-container {
        padding: 0 20px;
    }
    .ir-eksperci-title-highlight {
        font-size: 22px;
        line-height: 30px;
    }
    #hero-carousel .splide__arrow {
        width: 50px;
        height: 50px;
    }
    #hero-carousel .splide__arrow--prev {
        left: -8px;
    }
    #hero-carousel .splide__arrow--next {
        right: -8px;
    }
    .hero-name.new-v {
        font-size: 19px !important;
        line-height: 26px;
        bottom: 56px;
    }
    .hero-popup-content {
        margin: 10px;
        padding: 16px;
    }
    .close-popup {
        color: #1D211D;
    }
}

/* ==========================================================================
   SEKCJA 11: PATRONI WEBINARÓW
   ========================================================================== */
#patroni-webinarow {
    padding: 50px 0 70px 0;
    background-color: #FFFFFF;
}

.ir-patroni-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

.ir-patroni-title {
    font-family: var(--ir-font-base);
    font-size: 34px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 40px;
    text-align: center;
}

.ir-patroni-title-highlight {
    background: linear-gradient(180deg, transparent 55%, rgba(254, 219, 192, 0.75) 55%);
    padding: 2px 14px;
    border-radius: 0; /* Wywalone zaokrąglenie */
    display: inline-block;
}

#patroni-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

#patroni-carousel .splide__track {
    overflow: hidden;
    padding: 10px 0;
}

#patroni-carousel .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ir-patron-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90px;
    padding: 10px 20px;
}

.ir-patron-item img {
    max-height: 65px;
    max-width: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ir-patron-item img:hover {
    transform: scale(1.05);
}

/* ==========================================================================
   SEKCJA 12: MÓWIĄ O NAS (HERO-CAROUSEL / PUBLICATIONS WG STEREOTYPY.PHP)
   ========================================================================== */
#mowia-o-nas {
    padding: 70px 0 80px 0;
    background-color: #FFFFFF;
}

.ir-mowia-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 35px;
}

#mowia-o-nas .pdep-title,
.ir-mowia-title {
    font-family: var(--ir-font-base);
    font-size: 34px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 45px;
    text-align: center;
    background: none !important;
    border-radius: 0 !important;
}

.ir-mowia-title-highlight {
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: inline;
}

#publications-carousel {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
}

#publications-carousel .splide__track {
    overflow: hidden;
    padding: 10px 0 20px 0;
}

#publications-carousel .splide__list {
    display: flex;
}

#publications-carousel .splide__slide {
    display: flex;
    height: auto;
    box-sizing: border-box;
    background-color: #F8F9FA;
    border-radius: 0 !important; /* Zero zaokrągleń */
    border: none !important;
    box-shadow: none !important;
}

.logo-only-pm {
    background-color: #F8F9FA;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.logo-only-pm a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background-color: #F8F9FA;
    border-radius: 0 !important; /* Wywalone zaokrąglenie, jak w stereotypy.php */
    padding: 45px 40px 35px;
    text-decoration: none;
    color: inherit;
    box-shadow: none !important; /* Brak cieni */
    border: none !important;
    transition: background-color 0.2s ease;
}

.logo-only-pm a:hover {
    background-color: #F1F3F5;
    transform: none !important;
    box-shadow: none !important;
}

.kpwm-only-text-box {
    font-family: var(--ir-font-base);
    font-size: 16px;
    line-height: 1.65;
    color: #111111;
    font-style: normal;
    margin: 0 0 28px 0;
    flex-grow: 1;
}

.kpwm-logo-wrap {
    display: flex;
    align-items: center;
    min-height: 48px;
    margin-bottom: 18px;
}

.kpwm-logo-wrap img,
.logo-only-pm img {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0 !important;
}

.kpwm-r-btn-title {
    font-family: var(--ir-font-base);
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    text-decoration: underline;
    text-underline-offset: 4px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.logo-only-pm a:hover .kpwm-r-btn-title {
    color: #F48120;
}

/* Strzałki w #publications-carousel wg stereotypy.php */
#publications-carousel .splide__arrow {
    width: 54px;
    height: 54px;
    background: #F48120;
    border-radius: 50%;
    opacity: 1;
    border: none;
    box-shadow: 0 4px 15px rgba(244, 129, 32, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 5;
}

#publications-carousel .splide__arrow:hover {
    background: #e06d0c;
    transform: scale(1.06) translateY(-50%);
}

#publications-carousel .splide__arrow svg {
    fill: #FFFFFF;
    width: 20px;
    height: 20px;
}

#publications-carousel .splide__arrow--prev {
    left: -25px;
}

#publications-carousel .splide__arrow--next {
    right: -25px;
}

/* ==========================================================================
   SEKCJA 13: ZAJRZYJ ZA KULISY KAMPANII (poradnik-dla-mediow wg stereotypy.php)
   ========================================================================== */
#poradnik-dla-mediow {
    padding: 60px 0 80px 0;
    background-color: #FFFFFF;
}

#poradnik-dla-mediow .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

#poradnik-dla-mediow .row {
    display: flex;
    align-items: stretch;
    background-color: #F8F9FA;
    border-radius: 0 !important; /* Zero zaokrągleń */
    overflow: hidden;
    margin: 0;
}

#poradnik-dla-mediow .col-md-6 {
    flex: 1;
    min-width: 0;
}

#poradnik-dla-mediow .col-md-6:first-child,
#poradnik-dla-mediow .ir-kulisy-col-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: #F8F9FA;
}

#poradnik-dla-mediow .pdep-title,
#poradnik-dla-mediow .ir-kulisy-title {
    font-family: var(--ir-font-base);
    font-size: 34px;
    line-height: 1.25;
    font-weight: 800;
    color: #111111;
    margin: 0 0 25px 0;
    text-align: left;
    background: none !important;
    border-radius: 0 !important;
}

#poradnik-dla-mediow .ir-kulisy-title-highlight {
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    display: inline;
}

#poradnik-dla-mediow .pdep-media-content {
    font-family: var(--ir-font-base);
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 25px;
}

/* Przycisk Włącz wg prototypu stereotypy.php - bez zaokrągleń */
#poradnik-dla-mediow .custom-secondary-play,
.pded-btn-change.custom-secondary-play {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ir-font-base);
    font-size: 1.15rem !important;
    font-weight: 600;
    color: #111111 !important;
    background-color: #FFFFFF !important;
    border: 2px solid #F48120 !important;
    border-radius: 0 !important; /* Kanciasty, wywalone zaokrąglenie */
    padding: 10px 24px !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: all 0.2s ease;
    text-decoration: none;
}

#poradnik-dla-mediow .custom-secondary-play:hover,
.pded-btn-change.custom-secondary-play:hover {
    background-color: #F48120 !important;
    color: #FFFFFF !important;
    border-color: #F48120 !important;
    transform: none !important;
    box-shadow: none !important;
}

#poradnik-dla-mediow .custom-secondary-play svg,
.pded-btn-change.custom-secondary-play svg {
    width: 28px;
    height: 28px;
}

#poradnik-dla-mediow .custom-secondary-play svg path,
.pded-btn-change.custom-secondary-play svg path {
    fill: #F48120;
    transition: fill 0.2s ease;
}

#poradnik-dla-mediow .custom-secondary-play:hover svg path,
.pded-btn-change.custom-secondary-play:hover svg path {
    fill: #FFFFFF;
}

#poradnik-dla-mediow .col-md-6:last-child,
#poradnik-dla-mediow .ir-kulisy-col-image {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

#poradnik-dla-mediow img,
.ir-kulisy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important; /* Wywalone zaokrąglenie */
}

/* Responsywność dla sekcji 11, 12, 13 */
@media (max-width: 1199.98px) {
    #publications-carousel .splide__arrow--prev {
        left: -12px;
    }
    #publications-carousel .splide__arrow--next {
        right: -12px;
    }
}

@media (max-width: 991.98px) {
    #poradnik-dla-mediow .row,
    .ir-kulisy-row {
        flex-direction: column;
    }
    #poradnik-dla-mediow .col-md-6:first-child,
    .ir-kulisy-col-content {
        padding: 40px 30px;
    }
    #poradnik-dla-mediow .col-md-6:last-child,
    .ir-kulisy-col-image {
        min-height: 320px;
    }
}

@media (max-width: 768.98px) {
    #patroni-webinarow {
        padding: 40px 0 50px 0;
    }
    .ir-patroni-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .ir-patron-item {
        height: 75px;
        padding: 5px 15px;
    }
    .ir-patron-item img {
        max-height: 50px;
        max-width: 220px;
    }

    #mowia-o-nas {
        padding: 50px 0;
    }
    #mowia-o-nas .pdep-title,
    .ir-mowia-title {
        font-size: 26px;
        margin-bottom: 35px;
    }
    .logo-only-pm a {
        padding: 30px 24px;
    }
    .kpwm-only-text-box {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    #publications-carousel .splide__arrows {
        display: none !important;
    }

    #poradnik-dla-mediow {
        padding: 50px 0 70px 0;
    }
    #poradnik-dla-mediow .pdep-title,
    .ir-kulisy-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 20px;
    }
    #poradnik-dla-mediow .col-md-6:first-child,
    .ir-kulisy-col-content {
        padding: 30px 20px;
    }
    #poradnik-dla-mediow .custom-secondary-play,
    .pded-btn-change.custom-secondary-play {
        padding: 10px 22px !important;
        font-size: 1rem !important;
    }
}



