/**
 * Główne style motywu RadioPolskaNL.
 */

:root {
    --rpnl-navy: #0b2d4d;
    --rpnl-red: #e30613;
    --rpnl-blue: #1677ff;
    --rpnl-background: #f5f8fc;
    --rpnl-white: #ffffff;
    --rpnl-text: #182230;
    --rpnl-text-muted: #667085;
    --rpnl-border: #dfe7ef;

    --rpnl-container: 1280px;
    --rpnl-radius: 12px;
    --rpnl-shadow: 0 8px 24px rgba(11, 45, 77, 0.08);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--rpnl-background);
    color: var(--rpnl-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--rpnl-blue);
    text-decoration: none;
}

a:hover,
a:focus-visible {
    color: var(--rpnl-red);
}

button,
input,
textarea,
select {
    font: inherit;
}
/* Nagłówek portalu */

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.screen-reader-text:focus {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100000;
    width: auto;
    height: auto;
    padding: 12px 18px;
    margin: 0;
    overflow: visible;
    clip: auto;
    background: var(--rpnl-white);
    color: var(--rpnl-navy);
    font-weight: 700;
    box-shadow: var(--rpnl-shadow);
}

.rpnl-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 86px;
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(11, 45, 77, 0.08);
    box-shadow: 0 8px 24px rgba(11, 45, 77, 0.06);
    backdrop-filter: blur(10px);
}

.rpnl-header__logo {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
}

.rpnl-header__logo img {
    display: block;
    width: auto;
    height: 58px;
}

.rpnl-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 24px;
}

.rpnl-navigation__menu {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rpnl-navigation__menu li {
    padding: 0;
    margin: 0;
}

.rpnl-navigation__menu a {
    display: block;
    color: var(--rpnl-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.rpnl-navigation__menu a:hover,
.rpnl-navigation__menu a:focus-visible,
.rpnl-navigation__menu .current-menu-item > a,
.rpnl-navigation__menu .current-menu-ancestor > a {
    color: var(--rpnl-red);
}

.rpnl-navigation__menu .rpnl-navigation__cta {
    padding: 10px 18px;
    background: var(--rpnl-red);
    color: var(--rpnl-white);
    border-radius: 999px;
}

.rpnl-navigation__menu .rpnl-navigation__cta:hover,
.rpnl-navigation__menu .rpnl-navigation__cta:focus-visible {
    background: var(--rpnl-navy);
    color: var(--rpnl-white);
}

.rpnl-header__search {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--rpnl-navy);
    font-size: 28px;
    line-height: 1;
    border-radius: 50%;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.rpnl-header__search:hover,
.rpnl-header__search:focus-visible {
    background: rgba(11, 45, 77, 0.06);
    color: var(--rpnl-red);
}

/* Pasek radia na żywo */

.rpnl-livebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 46px;
    padding: 10px 32px;
    background: var(--rpnl-navy);
    color: var(--rpnl-white);
    font-size: 14px;
}

.rpnl-livebar__status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.rpnl-livebar__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--rpnl-red);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.18);
}

.rpnl-livebar__message {
    flex: 1;
    color: #d9e6f3;
    text-align: center;
}

.rpnl-livebar__link {
    white-space: nowrap;
}

.rpnl-livebar__link a {
    color: var(--rpnl-white);
    font-weight: 800;
}

.rpnl-livebar__link a:hover,
.rpnl-livebar__link a:focus-visible {
    color: #ffccd0;
}
/* Przycisk menu mobilnego */

.rpnl-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
}

.rpnl-menu-toggle__line {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: var(--rpnl-navy);
    border-radius: 2px;
}
/* Nagłówek — wersja mobilna */

@media (max-width: 1100px) {
    .rpnl-header {
        min-height: 74px;
        padding: 10px 16px;
    }

    .rpnl-header__logo img {
        height: 48px;
    }

    .rpnl-menu-toggle {
        display: block;
        order: 3;
    }

    .rpnl-header__search {
        order: 2;
        margin-left: auto;
        margin-right: 4px;
    }

    .rpnl-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        max-height: calc(100vh - 74px);
        margin: 0;
        overflow-y: auto;
        background: var(--rpnl-white);
        border-top: 1px solid var(--rpnl-border);
        box-shadow: 0 12px 24px rgba(11, 45, 77, 0.12);
    }

    .rpnl-navigation.is-open {
        display: block;
    }

    .rpnl-navigation__menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 16px 20px;
    }

    .rpnl-navigation__menu a {
        padding: 13px 8px;
        font-size: 15px;
        border-bottom: 1px solid var(--rpnl-border);
    }

    .rpnl-navigation__menu .rpnl-navigation__cta {
        margin-top: 12px;
        padding: 12px 18px;
        text-align: center;
        border-bottom: 0;
    }

    .rpnl-menu-toggle[aria-expanded="true"]
        .rpnl-menu-toggle__line:nth-of-type(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .rpnl-menu-toggle[aria-expanded="true"]
        .rpnl-menu-toggle__line:nth-of-type(3) {
        opacity: 0;
    }

    .rpnl-menu-toggle[aria-expanded="true"]
        .rpnl-menu-toggle__line:nth-of-type(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .rpnl-menu-toggle__line {
        transition:
            transform 0.2s ease,
            opacity 0.2s ease;
    }

    body.rpnl-menu-open {
        overflow: hidden;
    }

    .rpnl-livebar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 14px;
        padding: 9px 16px;
        text-align: center;
    }

    .rpnl-livebar__message {
        order: 3;
        flex-basis: 100%;
        font-size: 12px;
    }
}
/* Stopka portalu */

.rpnl-footer {
    width: 100%;
    margin-top: 60px;
    background: var(--rpnl-navy);
    color: var(--rpnl-white);
}

.rpnl-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 60px 0;
}

.rpnl-footer__brand p {
    margin: 20px 0 25px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

.rpnl-footer__logo {
    display: inline-flex;
    align-items: center;
}

.rpnl-footer__logo img {
    display: block;
    width: auto;
    max-width: 220px;
    height: auto;
}

.rpnl-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.rpnl-footer__social a {
    padding: 8px 14px;
    color: var(--rpnl-white);
    font-size: 14px;
    line-height: 1.3;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.rpnl-footer__social a:hover,
.rpnl-footer__social a:focus-visible {
    background: var(--rpnl-red);
    color: var(--rpnl-white);
    border-color: var(--rpnl-red);
}

.rpnl-footer__column h2 {
    margin: 0 0 18px;
    color: var(--rpnl-white);
    font-size: 18px;
    line-height: 1.3;
}

.rpnl-footer__column a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-footer__column a:hover,
.rpnl-footer__column a:focus-visible {
    color: var(--rpnl-white);
    transform: translateX(4px);
}

.rpnl-footer__newsletter {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 35px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rpnl-footer__newsletter h2 {
    margin: 0 0 10px;
    color: var(--rpnl-white);
    font-size: 28px;
    line-height: 1.25;
}

.rpnl-footer__newsletter p {
    max-width: 700px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.rpnl-footer__button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--rpnl-red);
    color: var(--rpnl-white);
    font-weight: 700;
    border-radius: 999px;
    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.rpnl-footer__button:hover,
.rpnl-footer__button:focus-visible {
    background: var(--rpnl-white);
    color: var(--rpnl-navy);
}

.rpnl-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

/* Stopka — wersja mobilna */

@media (max-width: 900px) {
    .rpnl-footer {
        margin-top: 40px;
    }

    .rpnl-footer__top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 45px 0;
    }

    .rpnl-footer__newsletter {
        padding: 30px 0;
    }

    .rpnl-footer__newsletter h2 {
        font-size: 24px;
    }

    .rpnl-footer__bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
/* =========================================================
   GLOBALNY SIDEBAR
   ========================================================= */

.rpnl-page-with-sidebar {
    width: 100%;
    padding: 48px 24px 64px;
    background: #f5f8fc;
}

.rpnl-page-with-sidebar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}

.rpnl-page-content {
    min-width: 0;
}

.rpnl-page-title {
    margin: 0 0 30px;
    color: #0b2d4d;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.rpnl-page-entry {
    color: #25384b;
    font-size: 17px;
    line-height: 1.7;
}

.rpnl-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.rpnl-widget {
    overflow: hidden;
    padding: 24px;
    border: 1px solid #dce5ee;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(11, 45, 77, 0.08);
}

.rpnl-widget__title {
    margin: 0 0 18px;
    color: #0b2d4d;
    font-size: 22px;
    line-height: 1.25;
}


/* =========================================================
   ANKIETA
   ========================================================= */

.rpnl-poll__form {
    margin: 0;
}

.rpnl-poll__fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.rpnl-poll__question {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    color: #25384b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
}

.rpnl-poll__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rpnl-poll__option {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid #dce5ee;
    border-radius: 9px;
    color: #25384b;
    background: #f8fafc;
    cursor: pointer;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.rpnl-poll__option:hover {
    border-color: #1677ff;
    background: #eef5ff;
}

.rpnl-poll__option:has(input:checked) {
    border-color: #1677ff;
    background: #eaf3ff;
}

.rpnl-poll__option input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #1677ff;
    flex: 0 0 auto;
}

.rpnl-poll__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 18px;
    padding: 10px 22px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    background: #e30613;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-poll__submit:hover {
    background: #bd0510;
    transform: translateY(-1px);
}

.rpnl-poll__submit:disabled {
    cursor: wait;
    opacity: 0.65;
    transform: none;
}

.rpnl-poll__message {
    margin: 16px 0 0;
    padding: 11px 13px;
    border-radius: 8px;
    color: #17633a;
    background: #e9f8ef;
    font-size: 14px;
    line-height: 1.45;
}

.rpnl-poll__message--error {
    color: #9e101b;
    background: #fdebed;
}

.rpnl-poll__results {
    margin-top: 18px;
}

.rpnl-poll__result {
    margin-bottom: 15px;
}

.rpnl-poll__result-heading {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 6px;
    color: #25384b;
    font-size: 14px;
}

.rpnl-poll__bar {
    overflow: hidden;
    height: 8px;
    border-radius: 999px;
    background: #e4ebf2;
}

.rpnl-poll__bar-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #1677ff;
    transition: width 0.4s ease;
}

.rpnl-poll__total {
    margin: 18px 0 0;
    color: #617386;
    font-size: 13px;
}


/* =========================================================
   WERSJA MOBILNA
   ========================================================= */

@media (max-width: 900px) {
    .rpnl-page-with-sidebar {
        padding: 32px 18px 48px;
    }

    .rpnl-page-with-sidebar__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .rpnl-sidebar {
        width: 100%;
    }

    .rpnl-widget {
        padding: 20px;
    }
}
@media (min-width: 1200px) {
    .rpnl-page-with-sidebar__inner {
        max-width: 1780px;
    }
}
/* =========================================================
   POGODA W SIDEBARZE
   ========================================================= */

.rpnl-weather-widget {
    color: #25384b;
}

.rpnl-weather__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.rpnl-weather__location {
    margin: -8px 0 0;
    color: #617386;
    font-size: 14px;
    font-weight: 600;
}

.rpnl-weather__icon {
    flex: 0 0 auto;
    margin-top: -4px;
}

.rpnl-weather__current {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.rpnl-weather__temperature {
    color: #0b2d4d;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1px;
}

.rpnl-weather__current-details {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 7px;
}

.rpnl-weather__description {
    color: #25384b;
    font-size: 14px;
    line-height: 1.35;
}

.rpnl-weather__range {
    display: flex;
    gap: 12px;
    color: #617386;
    font-size: 13px;
    font-weight: 600;
}

.rpnl-weather__details {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #e3eaf1;
    color: #617386;
    font-size: 13px;
}

.rpnl-weather__hours {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    margin-top: 20px;
}

.rpnl-weather__hour {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 10px 3px;
    border-radius: 8px;
    background: #f5f8fc;
    color: #617386;
    font-size: 12px;
    text-align: center;
}

.rpnl-weather__hour strong {
    color: #0b2d4d;
    font-size: 15px;
}

.rpnl-weather__hour:first-child {
    background: #eaf3ff;
}

.rpnl-weather__source {
    margin: 18px 0 0;
    color: #8391a0;
    font-size: 11px;
    text-align: right;
}
/* Większa główna ikona pogody */
.rpnl-weather__icon {
    width: 72px;
    height: 72px;
    margin-top: -10px;
}

/* Przycisk „Sprawdź pogodę” */
.rpnl-weather__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 56px;
    margin-top: 18px;
    padding: 14px 20px;
    border-radius: 9px;
    color: #ffffff !important;
    background: #e30613;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-weather__button:hover {
    color: #ffffff !important;
    background: #bd0510;
    transform: translateY(-1px);
}

.rpnl-weather__button span {
    font-size: 22px;
    line-height: 1;
}
/* =========================================================
   NADCHODZĄCE WYDARZENIA W SIDEBARZE
   ========================================================= */

.rpnl-events__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.rpnl-events__item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.rpnl-events__image-link {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #eaf0f6;
}

.rpnl-events__image {
    display: block;
    width: 92px;
    height: 78px;
    object-fit: cover;
}

.rpnl-events__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b2d4d;
    font-size: 13px;
    font-weight: 800;
}

.rpnl-events__content {
    min-width: 0;
}

.rpnl-events__date {
    margin: 0 0 5px;
    color: #e30613;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.rpnl-events__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.rpnl-events__title a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-events__title a:hover {
    color: #1677ff;
}

.rpnl-events__location {
    margin: 6px 0 0;
    color: #617386;
    font-size: 13px;
    line-height: 1.4;
}

.rpnl-events__empty {
    margin: 18px 0 0;
    color: #25384b;
    font-size: 16px;
    line-height: 1.5;
}

.rpnl-events__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 56px;
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 9px;
    background: #e30613;
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-events__button:hover {
    background: #bd0510;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.rpnl-events__button span {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.rpnl-events__button:hover span {
    transform: translateX(3px);
}
/* =========================================================
   NEWSLETTER W SIDEBARZE
   ========================================================= */

.rpnl-newsletter__header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rpnl-newsletter__icon {
    color: #0b2d4d;
    font-size: 18px;
    line-height: 1;
}

.rpnl-newsletter__header .rpnl-widget__title {
    margin: 0;
}

.rpnl-newsletter__description {
    margin: 20px 0 0;
    color: #25384b;
    font-size: 16px;
    line-height: 1.55;
}

.rpnl-newsletter__form {
    margin-top: 22px;
}

/* Usunięcie zbędnego tła i odstępów MailPoet */
.rpnl-newsletter__form .mailpoet_form {
    padding: 0 !important;
    background: transparent !important;
}
/* Ukrycie pola antyspamowego MailPoet */
.rpnl-newsletter__form .mailpoet_hp_email_label,
.rpnl-newsletter__form .mailpoet_hp_email {
    display: none !important;
}

.rpnl-newsletter__form .mailpoet_paragraph {
    margin: 0 0 12px !important;
}

/* Pole adresu e-mail */
.rpnl-newsletter__form input[type="email"] {
    display: block;
    width: 100% !important;
    min-height: 48px;
    padding: 11px 14px !important;
    border: 1px solid #b9c5d1 !important;
    border-radius: 7px !important;
    background: #ffffff !important;
    color: #25384b !important;
    font-size: 16px !important;
    line-height: 1.3;
    box-sizing: border-box;
}

.rpnl-newsletter__form input[type="email"]:focus {
    border-color: #1677ff !important;
    outline: 3px solid rgba(22, 119, 255, 0.15);
}

/* Czerwony przycisk zapisu */
.rpnl-newsletter__form input[type="submit"],
.rpnl-newsletter__form button[type="submit"] {
    display: block;
    width: 100% !important;
    min-height: 52px;
    padding: 13px 20px !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: #e30613 !important;
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-newsletter__form input[type="submit"]:hover,
.rpnl-newsletter__form button[type="submit"]:hover {
    background: #bd0510 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.rpnl-newsletter__privacy {
    margin: 20px 0 0;
    color: #617386;
    font-size: 13px;
    line-height: 1.55;
}
/* Dopasowanie newslettera do wersji opublikowanej */

.rpnl-newsletter-widget {
    text-align: center;
}

.rpnl-newsletter__header {
    justify-content: center;
}

.rpnl-newsletter__description {
    max-width: 280px;
    margin: 18px auto 0;
    text-align: center;
}

.rpnl-newsletter__form input[type="email"] {
    min-height: 52px;
    padding: 13px 22px !important;
    border-color: #dce4ec !important;
    border-radius: 999px !important;
    background: #f5f8fc !important;
    text-align: center;
}

.rpnl-newsletter__form input[type="submit"],
.rpnl-newsletter__form button[type="submit"] {
    min-height: 52px;
    border-radius: 999px !important;
}

.rpnl-newsletter__privacy {
    max-width: 280px;
    margin: 16px auto 0;
    font-style: italic;
    text-align: center;
}
/* =========================================================
   REKLAMA W SIDEBARZE
   ========================================================= */

.rpnl-ad__label {
    display: block;
    margin: 0;
    color: #25384b;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.rpnl-ad__title {
    margin: 26px 0 0;
    color: #0b2d4d;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.rpnl-ad__description {
    margin: 26px 0 0;
    color: #25384b;
    font-size: 17px;
    line-height: 1.5;
}
.rpnl-ad__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 56px;
    margin-top: 24px;
    padding: 14px 20px;
    border-radius: 9px;
    background: #e30613;
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-ad__button:hover {
    background: #bd0510;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.rpnl-ad__button span {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.rpnl-ad__button:hover span {
    transform: translateX(3px);
}
/* =========================================================
   POJEDYNCZY ARTYKUŁ – PODSTAWOWY UKŁAD DESKTOP
   ========================================================= */

.rpnl-single {
    width: 100%;
    padding: 48px 24px 80px;
    background: #ffffff;
}

.rpnl-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 48px;
    align-items: start;
    width: 100%;
    max-width: 1780px;
    margin: 0 auto;
}

.rpnl-single__main {
    min-width: 0;
}

.rpnl-single__sidebar {
    position: sticky;
    top: 24px;
    min-width: 0;
    align-self: start;
}

/* Nagłówek artykułu */

.rpnl-article__header {
    margin-bottom: 32px;
}

.rpnl-article__category {
    display: inline-block;
    margin-bottom: 16px;
    color: #1677ff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.rpnl-article__category:hover {
    color: #0b2d4d;
}

.rpnl-article__title {
    max-width: 1240px;
    margin: 0;
    color: #0b2d4d;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.025em;
}

.rpnl-article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #617386;
    font-size: 14px;
    line-height: 1.4;
}

/* Treść bez ramek i kart */

.rpnl-article {
    width: 100%;
}

.rpnl-article__content {
    max-width: 1150px;
    color: #25384b;
    font-size: 18px;
    line-height: 1.75;
}

.rpnl-article__content > *:first-child {
    margin-top: 0;
}

.rpnl-article__content p {
    margin: 0 0 24px;
}

.rpnl-article__content h2 {
    margin: 48px 0 18px;
    color: #0b2d4d;
    font-size: 32px;
    line-height: 1.2;
}

.rpnl-article__content h3 {
    margin: 36px 0 16px;
    color: #0b2d4d;
    font-size: 24px;
    line-height: 1.25;
}

.rpnl-article__content a {
    color: #1677ff;
}

.rpnl-article__content img {
    display: block;
    width: auto;
    max-width: min(100%, 1050px);
    height: auto;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
}

/* Tagi */

.rpnl-article__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #dce4ec;
}

.rpnl-article__tags-label {
    color: #0b2d4d;
    font-weight: 700;
}

.rpnl-article__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rpnl-article__tags a {
    padding: 6px 11px;
    border-radius: 999px;
    background: #edf3f8;
    color: #0b2d4d;
    font-size: 13px;
    text-decoration: none;
}

/* Tymczasowa reakcja na węższy ekran */

@media (max-width: 1050px) {
    .rpnl-single__layout {
        grid-template-columns: minmax(0, 1fr) 340px;
        gap: 30px;
    }
}

@media (max-width: 820px) {
    .rpnl-single {
        padding: 32px 18px 60px;
    }

    .rpnl-single__layout {
        grid-template-columns: 1fr;
    }

    .rpnl-single__sidebar {
        display: none;
    }

    .rpnl-article__title {
        font-size: 38px;
    }
}
/* =========================================================
   SUBTELNA REKLAMA NAD ARTYKUŁEM
   ========================================================= */

.rpnl-article-ad--top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 72px;
    margin: 0 0 28px;
    border-bottom: 1px solid #dce4ec;
}

.rpnl-article-ad__label {
    color: #8a9aaa;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* =========================================================
   SUBTELNA REKLAMA NA KOŃCU ARTYKUŁU
   ========================================================= */

.rpnl-article-ad--bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 96px;
    margin-top: 40px;
    border-top: 1px solid #dce4ec;
    border-bottom: 1px solid #dce4ec;
}
/* =========================================================
   UDOSTĘPNIANIE ARTYKUŁU
   ========================================================= */

.rpnl-share {
    margin-top: 32px;
    padding: 26px 28px;
    border: 1px solid #dce4ec;
    border-radius: 12px;
    background: #f7f9fc;
}

.rpnl-share__title {
    margin: 0 0 18px;
    color: #0b2d4d;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.rpnl-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rpnl-share__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.rpnl-share__button:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

.rpnl-share__button--facebook {
    background: #1877f2;
}

.rpnl-share__button--facebook:hover {
    background: #0f63d6;
}

.rpnl-share__button--whatsapp {
    background: #128c4b;
}

.rpnl-share__button--whatsapp:hover {
    background: #0d733d;
}

.rpnl-share__button--copy {
    background: #0b2d4d;
}

.rpnl-share__button--copy:hover {
    background: #061f36;
}

.rpnl-share__status {
    min-height: 20px;
    margin: 10px 0 0;
    color: #617386;
    font-size: 13px;
    line-height: 1.4;
}
/* =========================================================
   PRZECZYTAJ TAKŻE
   ========================================================= */

.rpnl-related {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid #dce4ec;
}

.rpnl-related__header {
    margin-bottom: 22px;
}

.rpnl-related__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-related__title {
    margin: 0;
    color: #0b2d4d;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.rpnl-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.rpnl-related-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce4ec;
    border-radius: 12px;
    background: #ffffff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 45, 77, 0.09);
}

.rpnl-related-card__image-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #eaf0f6;
}

.rpnl-related-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.rpnl-related-card:hover .rpnl-related-card__image {
    transform: scale(1.025);
}

.rpnl-related-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    color: #617386;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.rpnl-related-card__content {
    padding: 18px;
}

.rpnl-related-card__category {
    display: inline-block;
    margin-bottom: 8px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.rpnl-related-card__title {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-related-card__title a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-related-card__title a:hover {
    color: #1677ff;
}

.rpnl-related-card__date {
    color: #718196;
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .rpnl-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .rpnl-related {
        margin-top: 36px;
        padding-top: 28px;
    }

    .rpnl-related__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rpnl-related__title {
        font-size: 25px;
    }
}
/* =========================================================
   NAJNOWSZE WIADOMOŚCI POD ARTYKUŁEM
   ========================================================= */

.rpnl-latest {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid #dce4ec;
}

.rpnl-latest__header {
    margin-bottom: 22px;
}

.rpnl-latest__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-latest__title {
    margin: 0;
    color: #0b2d4d;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.rpnl-latest__list {
    overflow: hidden;
    border: 1px solid #dce4ec;
    border-radius: 12px;
    background: #ffffff;
}

.rpnl-latest-item {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    min-height: 88px;
    padding: 12px 16px 12px 12px;
    border-bottom: 1px solid #e5ebf1;
}

.rpnl-latest-item:last-child {
    border-bottom: 0;
}

.rpnl-latest-item__image-link {
    display: block;
    width: 88px;
    height: 64px;
    overflow: hidden;
    border-radius: 8px;
    background: #eaf0f6;
}

.rpnl-latest-item__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.25s ease;
}

.rpnl-latest-item:hover .rpnl-latest-item__image {
    transform: scale(1.04);
}

.rpnl-latest-item__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #617386;
    font-size: 12px;
    font-weight: 800;
}

.rpnl-latest-item__content {
    min-width: 0;
}

.rpnl-latest-item__category {
    display: block;
    margin-bottom: 5px;
    color: #e30613;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.rpnl-latest-item__title {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rpnl-latest-item__title a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-latest-item__title a:hover {
    color: #1677ff;
}

.rpnl-latest-item__date {
    color: #718196;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .rpnl-latest-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .rpnl-latest-item__image-link {
        width: 76px;
        height: 58px;
    }

    .rpnl-latest-item__date {
        display: none;
    }

    .rpnl-latest-item__title {
        font-size: 15px;
    }

    .rpnl-latest__title {
        font-size: 25px;
    }
}
/* =========================================================
   GLOBALNY HEADER — NOWOCZESNY WYGLĄD
   ========================================================= */

.rpnl-header {
    position: relative;
    z-index: 20;
    background: #e6edf4;
    border-bottom: 1px solid #dce4ec;
    box-shadow: 0 4px 18px rgba(11, 45, 77, 0.06);
}

.rpnl-livebar {
    position: relative;
    z-index: 21;
    width: calc(100% - 64px);
    max-width: none;
    min-height: 46px;
    margin: 12px auto 0;
    padding-right: 24px;
    padding-left: 24px;
    overflow: hidden;
    border-radius: 14px;
    background: #0b2d4d;
    box-shadow: 0 8px 22px rgba(11, 45, 77, 0.14);
}

.rpnl-livebar__status,
.rpnl-livebar__message,
.rpnl-livebar__link {
    position: relative;
    z-index: 1;
}

.rpnl-livebar__link a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.rpnl-livebar__link a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 700px) {
    .rpnl-livebar {
        width: calc(100% - 24px);
        margin-top: 8px;
        padding-right: 14px;
        padding-left: 14px;
        border-radius: 11px;
    }
}
/* =========================================================
   SIDEBAR — RADIO
   ========================================================= */

.rpnl-sidebar-radio {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #0b2d4d;
    background-image: var(--rpnl-radio-background);
    background-position: center;
    background-size: cover;
    box-shadow: 0 10px 28px rgba(11, 45, 77, 0.16);
    isolation: isolate;
}

.rpnl-sidebar-radio__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 24, 43, 0.94) 0%,
            rgba(5, 24, 43, 0.82) 55%,
            rgba(5, 24, 43, 0.38) 100%
        );
}

.rpnl-sidebar-radio__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    padding: 22px;
    color: #ffffff;
}

.rpnl-sidebar-radio__status {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e30613;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
}

.rpnl-sidebar-radio__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
    animation: rpnl-radio-pulse 1.8s infinite;
}

.rpnl-sidebar-radio__main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    align-items: center;
    gap: 16px;
    margin-top: 28px;
}

.rpnl-sidebar-radio__text {
    min-width: 0;
}

.rpnl-sidebar-radio__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-sidebar-radio__title {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.15;
}

.rpnl-sidebar-radio__track {
    min-width: 0;
}

.rpnl-sidebar-radio__track-label {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.rpnl-sidebar-radio__track-title {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rpnl-sidebar-radio__play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: #e30613;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(227, 6, 19, 0.28);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.rpnl-sidebar-radio__play span {
    margin-left: 3px;
}

.rpnl-sidebar-radio__play:hover {
    background: #c9000c;
    color: #ffffff;
    transform: scale(1.06);
}

@keyframes rpnl-radio-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.65;
        transform: scale(0.82);
    }
}

@media (prefers-reduced-motion: reduce) {
    .rpnl-sidebar-radio__dot {
        animation: none;
    }

    .rpnl-sidebar-radio__play {
        transition: none;
    }
}
/* =========================================================
   STRONA ODTWARZACZA RADIA
   ========================================================= */

body.rpnl-player-page {
    margin: 0;
    background: #061a2d;
}

.rpnl-player {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
    place-items: center;
    overflow: hidden;
    padding: 24px;
    background-color: #061a2d;
    isolation: isolate;
}

.rpnl-player__background {
    position: absolute;
    inset: -30px;
    z-index: -2;
    background-image: var(--rpnl-player-background);
    background-position: center;
    background-size: cover;
    filter: blur(10px);
    transform: scale(1.08);
}

.rpnl-player::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(22, 119, 255, 0.2),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            rgba(4, 18, 32, 0.9),
            rgba(11, 45, 77, 0.94)
        );
}

.rpnl-player__panel {
    width: min(100%, 560px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(11, 45, 77, 0.96),
            rgba(5, 25, 44, 0.96)
        );
    color: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.rpnl-player__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rpnl-player__brand {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
}

.rpnl-player__brand:hover {
    color: #ffffff;
    text-decoration: none;
}

.rpnl-player__close {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: inherit;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    place-items: center;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-player__close:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: scale(1.05);
}

.rpnl-player__content {
    padding: 48px 42px 44px;
    text-align: center;
}

.rpnl-player__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e30613;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.07em;
}

.rpnl-player__status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
    animation: rpnl-player-pulse 1.8s infinite;
}

.rpnl-player__eyebrow {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rpnl-player__track {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 6vw, 46px);
    font-weight: 850;
    line-height: 1.08;
    overflow-wrap: anywhere;
}

.rpnl-player__artist {
    min-height: 25px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.45;
}

.rpnl-player__listeners {
    min-height: 20px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}

.rpnl-player__controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
}

.rpnl-player__play {
    display: grid;
    width: 92px;
    height: 92px;
    padding: 0;
    border: 3px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: #e30613;
    color: #ffffff;
    font-family: inherit;
    font-size: 31px;
    cursor: pointer;
    box-shadow:
        0 14px 36px rgba(227, 6, 19, 0.34),
        0 0 0 10px rgba(255, 255, 255, 0.05);
    place-items: center;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-player__play:hover {
    background: #c9000c;
    transform: scale(1.06);
}

.rpnl-player__play-icon {
    margin-left: 6px;
}

.rpnl-player__pause-icon {
    font-size: 25px;
    letter-spacing: -4px;
}

.rpnl-player__volume {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: min(100%, 270px);
}

.rpnl-player__mute {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    place-items: center;
}

.rpnl-player__volume-range {
    width: 100%;
    accent-color: #e30613;
    cursor: pointer;
}

.rpnl-player__message {
    min-height: 20px;
    margin: 18px 0 0;
    color: #ffb9bd;
    font-size: 13px;
    line-height: 1.4;
}

.rpnl-player__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.rpnl-player__footer a {
    flex-shrink: 0;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.rpnl-player__footer a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

@keyframes rpnl-player-pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.82);
    }
}

@media (max-width: 600px) {
    .rpnl-player {
        align-items: stretch;
        padding: 0;
    }

    .rpnl-player__panel {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        border: 0;
        border-radius: 0;
    }

    .rpnl-player__content {
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 38px 24px;
    }

    .rpnl-player__status {
        margin-bottom: 28px;
    }

    .rpnl-player__track {
        font-size: clamp(30px, 10vw, 40px);
    }

    .rpnl-player__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rpnl-player__status-dot {
        animation: none;
    }

    .rpnl-player__close,
    .rpnl-player__play {
        transition: none;
    }
}

/* =========================================================
   SIDEBAR — WSPÓLNY NAGŁÓWEK NOWYCH MODUŁÓW
   ========================================================= */

.rpnl-widget__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.rpnl-widget__heading .rpnl-widget__title {
    margin-bottom: 0;
}

.rpnl-widget__heading-icon {
    display: grid;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    color: #e30613;
    font-size: 20px;
    font-weight: 800;
    place-items: center;
    border-radius: 50%;
    background: #fff0f1;
}

/* =========================================================
   SIDEBAR — REKLAMA LOKALNA
   ========================================================= */

.rpnl-ad-widget {
    position: relative;
    padding: 28px 24px;
    text-align: center;
    border-color: #cdddec;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(22, 119, 255, 0.12),
            transparent 42%
        ),
        linear-gradient(145deg, #ffffff 0%, #f3f8fd 100%);
}

.rpnl-ad-widget .rpnl-ad__label {
    display: inline-flex;
    margin: 0;
    padding: 5px 10px;
    color: #5f7183;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #d7e2ec;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
}

.rpnl-ad__icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 22px auto 16px;
    color: #1677ff;
    place-items: center;
    border-radius: 18px;
    background: #eaf3ff;
}

.rpnl-ad-widget .rpnl-ad__title {
    margin: 0;
    color: #0b2d4d;
    font-size: 22px;
    line-height: 1.25;
}

.rpnl-ad-widget .rpnl-ad__description {
    margin: 12px 0 20px;
    color: #617386;
    font-size: 14px;
    line-height: 1.6;
}

.rpnl-ad-widget .rpnl-ad__button {
    display: inline-flex;
    width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: 12px 16px;
    border-radius: 9px;
    background: #e30613;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
}

.rpnl-ad-widget .rpnl-ad__button:hover,
.rpnl-ad-widget .rpnl-ad__button:focus-visible {
    background: #bd0510;
    color: #ffffff !important;
}

/* =========================================================
   SIDEBAR — NAJCZĘŚCIEJ CZYTANE
   ========================================================= */

.rpnl-popular__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-popular__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 15px 0;
    border-top: 1px solid #e4ebf2;
}

.rpnl-popular__item:first-child {
    padding-top: 0;
    border-top: 0;
}

.rpnl-popular__item:last-child {
    padding-bottom: 0;
}

.rpnl-popular__number {
    color: #c5d2de;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-popular__item:first-child .rpnl-popular__number {
    color: #e30613;
}

.rpnl-popular__title {
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.rpnl-popular__title a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-popular__title a:hover,
.rpnl-popular__title a:focus-visible {
    color: #1677ff;
}

.rpnl-popular__date {
    display: block;
    margin-top: 6px;
    color: #7d8b99;
    font-size: 12px;
}

.rpnl-popular__empty {
    margin: 0;
    color: #617386;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   SIDEBAR — SOCIAL MEDIA
   ========================================================= */

.rpnl-social-widget {
    color: #ffffff;
    border: 0;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(22, 119, 255, 0.34),
            transparent 44%
        ),
        #0b2d4d;
}

.rpnl-social-widget .rpnl-widget__title {
    margin-bottom: 12px;
    color: #ffffff;
}

.rpnl-social__eyebrow {
    margin: 0 0 9px;
    color: #ffb7bb;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rpnl-social__description {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.6;
}

.rpnl-social__links {
    display: grid;
    gap: 10px;
}

.rpnl-social__link {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.07);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-social__link:hover,
.rpnl-social__link:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.13);
    transform: translateX(2px);
}

.rpnl-social__icon {
    display: grid;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    place-items: center;
    border-radius: 9px;
}

.rpnl-social__link--facebook .rpnl-social__icon {
    background: #1877f2;
}

.rpnl-social__link--tiktok .rpnl-social__icon {
    background: #111111;
}

.rpnl-social__link strong,
.rpnl-social__link small {
    display: block;
}

.rpnl-social__link strong {
    font-size: 14px;
}

.rpnl-social__link small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.rpnl-social__arrow {
    color: rgba(255, 255, 255, 0.62);
    font-size: 18px;
}

@media (max-width: 900px) {
    .rpnl-sidebar {
        gap: 18px;
    }

    .rpnl-widget {
        padding: 20px;
    }
}
/* Białe symbole Facebooka i TikToka */
.rpnl-social-widget .rpnl-social__icon svg,
.rpnl-social-widget .rpnl-social__icon svg path {
    color: #ffffff !important;
    fill: #ffffff !important;
}
/* =========================================================
   RADIO POLSKA NL — STRONA GŁÓWNA
   ========================================================= */

.rpnl-home {
    --rpnl-navy: #0b2d4d;
    --rpnl-navy-dark: #071f36;
    --rpnl-red: #e30613;
    --rpnl-blue: #1677ff;
    --rpnl-text: #17202b;
    --rpnl-muted: #667085;
    --rpnl-border: #dfe6ee;
    --rpnl-surface: #ffffff;
    --rpnl-background: #f5f8fc;
    --rpnl-radius: 14px;
    --rpnl-shadow: 0 10px 30px rgba(11, 45, 77, 0.08);

    width: 100%;
    overflow: hidden;
    color: var(--rpnl-text);
    background: var(--rpnl-background);
}

.rpnl-home *,
.rpnl-home *::before,
.rpnl-home *::after {
    box-sizing: border-box;
}

.rpnl-home img {
    display: block;
    max-width: 100%;
}

.rpnl-home a {
    color: inherit;
    text-decoration: none;
}

.rpnl-home-container {
    width: min(100% - 40px, 1380px);
    margin-inline: auto;
}


/* =========================================================
   WSPÓLNE NAGŁÓWKI SEKCJI
   ========================================================= */

.rpnl-home-section {
    margin-bottom: 56px;
}

.rpnl-home-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rpnl-border);
}

.rpnl-home-heading__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: var(--rpnl-red);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rpnl-home-heading__title {
    margin: 0;
    color: var(--rpnl-navy);
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.rpnl-home-heading__link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid var(--rpnl-red);
    border-radius: 8px;
    color: #ffffff !important;
    background: var(--rpnl-red);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-home-heading__link:hover,
.rpnl-home-heading__link:focus-visible {
    color: #ffffff !important;
    background: #b9040e;
    border-color: #b9040e;
    transform: translateY(-1px);
}

.rpnl-home-heading__link:focus-visible,
.rpnl-home a:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.3);
    outline-offset: 3px;
}

.rpnl-home-empty {
    margin: 0;
    padding: 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    color: var(--rpnl-muted);
    background: #ffffff;
}


/* =========================================================
   GÓRNA SEKCJA — NAJWAŻNIEJSZE WIADOMOŚCI
   ========================================================= */

.rpnl-home-top {
    padding: 34px 0 38px;
    background: #ffffff;
    border-bottom: 1px solid var(--rpnl-border);
}

.rpnl-home-heading--top {
    margin-bottom: 24px;
}

.rpnl-home-heading--top .rpnl-home-heading__title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.rpnl-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 16px;
}

.rpnl-top-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--rpnl-radius);
    background: var(--rpnl-navy);
}

.rpnl-top-card--main {
    grid-row: 1 / span 2;
    margin-right: 56px;
}

.rpnl-top-card__link,
.rpnl-top-card__media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.rpnl-top-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.rpnl-top-card:hover .rpnl-top-card__image {
    transform: scale(1.035);
}

.rpnl-top-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 20, 34, 0.02) 20%,
            rgba(5, 20, 34, 0.84) 100%
        );
}

.rpnl-top-card__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 22px;
    color: #ffffff;
}

.rpnl-top-card--main .rpnl-top-card__content {
    padding: 30px;
}

.rpnl-top-card__category {
    display: inline-flex;
    margin-bottom: 9px;
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--rpnl-red);
    font-size: 0.65rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rpnl-top-card__title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.rpnl-top-card--main .rpnl-top-card__title {
    max-width: 720px;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.12;
}

.rpnl-top-card__date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 600;
}


/* =========================================================
   PLACEHOLDERY OBRAZKÓW
   ========================================================= */

.rpnl-home-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 120px;
    background:
        linear-gradient(
            135deg,
            var(--rpnl-navy) 0%,
            #164f7c 100%
        );
}


/* =========================================================
   REKLAMA POZIOMA
   ========================================================= */

.rpnl-home-banner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin: 28px 0 42px;
    padding: 17px 20px;
    border: 1px solid #d8e2ed;
    border-radius: 12px;
    background: #ffffff;
}

.rpnl-home-banner__label {
    padding: 5px 8px;
    border-radius: 5px;
    color: #697586;
    background: #edf1f5;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-home-banner__content {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.rpnl-home-banner__content strong {
    color: var(--rpnl-navy);
    font-size: 0.95rem;
    line-height: 1.35;
}

.rpnl-home-banner__content span {
    color: var(--rpnl-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}

.rpnl-home-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 8px;
    color: #ffffff !important;
    background: var(--rpnl-red);
    font-size: 0.78rem;
    font-weight: 750;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.rpnl-home-banner__button:hover {
    background: #b9040e;
    transform: translateY(-1px);
}


/* =========================================================
   GŁÓWNY UKŁAD I SIDEBAR
   ========================================================= */

.rpnl-home-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: clamp(34px, 4vw, 58px);
}

.rpnl-home-content {
    min-width: 0;
}

.rpnl-home-sidebar {
    position: sticky;
    top: 100px;
    min-width: 0;
}


/* =========================================================
   STANDARDOWE SEKCJE WIADOMOŚCI
   ========================================================= */

.rpnl-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(270px, 0.9fr);
    gap: 16px 22px;
}

.rpnl-news-featured {
    grid-row: 1 / span 4;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--rpnl-border);
    border-radius: var(--rpnl-radius);
    background: #ffffff;
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.rpnl-news-featured:hover {
    box-shadow: var(--rpnl-shadow);
    transform: translateY(-2px);
}

.rpnl-news-featured__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rpnl-news-featured__media {
    height: 285px;
    overflow: hidden;
    background: #dde5ed;
}

.rpnl-news-featured__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rpnl-news-featured:hover .rpnl-news-featured__image {
    transform: scale(1.03);
}

.rpnl-news-featured__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
}

.rpnl-news-card__category {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--rpnl-red);
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rpnl-news-featured__title {
    margin: 0 0 10px;
    color: var(--rpnl-navy);
    font-size: clamp(1.3rem, 2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rpnl-news-featured__excerpt {
    margin: 0 0 17px;
    color: #536171;
    font-size: 0.92rem;
    line-height: 1.65;
}

.rpnl-news-card__date {
    display: block;
    margin-top: auto;
    color: #7b8794;
    font-size: 0.72rem;
    font-weight: 600;
}

.rpnl-news-small {
    min-width: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rpnl-border);
}

.rpnl-news-small:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.rpnl-news-small__link {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.rpnl-news-small__media {
    height: 78px;
    overflow: hidden;
    border-radius: 9px;
    background: #dde5ed;
}

.rpnl-news-small__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rpnl-news-small:hover .rpnl-news-small__image {
    transform: scale(1.04);
}

.rpnl-news-small__content {
    min-width: 0;
}

.rpnl-news-small__title {
    display: -webkit-box;
    margin: 0 0 8px;
    overflow: hidden;
    color: var(--rpnl-navy);
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.34;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.rpnl-news-small:hover .rpnl-news-small__title {
    color: var(--rpnl-red);
}


/* =========================================================
   PRACA W HOLANDII
   ========================================================= */

.rpnl-jobs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-job-card {
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 26px;
    border: 1px solid var(--rpnl-border);
    border-radius: var(--rpnl-radius);
    background: #ffffff;
}

.rpnl-job-card--primary {
    border-color: transparent;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--rpnl-navy) 0%,
            #164f7c 100%
        );
}

.rpnl-job-card__label {
    display: block;
    margin-bottom: 10px;
    color: var(--rpnl-red);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-job-card--primary .rpnl-job-card__label {
    color: var(--rpnl-red);
}

.rpnl-job-card__title {
    margin: 0 0 10px;
    color: var(--rpnl-navy);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
}

.rpnl-job-card--primary .rpnl-job-card__title {
    color: #ffffff;
}

.rpnl-job-card__text {
    margin: 0 0 22px;
    color: var(--rpnl-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.rpnl-job-card--primary .rpnl-job-card__text {
    color: rgba(255, 255, 255, 0.82);
}

.rpnl-job-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 42px;
    margin-top: auto;
    padding: 10px 17px;
    border: 1px solid var(--rpnl-red);
    border-radius: 8px;
    color: #ffffff !important;
    background: var(--rpnl-red);
    font-size: 0.8rem;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-job-card__button:hover {
    border-color: #b9040e;
    color: #ffffff !important;
    background: #b9040e;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(7, 31, 54, 0.18);
}

.rpnl-job-card__button--outline {
    border-color: var(--rpnl-red);
    color: #ffffff !important;
    background: var(--rpnl-red);
}


/* =========================================================
   KORKI I TRANSPORT
   ========================================================= */

.rpnl-transport-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rpnl-transport-card {
    overflow: hidden;
    border: 1px solid var(--rpnl-border);
    border-radius: 11px;
    background: #ffffff;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-transport-card:hover {
    border-color: #b9cadb;
    box-shadow: 0 8px 22px rgba(11, 45, 77, 0.06);
}

.rpnl-transport-card__link {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    min-height: 76px;
    padding: 12px 17px;
}

.rpnl-transport-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--rpnl-red);
    font-size: 1rem;
    font-weight: 900;
}

.rpnl-transport-card__content {
    min-width: 0;
}

.rpnl-transport-card__title {
    margin: 0 0 5px;
    color: var(--rpnl-navy);
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.35;
}

.rpnl-transport-card__arrow {
    color: var(--rpnl-navy);
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.rpnl-transport-card:hover .rpnl-transport-card__arrow {
    transform: translateX(4px);
}


/* =========================================================
   PORADNIKI
   ========================================================= */

.rpnl-guides-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rpnl-guide-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--rpnl-border);
    border-radius: var(--rpnl-radius);
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.rpnl-guide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rpnl-shadow);
}

.rpnl-guide-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rpnl-guide-card__media {
    height: 150px;
    overflow: hidden;
    background: #dde5ed;
}

.rpnl-guide-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rpnl-guide-card:hover .rpnl-guide-card__image {
    transform: scale(1.04);
}

.rpnl-guide-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 17px;
}

.rpnl-guide-card__label {
    margin-bottom: 8px;
    color: var(--rpnl-red);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rpnl-guide-card__title {
    margin: 0 0 8px;
    color: var(--rpnl-navy);
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-guide-card__text {
    margin: 0 0 15px;
    color: var(--rpnl-muted);
    font-size: 0.8rem;
    line-height: 1.55;
}

.rpnl-guide-card__more {
    margin-top: auto;
    color: var(--rpnl-blue);
    font-size: 0.76rem;
    font-weight: 750;
}


/* =========================================================
   MATERIAŁ PARTNERA
   ========================================================= */

.rpnl-partner-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin: 0 0 56px;
    padding: 24px;
    border: 1px solid #d5e0eb;
    border-left: 5px solid var(--rpnl-red);
    border-radius: 12px;
    background: #ffffff;
}

.rpnl-partner-card__label {
    align-self: flex-start;
    padding: 5px 8px;
    border-radius: 5px;
    color: #667085;
    background: #edf1f5;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rpnl-partner-card__title {
    margin: 0 0 5px;
    color: var(--rpnl-navy);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-partner-card__text {
    margin: 0;
    color: var(--rpnl-muted);
    font-size: 0.82rem;
    line-height: 1.55;
}

.rpnl-partner-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 17px;
    border-radius: 8px;
    color: #ffffff !important;
    background: var(--rpnl-red);
    font-size: 0.78rem;
    font-weight: 800;
}


/* =========================================================
   WYDARZENIA
   ========================================================= */

.rpnl-home-events__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rpnl-home-event {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--rpnl-border);
    border-radius: var(--rpnl-radius);
    background: #ffffff;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.rpnl-home-event:hover {
    transform: translateY(-3px);
    box-shadow: var(--rpnl-shadow);
}

.rpnl-home-event__link {
    display: block;
    height: 100%;
}

.rpnl-home-event__media {
    height: 155px;
    overflow: hidden;
    background: #dde5ed;
}

.rpnl-home-event__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rpnl-home-event:hover .rpnl-home-event__image {
    transform: scale(1.04);
}

.rpnl-home-event__content {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    padding: 16px;
}

.rpnl-home-event__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    color: #ffffff;
    background: var(--rpnl-navy);
    text-align: center;
}

.rpnl-home-event__date strong {
    display: block;
    padding: 6px 5px 2px;
    font-size: 1.12rem;
    line-height: 1;
}

.rpnl-home-event__date span {
    display: block;
    width: 100%;
    padding: 3px 4px;
    background: var(--rpnl-red);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rpnl-home-event__title {
    margin: 2px 0 6px;
    color: var(--rpnl-navy);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.32;
}

.rpnl-home-event__location {
    margin: 0;
    color: var(--rpnl-muted);
    font-size: 0.73rem;
    line-height: 1.4;
}


/* =========================================================
   KATALOG FIRM
   ========================================================= */

.rpnl-business-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    padding: 30px;
    border-radius: var(--rpnl-radius);
    color: #ffffff;
    background:
        linear-gradient(
            125deg,
            var(--rpnl-navy-dark) 0%,
            var(--rpnl-navy) 64%,
            #15527f 100%
        );
}

.rpnl-business-intro__title {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
}

.rpnl-business-intro__text {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.55;
}

.rpnl-business-intro__actions {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.rpnl-business-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid var(--rpnl-red);
    border-radius: 8px;
    font-size: 0.77rem;
    font-weight: 800;
}

.rpnl-business-button--primary {
    color: #ffffff !important;
    background: var(--rpnl-red);
}

.rpnl-business-button--secondary {
    color: #ffffff !important;
    background: var(--rpnl-red);
}

.rpnl-business-button:hover,
.rpnl-business-button:focus-visible {
    border-color: #b9040e;
    color: #ffffff !important;
    background: #b9040e;
}


/* =========================================================
   ODKRYWAMY HOLANDIĘ
   ========================================================= */

.rpnl-discover-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rpnl-discover-card {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--rpnl-radius);
    background: var(--rpnl-navy);
}

.rpnl-discover-card__link {
    position: relative;
    display: block;
    height: 270px;
}

.rpnl-discover-card__media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.rpnl-discover-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rpnl-discover-card:hover .rpnl-discover-card__image {
    transform: scale(1.05);
}

.rpnl-discover-card__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(5, 20, 34, 0.04) 18%,
            rgba(5, 20, 34, 0.88) 100%
        );
}

.rpnl-discover-card__content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: #ffffff;
}

.rpnl-discover-card__label {
    display: block;
    margin-bottom: 7px;
    color: #ff858c;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.rpnl-discover-card__title {
    margin: 0;
    color: #ffffff;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.3;
}


/* =========================================================
   KOŃCOWY MODUŁ RADIA
   ========================================================= */

.rpnl-home-radio {
    margin-top: 18px;
    padding: 50px 0;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            var(--rpnl-navy-dark) 0%,
            var(--rpnl-navy) 58%,
            #123f65 100%
        );
}

.rpnl-home-radio__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
}

.rpnl-home-radio__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-home-radio__live i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rpnl-red);
    box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.17);
}

.rpnl-home-radio__title {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.rpnl-home-radio__text {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    line-height: 1.6;
}

.rpnl-home-radio__button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
    padding: 15px 20px;
    border-radius: 12px;
    color: var(--rpnl-navy) !important;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-home-radio__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.rpnl-home-radio__play {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding-left: 3px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--rpnl-red);
    font-size: 1rem;
}

.rpnl-home-radio__button > span:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rpnl-home-radio__button strong {
    font-size: 0.95rem;
    line-height: 1.2;
}

.rpnl-home-radio__button small {
    color: var(--rpnl-muted);
    font-size: 0.68rem;
    line-height: 1.3;
}


/* =========================================================
   TABLET — DO 1100 PX
   ========================================================= */

@media (max-width: 1100px) {
    .rpnl-home-container {
        width: min(100% - 32px, 1060px);
    }

    .rpnl-top-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
    }

    .rpnl-top-card--main {
        grid-row: 1 / span 2;
    }

    .rpnl-top-card:nth-child(4),
    .rpnl-top-card:nth-child(5) {
        display: none;
    }

    .rpnl-home-layout {
        grid-template-columns: minmax(0, 1fr) 285px;
        gap: 30px;
    }

    .rpnl-news-grid {
        grid-template-columns: 1fr;
    }

    .rpnl-news-featured {
        grid-row: auto;
    }

    .rpnl-news-small__link {
        grid-template-columns: 125px minmax(0, 1fr);
    }

    .rpnl-guides-grid,
    .rpnl-home-events__grid,
    .rpnl-discover-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-guide-card:last-child,
    .rpnl-home-event:last-child,
    .rpnl-discover-card:last-child {
        display: none;
    }

    .rpnl-partner-card {
        grid-template-columns: 1fr auto;
    }

    .rpnl-partner-card__label {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .rpnl-business-intro {
        grid-template-columns: 1fr;
    }

    .rpnl-business-intro__actions {
        flex-direction: row;
    }
}


/* =========================================================
   MOBILE I MAŁY TABLET — DO 820 PX
   ========================================================= */

@media (max-width: 820px) {
    .rpnl-home-container {
        width: min(100% - 28px, 760px);
    }

    .rpnl-home-top {
        padding: 25px 0 30px;
    }

    .rpnl-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 340px 190px;
    }

    .rpnl-top-card--main {
        grid-column: 1 / -1;
        grid-row: auto;
        margin-right: 0;
    }

    .rpnl-top-card:nth-child(4),
    .rpnl-top-card:nth-child(5) {
        display: block;
    }

    .rpnl-top-card:nth-child(4),
    .rpnl-top-card:nth-child(5) {
        display: none;
    }

    .rpnl-home-banner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .rpnl-home-banner__button {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .rpnl-home-layout {
        display: block;
    }

    .rpnl-home-sidebar {
        display: none;
    }

    .rpnl-news-grid {
        grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.9fr);
    }

    .rpnl-news-featured {
        grid-row: 1 / span 4;
    }

    .rpnl-news-featured__media {
        height: 250px;
    }

    .rpnl-news-small__link {
        grid-template-columns: 95px minmax(0, 1fr);
    }

    .rpnl-news-small__media {
        height: 70px;
    }

    .rpnl-jobs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   TELEFONY — DO 640 PX
   ========================================================= */

@media (max-width: 640px) {
    .rpnl-home-container {
        width: calc(100% - 24px);
    }

    .rpnl-home-section {
        margin-bottom: 42px;
    }

    .rpnl-home-heading {
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 17px;
        padding-bottom: 11px;
    }

    .rpnl-home-heading__title {
        font-size: 1.42rem;
    }

    .rpnl-home-heading__link {
        max-width: none;
        padding: 8px 11px;
        font-size: 0.7rem;
        text-align: center;
    }

    .rpnl-home-heading--top {
        display: block;
    }

    .rpnl-home-heading--top .rpnl-home-heading__title {
        font-size: 1.75rem;
    }

    .rpnl-top-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .rpnl-top-card {
        height: 150px;
    }

    .rpnl-top-card--main {
        height: 310px;
    }

    .rpnl-top-card:nth-child(4),
    .rpnl-top-card:nth-child(5) {
        display: none;
    }

    .rpnl-top-card__content {
        padding: 16px;
    }

    .rpnl-top-card--main .rpnl-top-card__content {
        padding: 20px;
    }

    .rpnl-top-card--main .rpnl-top-card__title {
        font-size: 1.55rem;
    }

    .rpnl-top-card__title {
        font-size: 1rem;
    }

    .rpnl-home-banner {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px 0 34px;
        padding: 16px;
    }

    .rpnl-home-banner__label {
        justify-self: start;
    }

    .rpnl-home-banner__button {
        grid-column: auto;
        width: 100%;
    }

    .rpnl-news-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .rpnl-news-featured {
        grid-row: auto;
    }

    .rpnl-news-featured__media {
        height: 220px;
    }

    .rpnl-news-featured__content {
        padding: 18px;
    }

    .rpnl-news-featured__title {
        font-size: 1.3rem;
    }

    .rpnl-news-small__link {
        grid-template-columns: 105px minmax(0, 1fr);
    }

    .rpnl-news-small__media {
        height: 76px;
    }

    .rpnl-news-small__title {
        font-size: 0.9rem;
    }

    .rpnl-jobs-grid,
    .rpnl-guides-grid,
    .rpnl-home-events__grid,
    .rpnl-discover-grid {
        grid-template-columns: 1fr;
    }

    .rpnl-job-card {
        min-height: 225px;
        padding: 22px;
    }

    .rpnl-guide-card:last-child,
    .rpnl-home-event:last-child,
    .rpnl-discover-card:last-child {
        display: block;
    }

    .rpnl-guide-card__media,
    .rpnl-home-event__media {
        height: 190px;
    }

    .rpnl-transport-card__link {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 12px;
        padding: 12px 14px;
    }

    .rpnl-transport-card__arrow {
        display: none;
    }

    .rpnl-partner-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 42px;
        padding: 20px;
    }

    .rpnl-partner-card__button {
        width: 100%;
    }

    .rpnl-business-intro {
        gap: 22px;
        padding: 24px 20px;
    }

    .rpnl-business-intro__title {
        font-size: 1.3rem;
    }

    .rpnl-business-intro__actions {
        flex-direction: column;
        width: 100%;
    }

    .rpnl-business-button {
        width: 100%;
    }

    .rpnl-discover-card__link {
        height: 230px;
    }

    .rpnl-home-radio {
        padding: 38px 0;
    }

    .rpnl-home-radio__inner {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rpnl-home-radio__title {
        font-size: 1.65rem;
    }

    .rpnl-home-radio__button {
        width: 100%;
        min-width: 0;
    }
}


/* =========================================================
   BARDZO MAŁE TELEFONY — DO 400 PX
   ========================================================= */

@media (max-width: 400px) {
    .rpnl-home-heading {
        flex-direction: column;
    }

    .rpnl-home-heading__link {
        max-width: none;
        text-align: left;
    }

    .rpnl-top-card--main {
        height: 280px;
    }

    .rpnl-top-card--main .rpnl-top-card__title {
        font-size: 1.35rem;
    }

    .rpnl-news-featured__media {
        height: 190px;
    }

    .rpnl-news-small__link {
        grid-template-columns: 92px minmax(0, 1fr);
        gap: 11px;
    }

    .rpnl-news-small__media {
        height: 70px;
    }
}


/* =========================================================
   OGRANICZENIE ANIMACJI
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .rpnl-home *,
    .rpnl-home *::before,
    .rpnl-home *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================================================
   ARCHIWUM KATEGORII
   
   ========================================================= */

.rpnl-category {
    padding-bottom: 72px;
    background: var(--rpnl-background, #f5f8fc);
}

.rpnl-category *,
.rpnl-category *::before,
.rpnl-category *::after {
    box-sizing: border-box;
}

.rpnl-category a {
    color: inherit;
    text-decoration: none;
}

.rpnl-category-container {
    width: min(100% - 40px, 1380px);
    margin-inline: auto;
}

.rpnl-category-hero {
    padding: 38px 0 42px;
    margin-bottom: 44px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(22, 119, 255, 0.1),
            transparent 34%
        ),
        #ffffff;
    border-bottom: 1px solid var(--rpnl-border, #dfe7ef);
}

.rpnl-category-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    color: #738397;
    font-size: 0.78rem;
}

.rpnl-category-breadcrumbs a:hover,
.rpnl-category-breadcrumbs a:focus-visible {
    color: var(--rpnl-red, #e30613);
}

.rpnl-category-hero__eyebrow,
.rpnl-category-section-heading__eyebrow {
    display: block;
    margin-bottom: 6px;
    color: var(--rpnl-red, #e30613);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-category-hero__title {
    max-width: 850px;
    margin: 0;
    color: var(--rpnl-navy, #0b2d4d);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
}

.rpnl-category-hero__description {
    max-width: 760px;
    margin: 15px 0 0;
    color: #617386;
    font-size: 1rem;
    line-height: 1.7;
}

.rpnl-category-hero__description p {
    margin: 0;
}

.rpnl-category-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: clamp(34px, 4vw, 58px);
}

.rpnl-category-content {
    min-width: 0;
}

.rpnl-category-sidebar {
    position: sticky;
    top: 100px;
    min-width: 0;
}

.rpnl-category-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 14px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--rpnl-border, #dfe7ef);
}

.rpnl-category-section-heading__title {
    margin: 0;
    color: var(--rpnl-navy, #0b2d4d);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    line-height: 1.15;
}

.rpnl-category-section-heading__count {
    flex: 0 0 auto;
    color: #738397;
    font-size: 0.82rem;
}

.rpnl-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.rpnl-category-card {
    overflow: hidden;
    margin: 0;
    background: #ffffff;
    border: 1px solid var(--rpnl-border, #dfe7ef);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(11, 45, 77, 0.06);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(11, 45, 77, 0.11);
}

.rpnl-category-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rpnl-category-card__media {
    overflow: hidden;
    height: 220px;
    background: #e8eef5;
}

.rpnl-category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rpnl-category-card:hover .rpnl-category-card__image {
    transform: scale(1.025);
}

.rpnl-category-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(
            135deg,
            rgba(22, 119, 255, 0.12),
            rgba(11, 45, 77, 0.1)
        );
}

.rpnl-category-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
}

.rpnl-category-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    color: #7d8b99;
    font-size: 0.72rem;
}

.rpnl-category-card__label {
    overflow: hidden;
    color: var(--rpnl-red, #e30613);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rpnl-category-card__meta time {
    flex: 0 0 auto;
}

.rpnl-category-card__title {
    margin: 0;
    color: var(--rpnl-navy, #0b2d4d);
    font-size: 1.22rem;
    line-height: 1.32;
}

.rpnl-category-card__excerpt {
    margin: 12px 0 18px;
    color: #617386;
    font-size: 0.88rem;
    line-height: 1.65;
}

.rpnl-category-card__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--rpnl-blue, #1677ff);
    font-size: 0.82rem;
    font-weight: 800;
}

.rpnl-category-card:hover .rpnl-category-card__title,
.rpnl-category-card__link:focus-visible .rpnl-category-card__title {
    color: var(--rpnl-blue, #1677ff);
}

.rpnl-category-pagination {
    margin-top: 40px;
}

.rpnl-category-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.rpnl-category-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 13px;
    color: var(--rpnl-navy, #0b2d4d);
    font-size: 0.85rem;
    font-weight: 800;
    background: #ffffff;
    border: 1px solid var(--rpnl-border, #dfe7ef);
    border-radius: 9px;
}

.rpnl-category-pagination .page-numbers:hover,
.rpnl-category-pagination .page-numbers:focus-visible,
.rpnl-category-pagination .page-numbers.current {
    color: #ffffff;
    background: var(--rpnl-navy, #0b2d4d);
    border-color: var(--rpnl-navy, #0b2d4d);
}

.rpnl-category-empty {
    padding: 42px;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--rpnl-border, #dfe7ef);
    border-radius: 14px;
}

.rpnl-category-empty h2 {
    margin: 0 0 8px;
    color: var(--rpnl-navy, #0b2d4d);
}

.rpnl-category-empty p {
    margin: 0;
    color: #617386;
}

@media (max-width: 1100px) {
    .rpnl-category-container {
        width: min(100% - 32px, 1060px);
    }

    .rpnl-category-layout {
        grid-template-columns: minmax(0, 1fr) 285px;
        gap: 30px;
    }

    .rpnl-category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .rpnl-category {
        padding-bottom: 48px;
    }

    .rpnl-category-hero {
        padding: 28px 0 32px;
        margin-bottom: 32px;
    }

    .rpnl-category-layout {
        display: block;
    }

    .rpnl-category-sidebar {
        display: none;
    }

    .rpnl-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .rpnl-category-container {
        width: min(100% - 24px, 600px);
    }

    .rpnl-category-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .rpnl-category-grid {
        grid-template-columns: 1fr;
    }

    .rpnl-category-card__media {
        height: 205px;
    }

    .rpnl-category-card__content {
        padding: 17px;
    }

    .rpnl-category-card__excerpt {
        margin-bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rpnl-category *,
    .rpnl-category *::before,
    .rpnl-category *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
/* =========================================================
   ARCHIWUM KATEGORII — KOSMETYKA
   
   ========================================================= */

.rpnl-category-hero {
    margin-bottom: 28px;
}

.rpnl-category-sidebar {
    position: sticky;
    top: 96px;
    align-self: start;
}

.rpnl-category-card__meta {
    justify-content: flex-start;
    margin-bottom: 10px;
}

.rpnl-category-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin: 10px 0 16px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media (max-width: 850px) {
    .rpnl-category-hero {
        margin-bottom: 24px;
    }
}
/* =========================================================
   ARCHIWUM I POJEDYNCZE WYDARZENIE
   ========================================================= */

.rpnl-event-archive,
.rpnl-single-event {
    color: #25384a;
    background: #f5f8fc;
}

.rpnl-event-container {
    width: min(1440px, calc(100% - 48px));
    margin-inline: auto;
}

.rpnl-event-archive__hero,
.rpnl-single-event__hero {
    padding: 34px 0 38px;
    border-bottom: 1px solid #dfe8f1;
    background:
        radial-gradient(circle at 84% 18%, rgba(22, 119, 255, 0.1), transparent 31%),
        #ffffff;
}

.rpnl-event-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    color: #7b8997;
    font-size: 13px;
}

.rpnl-event-breadcrumbs a {
    color: #526a80;
    text-decoration: none;
}

.rpnl-event-breadcrumbs a:hover,
.rpnl-event-breadcrumbs a:focus-visible {
    color: #1677ff;
}

.rpnl-event-hero__eyebrow,
.rpnl-event-section-heading__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rpnl-event-hero__title,
.rpnl-single-event__title {
    max-width: 920px;
    margin: 0;
    color: #0b2d4d;
    font-size: clamp(36px, 4.2vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.rpnl-event-hero__description {
    max-width: 720px;
    margin: 16px 0 0;
    color: #617386;
    font-size: 17px;
    line-height: 1.65;
}

.rpnl-event-archive__layout,
.rpnl-single-event__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 36px;
    padding: 42px 0 72px;
}

.rpnl-event-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.rpnl-event-section-heading__title {
    margin: 0;
    color: #0b2d4d;
    font-size: 30px;
    line-height: 1.15;
}

.rpnl-event-section-heading__count {
    flex: 0 0 auto;
    padding: 7px 11px;
    color: #60758a;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #dce6ef;
    border-radius: 999px;
    background: #ffffff;
}

.rpnl-event-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-event-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dfe8f1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(11, 45, 77, 0.055);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.rpnl-event-card:hover {
    border-color: #c8d9e8;
    box-shadow: 0 14px 34px rgba(11, 45, 77, 0.1);
    transform: translateY(-3px);
}

.rpnl-event-card__link {
    display: flex;
    height: 100%;
    color: inherit;
    text-decoration: none;
    flex-direction: column;
}

.rpnl-event-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe9f2;
}

.rpnl-event-card__image,
.rpnl-event-card__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rpnl-event-card__placeholder {
    background:
        linear-gradient(135deg, rgba(22, 119, 255, 0.14), transparent 60%),
        #e8eff6;
}

.rpnl-event-card__date {
    position: absolute;
    top: 12px;
    left: 12px;
    display: grid;
    width: 54px;
    min-height: 58px;
    overflow: hidden;
    text-align: center;
    border-radius: 9px;
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(11, 45, 77, 0.2);
}

.rpnl-event-card__date strong {
    align-self: end;
    color: #0b2d4d;
    font-size: 25px;
    line-height: 1;
}

.rpnl-event-card__date span {
    align-self: end;
    padding: 4px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: #e30613;
}

.rpnl-event-card__content {
    display: flex;
    flex: 1;
    padding: 18px;
    flex-direction: column;
}

.rpnl-event-card__time {
    margin: 0 0 7px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
}

.rpnl-event-card__title {
    margin: 0;
    color: #0b2d4d;
    font-size: 18px;
    line-height: 1.3;
}

.rpnl-event-card__location {
    margin: 10px 0 18px;
    color: #617386;
    font-size: 13px;
    line-height: 1.45;
}

.rpnl-event-card__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #1677ff;
    font-size: 12px;
    font-weight: 800;
}

.rpnl-event-card:hover .rpnl-event-card__more span {
    transform: translateX(3px);
}

.rpnl-event-card__more span {
    transition: transform 0.2s ease;
}

.rpnl-event-sidebar {
    position: sticky;
    top: 24px;
    min-width: 0;
}

.rpnl-event-pagination {
    margin-top: 34px;
}

.rpnl-event-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rpnl-event-pagination .page-numbers {
    display: inline-flex;
    min-width: 42px;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    color: #0b2d4d;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid #dce6ef;
    border-radius: 8px;
    background: #ffffff;
}

.rpnl-event-pagination .page-numbers.current,
.rpnl-event-pagination a.page-numbers:hover {
    color: #ffffff;
    border-color: #1677ff;
    background: #1677ff;
}

.rpnl-event-empty {
    padding: 48px 28px;
    text-align: center;
    border: 1px solid #dfe8f1;
    border-radius: 14px;
    background: #ffffff;
}

.rpnl-event-empty h2 {
    margin: 0 0 10px;
    color: #0b2d4d;
}

.rpnl-event-empty p {
    margin: 0;
    color: #617386;
}

/* Pojedyncze wydarzenie */

.rpnl-single-event__lead-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
    color: #617386;
    font-size: 15px;
    font-weight: 700;
}

.rpnl-single-event__article {
    min-width: 0;
}

.rpnl-single-event__cover {
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 16px;
    background: #dfe8f1;
}

.rpnl-single-event__image {
    display: block;
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.rpnl-event-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid #dfe8f1;
    border-radius: 13px;
    background: #dfe8f1;
}

.rpnl-event-detail {
    min-width: 0;
    padding: 18px 20px;
    background: #ffffff;
}

.rpnl-event-detail__label {
    display: block;
    margin-bottom: 6px;
    color: #7b8997;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-event-detail strong {
    display: block;
    color: #0b2d4d;
    font-size: 15px;
    line-height: 1.45;
}

.rpnl-event-detail a {
    display: inline-block;
    margin-top: 7px;
    color: #1677ff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.rpnl-event-ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 14px 22px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 9px;
    background: #e30613;
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.17);
}

.rpnl-event-ticket-button:hover,
.rpnl-event-ticket-button:focus-visible {
    color: #ffffff;
    background: #bb0711;
}

.rpnl-single-event__content {
    padding: 32px;
    font-size: 17px;
    line-height: 1.75;
    border: 1px solid #dfe8f1;
    border-radius: 14px;
    background: #ffffff;
}

.rpnl-single-event__content > :first-child {
    margin-top: 0;
}

.rpnl-single-event__content > :last-child {
    margin-bottom: 0;
}

.rpnl-single-event__content h2,
.rpnl-single-event__content h3 {
    color: #0b2d4d;
    line-height: 1.25;
}

.rpnl-single-event__content a {
    color: #1677ff;
}

.rpnl-single-event__footer {
    margin-top: 20px;
}

.rpnl-single-event__footer a {
    color: #0b2d4d;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 1260px) {
    .rpnl-event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .rpnl-event-archive__layout,
    .rpnl-single-event__layout {
        grid-template-columns: 1fr;
    }

    .rpnl-event-sidebar {
        display: none;
    }
}

@media (max-width: 640px) {
    .rpnl-event-container {
        width: min(100% - 28px, 1440px);
    }

    .rpnl-event-archive__hero,
    .rpnl-single-event__hero {
        padding: 24px 0 28px;
    }

    .rpnl-event-breadcrumbs {
        margin-bottom: 22px;
    }

    .rpnl-event-hero__title,
    .rpnl-single-event__title {
        font-size: 34px;
    }

    .rpnl-event-archive__layout,
    .rpnl-single-event__layout {
        padding: 30px 0 50px;
    }

    .rpnl-event-section-heading {
        align-items: start;
        flex-direction: column;
    }

    .rpnl-event-grid,
    .rpnl-event-details {
        grid-template-columns: 1fr;
    }

    .rpnl-single-event__content {
        padding: 22px 18px;
        font-size: 16px;
    }

    .rpnl-event-ticket-button {
        width: 100%;
    }
}
/* =========================================================
   HEADER — WYSZUKIWARKA
   ========================================================= */

.rpnl-header-search {
    position: relative;
    flex: 0 0 auto;
}

.rpnl-header__search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #0b2d4d;
    background: #ffffff;
    border: 2px solid #0b2d4d;
    border-radius: 50%;
    font: inherit;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-header__search:hover,
.rpnl-header__search:focus-visible,
.rpnl-header__search[aria-expanded="true"] {
    color: #ffffff;
    background: #0b2d4d;
    border-color: #0b2d4d;
}

.rpnl-header__search:hover {
    transform: translateY(-1px);
}

.rpnl-header__search:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.25);
    outline-offset: 3px;
}

.rpnl-header__search span {
    display: block;
    font-size: 26px;
    line-height: 1;
    transform: translateY(-1px);
}

.rpnl-header-search__panel {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 14px);
    right: 0;
    width: min(390px, calc(100vw - 32px));
    padding: 14px;
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 16px;
    box-shadow:
        0 18px 45px rgba(11, 45, 77, 0.18),
        0 4px 12px rgba(11, 45, 77, 0.08);
}

.rpnl-header-search__panel::before {
    position: absolute;
    top: -7px;
    right: 16px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-top: 1px solid #dce5ef;
    border-left: 1px solid #dce5ef;
    content: "";
    transform: rotate(45deg);
}

.rpnl-header-search__panel[hidden] {
    display: none;
}

.rpnl-header-search__form {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
    gap: 8px;
    margin: 0;
}

.rpnl-header-search__input {
    min-width: 0;
    height: 46px;
    flex: 1 1 auto;
    padding: 0 15px;
    color: #0b2d4d;
    background: #f5f8fc;
    border: 1px solid #cbd8e5;
    border-radius: 10px;
    font: inherit;
    font-size: 15px;
    line-height: 1;
    outline: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-header-search__input::placeholder {
    color: #6d7f90;
}

.rpnl-header-search__input:focus {
    background: #ffffff;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.14);
}

.rpnl-header-search__submit {
    min-width: 86px;
    height: 46px;
    padding: 0 17px;
    color: #ffffff;
    background: #e30613;
    border: 0;
    border-radius: 10px;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-header-search__submit:hover {
    background: #bd0510;
    transform: translateY(-1px);
}

.rpnl-header-search__submit:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.22);
    outline-offset: 2px;
}

@media (max-width: 520px) {
    .rpnl-header-search__panel {
        position: fixed;
        top: 76px;
        right: 12px;
        left: 12px;
        width: auto;
        padding: 12px;
        border-radius: 14px;
    }

    .rpnl-header-search__panel::before {
        display: none;
    }

    .rpnl-header-search__form {
        gap: 7px;
    }

    .rpnl-header-search__input {
        height: 44px;
        padding-inline: 12px;
        font-size: 16px;
    }

    .rpnl-header-search__submit {
        min-width: 78px;
        height: 44px;
        padding-inline: 13px;
    }
}
/* Wyszukiwarka zawsze nad paskiem NA ŻYWO */
.rpnl-header {
    position: relative;
    z-index: 1100;
}

.rpnl-livebar {
    position: relative;
    z-index: 100;
}

.rpnl-header-search__panel {
    z-index: 1200;
}
/* =========================================================
   STRONA 404
   ========================================================= */

.rpnl-404__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 28px;
}

.rpnl-404__card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(11, 45, 77, 0.07);
}

.rpnl-404__card::after {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 240px;
    height: 240px;
    background: rgba(22, 119, 255, 0.06);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.rpnl-404__number {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
    color: #e30613;
    font-size: clamp(68px, 8vw, 110px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -5px;
}

.rpnl-404__eyebrow {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 12px;
    color: #1677ff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-404__title {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 0 0 14px;
    color: #0b2d4d;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.rpnl-404__description {
    position: relative;
    z-index: 1;
    max-width: 670px;
    margin: 0 0 26px;
    color: #53687a;
    font-size: 16px;
    line-height: 1.7;
}

.rpnl-404__search {
    position: relative;
    z-index: 1;
    display: flex;
    max-width: 650px;
    gap: 10px;
    margin: 0 0 22px;
}

.rpnl-404__search-input {
    min-width: 0;
    height: 50px;
    flex: 1 1 auto;
    padding: 0 16px;
    color: #0b2d4d;
    background: #f5f8fc;
    border: 1px solid #cbd8e5;
    border-radius: 11px;
    font: inherit;
    font-size: 16px;
    outline: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-404__search-input::placeholder {
    color: #718394;
}

.rpnl-404__search-input:focus {
    background: #ffffff;
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.14);
}

.rpnl-404__search-button {
    min-width: 105px;
    height: 50px;
    padding: 0 22px;
    color: #ffffff;
    background: #e30613;
    border: 0;
    border-radius: 11px;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-404__search-button:hover {
    background: #bd0510;
    transform: translateY(-1px);
}

.rpnl-404__search-button:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.22);
    outline-offset: 3px;
}

.rpnl-404__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rpnl-404__button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-404__button:hover {
    transform: translateY(-1px);
}

.rpnl-404__button--primary {
    color: #ffffff;
    background: #0b2d4d;
    border-color: #0b2d4d;
}

.rpnl-404__button--primary:hover {
    color: #ffffff;
    background: #061f36;
    border-color: #061f36;
}

.rpnl-404__button--secondary {
    color: #0b2d4d;
    background: #ffffff;
    border-color: #cbd8e5;
}

.rpnl-404__button--secondary:hover {
    color: #0b2d4d;
    background: #f5f8fc;
    border-color: #0b2d4d;
}

/* Najważniejsze działy */

.rpnl-404__links {
    padding: 32px;
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(11, 45, 77, 0.05);
}

.rpnl-404__links-title {
    margin: 0 0 20px;
    color: #0b2d4d;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.2;
}

.rpnl-404__links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.rpnl-404__link {
    position: relative;
    display: flex;
    min-height: 105px;
    flex-direction: column;
    justify-content: center;
    padding: 20px 46px 20px 20px;
    color: inherit;
    background: #f5f8fc;
    border: 1px solid #e0e8f0;
    border-radius: 13px;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-404__link::after {
    position: absolute;
    top: 50%;
    right: 20px;
    color: #e30613;
    content: "→";
    font-size: 22px;
    font-weight: 800;
    transform: translateY(-50%);
}

.rpnl-404__link:hover {
    color: inherit;
    background: #ffffff;
    border-color: #1677ff;
    box-shadow: 0 8px 20px rgba(11, 45, 77, 0.08);
    transform: translateY(-2px);
}

.rpnl-404__link-title {
    margin-bottom: 6px;
    color: #0b2d4d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
}

.rpnl-404__link-description {
    color: #607487;
    font-size: 14px;
    line-height: 1.5;
}

/* =========================================================
   STRONA 404 — MOBILE
   ========================================================= */

@media (max-width: 760px) {
    .rpnl-404__content {
        gap: 20px;
    }

    .rpnl-404__card {
        padding: 28px 22px;
        border-radius: 16px;
    }

    .rpnl-404__card::after {
        top: -110px;
        right: -120px;
    }

    .rpnl-404__number {
        margin-bottom: 12px;
        font-size: 72px;
        letter-spacing: -3px;
    }

    .rpnl-404__title {
        font-size: 28px;
    }

    .rpnl-404__description {
        margin-bottom: 22px;
        font-size: 15px;
    }

    .rpnl-404__search {
        flex-direction: column;
    }

    .rpnl-404__search-input,
    .rpnl-404__search-button {
        width: 100%;
    }

    .rpnl-404__actions {
        flex-direction: column;
    }

    .rpnl-404__button {
        width: 100%;
    }

    .rpnl-404__links {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .rpnl-404__links-grid {
        grid-template-columns: 1fr;
    }
}
/* 404 — jaśniejsze granatowe przyciski */

.rpnl-404__actions .rpnl-404__button,
.rpnl-404__actions .rpnl-404__button:visited {
    color: #ffffff !important;
    background-color: #174f7a;
    border-color: #174f7a;
}

.rpnl-404__actions .rpnl-404__button:hover,
.rpnl-404__actions .rpnl-404__button:focus-visible {
    color: #ffffff !important;
    background-color: #0f3f65;
    border-color: #0f3f65;
}
/* =========================================================
   ARCHIWA — UKŁAD KART ARTYKUŁÓW
   Kategorie, tagi i autorzy
   ========================================================= */

.rpnl-category-posts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* Wszystkie karty */

.rpnl-category-posts .rpnl-category-card {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 16px;
    box-shadow: 0 7px 22px rgba(11, 45, 77, 0.06);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-category-posts .rpnl-category-card:hover {
    border-color: #b9cadd;
    box-shadow: 0 12px 30px rgba(11, 45, 77, 0.11);
    transform: translateY(-3px);
}

.rpnl-category-posts .rpnl-category-card__link {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

/* Zdjęcia w mniejszych kartach */

.rpnl-category-posts .rpnl-category-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e8eef5;
}

.rpnl-category-posts .rpnl-category-card__image {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rpnl-category-posts .rpnl-category-card:hover
.rpnl-category-card__image {
    transform: scale(1.035);
}

.rpnl-category-posts .rpnl-category-card__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ffffff;
    background: #174f7a;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

/* Treść mniejszych kart */

.rpnl-category-posts .rpnl-category-card__content {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 20px;
}

.rpnl-category-posts .rpnl-category-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 11px;
    color: #718394;
    font-size: 12px;
    line-height: 1.4;
}

.rpnl-category-posts .rpnl-category-card__label {
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rpnl-category-posts .rpnl-category-card__title {
    margin: 0 0 10px;
    color: #0b2d4d;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.rpnl-category-posts .rpnl-category-card__excerpt {
    margin: 0 0 17px;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.6;
}

.rpnl-category-posts .rpnl-category-card__more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #1677ff;
    font-size: 13px;
    font-weight: 800;
}

/* =========================================================
   PIERWSZY ARTYKUŁ — WYRÓŻNIONY
   ========================================================= */

.rpnl-category-posts .rpnl-category-card:first-child {
    grid-column: 1 / -1;
}

.rpnl-category-posts
.rpnl-category-card:first-child
.rpnl-category-card__link {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
    min-height: 320px;
}

.rpnl-category-posts
.rpnl-category-card:first-child
.rpnl-category-card__media {
    height: 100%;
    min-height: 320px;
    aspect-ratio: auto;
}

.rpnl-category-posts
.rpnl-category-card:first-child
.rpnl-category-card__content {
    justify-content: center;
    padding: 34px;
}

.rpnl-category-posts
.rpnl-category-card:first-child
.rpnl-category-card__title {
    font-size: clamp(25px, 2.2vw, 32px);
    line-height: 1.18;
}

.rpnl-category-posts
.rpnl-category-card:first-child
.rpnl-category-card__excerpt {
    font-size: 15px;
    line-height: 1.65;
}

/* =========================================================
   ARCHIWA — TABLET I MOBILE
   ========================================================= */

@media (max-width: 900px) {
    .rpnl-category-posts
    .rpnl-category-card:first-child
    .rpnl-category-card__link {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .rpnl-category-posts
    .rpnl-category-card:first-child
    .rpnl-category-card__media {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .rpnl-category-posts
    .rpnl-category-card:first-child
    .rpnl-category-card__content {
        padding: 24px;
    }
}

@media (max-width: 760px) {
    .rpnl-category-posts {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rpnl-category-posts .rpnl-category-card:first-child {
        grid-column: auto;
    }

    .rpnl-category-posts .rpnl-category-card__content,
    .rpnl-category-posts
    .rpnl-category-card:first-child
    .rpnl-category-card__content {
        padding: 19px;
    }

    .rpnl-category-posts .rpnl-category-card__title,
    .rpnl-category-posts
    .rpnl-category-card:first-child
    .rpnl-category-card__title {
        font-size: 21px;
    }

    .rpnl-category-posts .rpnl-category-card__excerpt {
        font-size: 14px;
    }
}
/* =========================================================
   STRONA „O NAS”
   ========================================================= */

.rpnl-about {
    background: #f5f8fc;
}

.rpnl-about__content {
    min-width: 0;
    color: #334e68;
    font-size: 16px;
    line-height: 1.75;
}

.rpnl-about__content p {
    margin: 0 0 20px;
}

.rpnl-about__section,
.rpnl-about__story,
.rpnl-about__radio,
.rpnl-about__standards,
.rpnl-about__cta {
    margin-top: 32px;
}

.rpnl-about__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-about__heading {
    margin: 0 0 20px;
    color: #0b2d4d;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 850;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

/* =========================================================
   WPROWADZENIE
   ========================================================= */

.rpnl-about__intro {
    padding: clamp(28px, 4vw, 48px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(11, 45, 77, 0.06);
}

.rpnl-about__intro .rpnl-about__lead {
    margin-bottom: 22px;
    color: #173f61;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

.rpnl-about__intro p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   TRZY FILARY
   ========================================================= */

.rpnl-about__section {
    padding: clamp(28px, 4vw, 44px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-about__section-header {
    max-width: 720px;
    margin-bottom: 28px;
}

.rpnl-about__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-about__pillar {
    position: relative;
    min-width: 0;
    padding: 25px 22px;
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-about__pillar:hover {
    border-color: #b8cadd;
    box-shadow: 0 10px 24px rgba(11, 45, 77, 0.08);
    transform: translateY(-3px);
}

.rpnl-about__pillar-number {
    display: block;
    margin-bottom: 18px;
    color: #1677ff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.rpnl-about__pillar h3 {
    margin: 0 0 11px;
    color: #0b2d4d;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-about__pillar p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   HISTORIA PORTALU
   ========================================================= */

.rpnl-about__story {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    gap: 30px;
    align-items: center;
    padding: clamp(30px, 4vw, 48px);
    background: #0b2d4d;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.14);
}

.rpnl-about__story .rpnl-about__eyebrow {
    color: #ff5963;
}

.rpnl-about__story .rpnl-about__heading {
    color: #ffffff;
}

.rpnl-about__story-content p {
    color: #d7e3ee;
}

.rpnl-about__story-content p:last-child {
    margin-bottom: 0;
}

.rpnl-about__quote {
    position: relative;
    margin: 0;
    padding: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 15px;
}

.rpnl-about__quote > span {
    display: block;
    height: 42px;
    color: #ff5963;
    font-family: Georgia, serif;
    font-size: 62px;
    line-height: 1;
}

.rpnl-about__quote p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
}

/* =========================================================
   SEKCJA RADIA
   ========================================================= */

.rpnl-about__radio {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 30px;
    align-items: center;
    padding: clamp(30px, 4vw, 46px);
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #ffffff 65%,
            #edf4fb 100%
        );
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-about__radio-content p {
    max-width: 680px;
}

.rpnl-about__radio-mark {
    display: flex;
    width: 180px;
    height: 180px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    color: #ffffff;
    background: #174f7a;
    border: 10px solid #e8f0f7;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(11, 45, 77, 0.18);
}

.rpnl-about__radio-mark span {
    font-size: 31px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.rpnl-about__radio-mark small {
    margin-top: 5px;
    padding: 4px 9px;
    background: #e30613;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

/* =========================================================
   PRZYCISKI
   ========================================================= */

.rpnl-about__button,
.rpnl-about__button:visited {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 12px 20px;
    color: #ffffff !important;
    background: #174f7a;
    border: 1px solid #174f7a;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-about__button:hover,
.rpnl-about__button:focus-visible {
    color: #ffffff !important;
    background: #0f3f65;
    border-color: #0f3f65;
    transform: translateY(-2px);
}

.rpnl-about__button span {
    font-size: 17px;
}

/* =========================================================
   ZASADY REDAKCYJNE
   ========================================================= */

.rpnl-about__standards {
    padding: clamp(28px, 4vw, 44px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-about__standards-list {
    display: grid;
    gap: 12px;
    margin: 0 0 25px;
    padding: 0;
    list-style: none;
}

.rpnl-about__standards-list li {
    position: relative;
    margin: 0;
    padding: 15px 18px 15px 48px;
    color: #334e68;
    background: #f5f8fc;
    border: 1px solid #e0e8f0;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.55;
}

.rpnl-about__standards-list li::before {
    position: absolute;
    top: 15px;
    left: 18px;
    width: 21px;
    height: 21px;
    color: #ffffff;
    background: #1677ff;
    border-radius: 50%;
    content: "✓";
    font-size: 12px;
    font-weight: 900;
    line-height: 21px;
    text-align: center;
}

.rpnl-about__text-link,
.rpnl-about__text-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #174f7a !important;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.rpnl-about__text-link:hover {
    color: #e30613 !important;
}

/* =========================================================
   KOŃCOWE CTA
   ========================================================= */

.rpnl-about__cta {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 45px);
    background: #e8f2fb;
    border: 1px solid #caddec;
    border-radius: 18px;
}

.rpnl-about__cta > div {
    max-width: 650px;
}

.rpnl-about__cta h2 {
    margin: 0 0 14px;
    color: #0b2d4d;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rpnl-about__cta p {
    margin: 0;
    color: #4d6578;
}

.rpnl-about__cta .rpnl-about__button {
    flex: 0 0 auto;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .rpnl-about__pillars {
        grid-template-columns: 1fr;
    }

    .rpnl-about__pillar {
        padding: 22px;
    }

    .rpnl-about__story {
        grid-template-columns: 1fr;
    }

    .rpnl-about__quote {
        max-width: 620px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
    .rpnl-about__section,
    .rpnl-about__story,
    .rpnl-about__radio,
    .rpnl-about__standards,
    .rpnl-about__cta {
        margin-top: 20px;
    }

    .rpnl-about__intro,
    .rpnl-about__section,
    .rpnl-about__story,
    .rpnl-about__radio,
    .rpnl-about__standards,
    .rpnl-about__cta {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .rpnl-about__heading {
        font-size: 26px;
    }

    .rpnl-about__radio {
        grid-template-columns: 1fr;
    }

    .rpnl-about__radio-mark {
        width: 140px;
        height: 140px;
        justify-self: start;
    }

    .rpnl-about__radio-mark span {
        font-size: 25px;
    }

    .rpnl-about__cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .rpnl-about__cta .rpnl-about__button,
    .rpnl-about__radio .rpnl-about__button {
        width: 100%;
    }

    .rpnl-about__quote p {
        font-size: 16px;
    }
}
/* =========================================================
   O NAS — KOREKTA KOLORÓW I ELEMENTÓW
   ========================================================= */

/* Kolory wyłącznie z systemu Radio Polska NL */

.rpnl-about__story .rpnl-about__eyebrow {
    color: #e30613;
}

/* Usunięte numery kafelków */

.rpnl-about__pillar-number {
    display: none;
}

/* Kafelki bez pustego miejsca po numerach */

.rpnl-about__pillar h3 {
    margin-top: 0;
}

/* Cytat bez ozdobnego cudzysłowu */

.rpnl-about__quote > span {
    display: none;
}

/* Główny granat Radio Polska NL */

.rpnl-about__radio-mark {
    background: #0b2d4d;
    border-color: #e8f0f7;
}

/* Czerwony przycisk radia */

.rpnl-about__button--radio,
.rpnl-about__button--radio:visited {
    color: #ffffff !important;
    background: #e30613;
    border-color: #e30613;
    cursor: pointer;
    font-family: inherit;
}

.rpnl-about__button--radio:hover,
.rpnl-about__button--radio:focus-visible {
    color: #ffffff !important;
    background: #bd0711;
    border-color: #bd0711;
}

/* Czerwone oznaczenie transmisji */

.rpnl-about__radio-mark small {
    background: #e30613;
}
/* =========================================================
   STRONA KONTAKTOWA
   ========================================================= */

.rpnl-contact {
    background: #f5f8fc;
}

.rpnl-contact__content {
    min-width: 0;
    color: #334e68;
    font-size: 16px;
    line-height: 1.75;
}

.rpnl-contact__content p {
    margin: 0 0 20px;
}

.rpnl-contact__section,
.rpnl-contact__phone,
.rpnl-contact__guidelines,
.rpnl-contact__notice {
    margin-top: 32px;
}

.rpnl-contact__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-contact__heading {
    margin: 0 0 20px;
    color: #0b2d4d;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 850;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

/* =========================================================
   WPROWADZENIE
   ========================================================= */

.rpnl-contact__intro {
    padding: clamp(28px, 4vw, 48px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(11, 45, 77, 0.06);
}

.rpnl-contact__intro .rpnl-contact__lead {
    margin-bottom: 22px;
    color: #0b2d4d;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

.rpnl-contact__intro p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   ADRESY E-MAIL
   ========================================================= */

.rpnl-contact__section {
    padding: clamp(28px, 4vw, 44px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-contact__section-header {
    max-width: 720px;
    margin-bottom: 28px;
}

.rpnl-contact__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-contact__card,
.rpnl-contact__card:visited {
    display: flex;
    gap: 18px;
    min-width: 0;
    padding: 24px;
    color: #334e68 !important;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    text-decoration: none !important;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-contact__card:hover,
.rpnl-contact__card:focus-visible {
    color: #334e68 !important;
    border-color: #1677ff;
    box-shadow: 0 10px 24px rgba(11, 45, 77, 0.09);
    transform: translateY(-3px);
}

.rpnl-contact__card:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.22);
    outline-offset: 3px;
}

.rpnl-contact__card-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-contact__card-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.rpnl-contact__card-content strong {
    margin-bottom: 8px;
    color: #0b2d4d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-contact__card-content > span:not(
    .rpnl-contact__card-email
) {
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.6;
}

.rpnl-contact__card-email {
    display: block;
    margin-top: 14px;
    overflow-wrap: anywhere;
    color: #1677ff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.rpnl-contact__card:hover .rpnl-contact__card-email {
    color: #e30613;
}

/* =========================================================
   KONTAKT TELEFONICZNY
   ========================================================= */

.rpnl-contact__phone {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 48px);
    background: #0b2d4d;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.14);
}

.rpnl-contact__phone-content {
    min-width: 0;
}

.rpnl-contact__phone .rpnl-contact__eyebrow {
    color: #e30613;
}

.rpnl-contact__phone .rpnl-contact__heading {
    margin-bottom: 12px;
    color: #ffffff;
}

.rpnl-contact__phone-number,
.rpnl-contact__phone-number:visited {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffffff !important;
    font-size: clamp(27px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-decoration: none !important;
}

.rpnl-contact__phone-number:hover,
.rpnl-contact__phone-number:focus-visible {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-decoration-color: #e30613 !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 7px;
}

.rpnl-contact__phone-content > p {
    margin-bottom: 20px;
    color: #d7e3ee;
}

.rpnl-contact__availability {
    display: flex;
    gap: 6px;
    flex-direction: column;
    padding-left: 16px;
    border-left: 3px solid #e30613;
}

.rpnl-contact__availability strong {
    color: #ffffff;
    font-size: 14px;
}

.rpnl-contact__availability span {
    color: #d7e3ee;
    font-size: 14px;
}

.rpnl-contact__phone-actions {
    display: flex;
    width: min(100%, 245px);
    flex: 0 0 245px;
    flex-direction: column;
    gap: 12px;
}

/* =========================================================
   PRZYCISKI
   ========================================================= */

.rpnl-contact__button,
.rpnl-contact__button:visited {
    display: inline-flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-contact__button:hover,
.rpnl-contact__button:focus-visible {
    transform: translateY(-2px);
}

.rpnl-contact__button--primary,
.rpnl-contact__button--primary:visited {
    color: #ffffff !important;
    background: #e30613;
    border-color: #e30613;
}

.rpnl-contact__button--primary:hover,
.rpnl-contact__button--primary:focus-visible {
    color: #ffffff !important;
    background: #bd0711;
    border-color: #bd0711;
}

.rpnl-contact__button--secondary,
.rpnl-contact__button--secondary:visited {
    color: #0b2d4d !important;
    background: #ffffff;
    border-color: #ffffff;
}

.rpnl-contact__button--secondary:hover,
.rpnl-contact__button--secondary:focus-visible {
    color: #0b2d4d !important;
    background: #f5f8fc;
    border-color: #f5f8fc;
}

/* =========================================================
   WSKAZÓWKI PRZED KONTAKTEM
   ========================================================= */

.rpnl-contact__guidelines {
    padding: clamp(28px, 4vw, 44px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-contact__guidelines-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-contact__guidelines-list li {
    position: relative;
    margin: 0;
    padding: 15px 18px 15px 48px;
    color: #334e68;
    background: #f5f8fc;
    border: 1px solid #e0e8f0;
    border-radius: 10px;
    font-weight: 600;
    line-height: 1.55;
}

.rpnl-contact__guidelines-list li::before {
    position: absolute;
    top: 15px;
    left: 18px;
    display: inline-flex;
    width: 21px;
    height: 21px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #1677ff;
    border-radius: 50%;
    content: "✓";
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

/* =========================================================
   WAŻNA INFORMACJA
   ========================================================= */

.rpnl-contact__notice {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 4vw, 40px);
    background: #e8f2fb;
    border: 1px solid #caddec;
    border-left: 5px solid #e30613;
    border-radius: 14px;
}

.rpnl-contact__notice > div {
    max-width: 760px;
}

.rpnl-contact__notice h2 {
    margin: 0 0 14px;
    color: #0b2d4d;
    font-size: clamp(23px, 3vw, 31px);
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rpnl-contact__notice p {
    margin: 0;
    color: #4d6578;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .rpnl-contact__cards {
        grid-template-columns: 1fr;
    }

    .rpnl-contact__phone {
        align-items: flex-start;
        flex-direction: column;
    }

    .rpnl-contact__phone-actions {
        width: 100%;
        flex: none;
        flex-direction: row;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
    .rpnl-contact__section,
    .rpnl-contact__phone,
    .rpnl-contact__guidelines,
    .rpnl-contact__notice {
        margin-top: 20px;
    }

    .rpnl-contact__intro,
    .rpnl-contact__section,
    .rpnl-contact__phone,
    .rpnl-contact__guidelines,
    .rpnl-contact__notice {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .rpnl-contact__heading {
        font-size: 26px;
    }

    .rpnl-contact__card {
        gap: 14px;
        padding: 20px 16px;
    }

    .rpnl-contact__card-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 18px;
    }

    .rpnl-contact__phone {
        gap: 28px;
    }

    .rpnl-contact__phone-number {
        font-size: 29px;
    }

    .rpnl-contact__phone-actions {
        flex-direction: column;
    }

    .rpnl-contact__guidelines-list li {
        padding: 14px 15px 14px 44px;
    }

    .rpnl-contact__guidelines-list li::before {
        top: 14px;
        left: 15px;
    }
}

@media (max-width: 420px) {
    .rpnl-contact__card {
        flex-direction: column;
    }

    .rpnl-contact__phone-number {
        font-size: 25px;
    }
}
/* =========================================================
   STRONA REKLAMA
   ========================================================= */

.rpnl-advertising {
    background: #f5f8fc;
}

.rpnl-advertising__content {
    min-width: 0;
    color: #334e68;
    font-size: 16px;
    line-height: 1.75;
}

.rpnl-advertising__content p {
    margin: 0 0 20px;
}

.rpnl-advertising__section,
.rpnl-advertising__principles,
.rpnl-advertising__cta {
    margin-top: 32px;
}

.rpnl-advertising__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-advertising__heading {
    margin: 0 0 18px;
    color: #0b2d4d;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 850;
    line-height: 1.16;
    letter-spacing: -0.025em;
}

.rpnl-advertising__lead {
    color: #0b2d4d;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

/* =========================================================
   WPROWADZENIE
   ========================================================= */

.rpnl-advertising__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 36px;
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(11, 45, 77, 0.06);
}

.rpnl-advertising__intro-content {
    min-width: 0;
}

.rpnl-advertising__intro-content p:last-child {
    margin-bottom: 0;
}

.rpnl-advertising__intro-highlight {
    display: flex;
    min-height: 190px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 28px 22px;
    color: #ffffff;
    text-align: center;
    background: #0b2d4d;
    border-radius: 14px;
}

.rpnl-advertising__intro-highlight::before {
    display: block;
    width: 46px;
    height: 4px;
    margin-bottom: 22px;
    background: #e30613;
    border-radius: 99px;
    content: "";
}

.rpnl-advertising__intro-highlight strong {
    margin-bottom: 10px;
    font-size: 23px;
    font-weight: 850;
    line-height: 1.2;
}

.rpnl-advertising__intro-highlight span {
    color: #d7e3ee;
    font-size: 14px;
    line-height: 1.55;
}

/* =========================================================
   SEKCJE OGÓLNE
   ========================================================= */

.rpnl-advertising__section {
    padding: clamp(28px, 4vw, 44px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-advertising__section-header {
    max-width: 720px;
    margin-bottom: 28px;
}

.rpnl-advertising__section-header p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   GRUPY REKLAMODAWCÓW
   ========================================================= */

.rpnl-advertising__audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-advertising__audience-card {
    padding: 25px 22px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising__audience-card:hover {
    border-color: #1677ff;
    box-shadow: 0 10px 24px rgba(11, 45, 77, 0.08);
    transform: translateY(-3px);
}

.rpnl-advertising__icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 11px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising__audience-card:first-child
.rpnl-advertising__icon {
    background: #e30613;
}

.rpnl-advertising__audience-card h3 {
    margin: 0 0 12px;
    color: #0b2d4d;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-advertising__audience-card p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   FORMY REKLAMY
   ========================================================= */

.rpnl-advertising__formats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.rpnl-advertising__format {
    padding: 23px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 12px;
}

.rpnl-advertising__format-heading {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-bottom: 12px;
}

.rpnl-advertising__format-heading > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #1677ff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising__format h3 {
    margin: 0;
    color: #0b2d4d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-advertising__format p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   ZASADY
   ========================================================= */

.rpnl-advertising__principles {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    padding: clamp(30px, 4vw, 48px);
    background: #0b2d4d;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.14);
}

.rpnl-advertising__principles .rpnl-advertising__heading {
    color: #ffffff;
}

.rpnl-advertising__principles-content p {
    margin: 0;
    color: #d7e3ee;
}

.rpnl-advertising__principles-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising__principles-list li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 45px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.rpnl-advertising__principles-list li::before {
    position: absolute;
    top: 15px;
    left: 16px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    content: "✓";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* =========================================================
   WERSJE JĘZYKOWE
   ========================================================= */

.rpnl-advertising__language-grid {
    display: grid;
    gap: 14px;
}

.rpnl-advertising__language-card,
.rpnl-advertising__language-card:visited {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 22px;
    color: #334e68 !important;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 13px;
    text-decoration: none !important;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising__language-card:hover,
.rpnl-advertising__language-card:focus-visible {
    color: #334e68 !important;
    border-color: #1677ff;
    box-shadow: 0 9px 22px rgba(11, 45, 77, 0.08);
    transform: translateX(4px);
}

.rpnl-advertising__language-card:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.22);
    outline-offset: 3px;
}

.rpnl-advertising__language-code {
    display: inline-flex;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.rpnl-advertising__language-card:first-child
.rpnl-advertising__language-code {
    background: #e30613;
}

.rpnl-advertising__language-content {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
}

.rpnl-advertising__language-content strong {
    margin-bottom: 5px;
    color: #0b2d4d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-advertising__language-content > span:not(
    .rpnl-advertising__language-link
) {
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.55;
}

.rpnl-advertising__language-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    color: #1677ff;
    font-size: 14px;
    font-weight: 800;
}

.rpnl-advertising__language-card:hover
.rpnl-advertising__language-link {
    color: #e30613;
}

/* =========================================================
   PROCES WSPÓŁPRACY
   ========================================================= */

.rpnl-advertising__process-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.rpnl-advertising__process-list li {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 23px 20px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 12px;
}

.rpnl-advertising__process-list li > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising__process-list strong {
    display: block;
    margin-bottom: 8px;
    color: #0b2d4d;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-advertising__process-list p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   KOŃCOWE CTA
   ========================================================= */

.rpnl-advertising__cta {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 48px);
    background: #e8f2fb;
    border: 1px solid #caddec;
    border-left: 5px solid #e30613;
    border-radius: 16px;
}

.rpnl-advertising__cta > div {
    max-width: 660px;
}

.rpnl-advertising__cta h2 {
    margin: 0 0 15px;
    color: #0b2d4d;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.rpnl-advertising__cta p {
    color: #4d6578;
}

.rpnl-advertising__email,
.rpnl-advertising__email:visited {
    color: #1677ff !important;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none !important;
}

.rpnl-advertising__email:hover,
.rpnl-advertising__email:focus-visible {
    color: #e30613 !important;
    text-decoration: underline !important;
}

.rpnl-advertising__button,
.rpnl-advertising__button:visited {
    display: inline-flex;
    min-width: 190px;
    min-height: 52px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 20px;
    color: #ffffff !important;
    background: #e30613;
    border: 1px solid #e30613;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising__button:hover,
.rpnl-advertising__button:focus-visible {
    color: #ffffff !important;
    background: #bd0711;
    border-color: #bd0711;
    transform: translateY(-2px);
}

.rpnl-advertising__button:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.22);
    outline-offset: 3px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .rpnl-advertising__audience-grid,
    .rpnl-advertising__process-list {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising__principles {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 850px) {
    .rpnl-advertising__intro {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising__intro-highlight {
        min-height: 0;
    }

    .rpnl-advertising__formats {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
    .rpnl-advertising__section,
    .rpnl-advertising__principles,
    .rpnl-advertising__cta {
        margin-top: 20px;
    }

    .rpnl-advertising__intro,
    .rpnl-advertising__section,
    .rpnl-advertising__principles,
    .rpnl-advertising__cta {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .rpnl-advertising__heading {
        font-size: 26px;
    }

    .rpnl-advertising__audience-card,
    .rpnl-advertising__format {
        padding: 20px 18px;
    }

    .rpnl-advertising__language-card {
        gap: 15px;
        align-items: flex-start;
        padding: 19px 16px;
    }

    .rpnl-advertising__language-code {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        border-radius: 10px;
        font-size: 14px;
    }

    .rpnl-advertising__process-list li {
        padding: 20px 17px;
    }

    .rpnl-advertising__button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .rpnl-advertising__language-card {
        flex-direction: column;
    }

    .rpnl-advertising__format-heading {
        align-items: flex-start;
    }
}
/* =========================================================
   REKLAMA – POLSKA OFERTA
   ========================================================= */

.rpnl-advertising-pl {
    background: #f5f8fc;
}

.rpnl-advertising-pl__content {
    min-width: 0;
    color: #334e68;
    font-size: 16px;
    line-height: 1.75;
}

.rpnl-advertising-pl__content p {
    margin: 0 0 20px;
}

.rpnl-advertising-pl__section,
.rpnl-advertising-pl__small-business,
.rpnl-advertising-pl__standards,
.rpnl-advertising-pl__cta {
    margin-top: 32px;
}

.rpnl-advertising-pl__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #e30613;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-advertising-pl__heading {
    margin: 0 0 18px;
    color: #0b2d4d;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.16;
}

.rpnl-advertising-pl__lead {
    color: #0b2d4d;
    font-size: clamp(18px, 2vw, 21px);
    font-weight: 600;
    line-height: 1.65;
}

/* =========================================================
   OTWARCIE
   ========================================================= */

.rpnl-advertising-pl__opening {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
    gap: 30px;
    align-items: stretch;
    padding: clamp(30px, 4vw, 48px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(11, 45, 77, 0.06);
}

.rpnl-advertising-pl__opening-content {
    min-width: 0;
}

.rpnl-advertising-pl__opening-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.rpnl-advertising-pl__opening-box {
    padding: 28px 25px;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 14px;
}

.rpnl-advertising-pl__opening-box::before {
    display: block;
    width: 44px;
    height: 4px;
    margin-bottom: 22px;
    background: #e30613;
    border-radius: 99px;
    content: "";
}

.rpnl-advertising-pl__opening-box strong {
    display: block;
    margin-bottom: 19px;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.3;
}

.rpnl-advertising-pl__opening-box ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-pl__opening-box li {
    position: relative;
    margin: 0;
    padding-left: 23px;
    color: #d7e3ee;
    font-size: 14px;
    line-height: 1.5;
}

.rpnl-advertising-pl__opening-box li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #e30613;
    content: "✓";
    font-weight: 900;
}

/* =========================================================
   PRZYCISKI
   ========================================================= */

.rpnl-advertising-pl__button,
.rpnl-advertising-pl__button:visited {
    display: inline-flex;
    min-height: 50px;
    gap: 16px;
    align-items: center;
    justify-content: center;
    padding: 13px 19px;
    border: 1px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising-pl__button--primary,
.rpnl-advertising-pl__button--primary:visited {
    color: #ffffff !important;
    background: #e30613;
    border-color: #e30613;
}

.rpnl-advertising-pl__button--primary:hover,
.rpnl-advertising-pl__button--primary:focus-visible {
    color: #ffffff !important;
    background: #bd0711;
    border-color: #bd0711;
    transform: translateY(-2px);
}

.rpnl-advertising-pl__button--secondary,
.rpnl-advertising-pl__button--secondary:visited {
    color: #0b2d4d !important;
    background: #ffffff;
    border-color: #b8c8d8;
}

.rpnl-advertising-pl__button--secondary:hover,
.rpnl-advertising-pl__button--secondary:focus-visible {
    color: #1677ff !important;
    border-color: #1677ff;
    transform: translateY(-2px);
}

.rpnl-advertising-pl__button:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.22);
    outline-offset: 3px;
}

/* =========================================================
   SEKCJE OGÓLNE
   ========================================================= */

.rpnl-advertising-pl__section {
    padding: clamp(28px, 4vw, 44px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-advertising-pl__section-header {
    max-width: 720px;
    margin-bottom: 29px;
}

.rpnl-advertising-pl__section-header p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   KORZYŚCI
   ========================================================= */

.rpnl-advertising-pl__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.rpnl-advertising-pl__benefit {
    padding: 24px 22px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 13px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising-pl__benefit:hover {
    border-color: #1677ff;
    box-shadow: 0 9px 22px rgba(11, 45, 77, 0.08);
    transform: translateY(-3px);
}

.rpnl-advertising-pl__benefit > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising-pl__benefit:first-child > span {
    background: #e30613;
}

.rpnl-advertising-pl__benefit h3 {
    margin: 0 0 10px;
    color: #0b2d4d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-advertising-pl__benefit p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   FORMY REKLAMY
   ========================================================= */

.rpnl-advertising-pl__formats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-advertising-pl__format {
    position: relative;
    padding: 25px 23px;
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 13px;
}

.rpnl-advertising-pl__format::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1677ff;
    content: "";
}

.rpnl-advertising-pl__format:nth-child(3n + 1)::before {
    background: #e30613;
}

.rpnl-advertising-pl__format-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #1677ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-advertising-pl__format:nth-child(3n + 1)
.rpnl-advertising-pl__format-label {
    color: #e30613;
}

.rpnl-advertising-pl__format h3 {
    margin: 0 0 12px;
    color: #0b2d4d;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.3;
}

.rpnl-advertising-pl__format p {
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

.rpnl-advertising-pl__format ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 17px 0 0;
    border-top: 1px solid #dce5ef;
    list-style: none;
}

.rpnl-advertising-pl__format li {
    position: relative;
    margin: 0;
    padding-left: 21px;
    color: #334e68;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.rpnl-advertising-pl__format li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #e30613;
    content: "✓";
    font-weight: 900;
}

/* =========================================================
   MAŁE FIRMY
   ========================================================= */

.rpnl-advertising-pl__small-business {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: 38px;
    align-items: center;
    padding: clamp(30px, 4vw, 46px);
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.14);
}

.rpnl-advertising-pl__small-business h2,
.rpnl-advertising-pl__standards h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.rpnl-advertising-pl__small-business > div:first-child p {
    margin: 0;
    color: #d7e3ee;
}

.rpnl-advertising-pl__small-business-note {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
}

.rpnl-advertising-pl__small-business-note strong {
    display: block;
    margin-bottom: 11px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.35;
}

.rpnl-advertising-pl__small-business-note p {
    margin: 0;
    color: #d7e3ee;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   PROCES WSPÓŁPRACY
   ========================================================= */

.rpnl-advertising-pl__process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-pl__process li {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 22px 20px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 12px;
}

.rpnl-advertising-pl__process li > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising-pl__process h3 {
    margin: 0 0 8px;
    color: #0b2d4d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-advertising-pl__process p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   STANDARDY PUBLIKACJI
   ========================================================= */

.rpnl-advertising-pl__standards {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
    padding: clamp(30px, 4vw, 46px);
    background: #132f49;
    border-radius: 18px;
}

.rpnl-advertising-pl__standards-content p {
    margin: 0;
    color: #d7e3ee;
}

.rpnl-advertising-pl__standards ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-pl__standards li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 45px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.rpnl-advertising-pl__standards li::before {
    position: absolute;
    top: 15px;
    left: 16px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    content: "✓";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* =========================================================
   FAQ
   ========================================================= */

.rpnl-advertising-pl__faq details {
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 11px;
}

.rpnl-advertising-pl__faq details + details {
    margin-top: 11px;
}

.rpnl-advertising-pl__faq summary {
    position: relative;
    padding: 18px 54px 18px 20px;
    color: #0b2d4d;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    list-style: none;
}

.rpnl-advertising-pl__faq summary::-webkit-details-marker {
    display: none;
}

.rpnl-advertising-pl__faq summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 50%;
    content: "+";
    font-size: 18px;
    line-height: 1;
    transform: translateY(-50%);
}

.rpnl-advertising-pl__faq details[open] summary {
    color: #e30613;
    background: #eef4f9;
}

.rpnl-advertising-pl__faq details[open] summary::after {
    background: #e30613;
    content: "−";
}

.rpnl-advertising-pl__faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   KOŃCOWE CTA
   ========================================================= */

.rpnl-advertising-pl__cta {
    display: flex;
    gap: 34px;
    align-items: center;
    justify-content: space-between;
    padding: clamp(30px, 4vw, 46px);
    background: #e8f2fb;
    border: 1px solid #caddec;
    border-left: 5px solid #e30613;
    border-radius: 16px;
}

.rpnl-advertising-pl__cta-content {
    max-width: 650px;
}

.rpnl-advertising-pl__cta h2 {
    margin: 0 0 15px;
    color: #0b2d4d;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.rpnl-advertising-pl__cta p {
    color: #4d6578;
}

.rpnl-advertising-pl__email,
.rpnl-advertising-pl__email:visited {
    color: #1677ff !important;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none !important;
}

.rpnl-advertising-pl__email:hover,
.rpnl-advertising-pl__email:focus-visible {
    color: #e30613 !important;
    text-decoration: underline !important;
}

.rpnl-advertising-pl__cta > .rpnl-advertising-pl__button {
    min-width: 225px;
    flex: 0 0 auto;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .rpnl-advertising-pl__opening {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-pl__opening-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 30px;
    }

    .rpnl-advertising-pl__opening-box::before {
        grid-column: 1 / -1;
    }

    .rpnl-advertising-pl__opening-box strong {
        margin: 0;
    }

    .rpnl-advertising-pl__small-business,
    .rpnl-advertising-pl__standards {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 850px) {
    .rpnl-advertising-pl__formats {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-pl__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
    .rpnl-advertising-pl__section,
    .rpnl-advertising-pl__small-business,
    .rpnl-advertising-pl__standards,
    .rpnl-advertising-pl__cta {
        margin-top: 20px;
    }

    .rpnl-advertising-pl__opening,
    .rpnl-advertising-pl__section,
    .rpnl-advertising-pl__small-business,
    .rpnl-advertising-pl__standards,
    .rpnl-advertising-pl__cta {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .rpnl-advertising-pl__heading {
        font-size: 26px;
    }

    .rpnl-advertising-pl__benefits,
    .rpnl-advertising-pl__process {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-pl__opening-box {
        display: block;
    }

    .rpnl-advertising-pl__opening-box strong {
        margin-bottom: 18px;
    }

    .rpnl-advertising-pl__benefit,
    .rpnl-advertising-pl__format {
        padding: 20px 18px;
    }

    .rpnl-advertising-pl__opening-actions {
        flex-direction: column;
    }

    .rpnl-advertising-pl__opening-actions
    .rpnl-advertising-pl__button {
        width: 100%;
    }

    .rpnl-advertising-pl__cta >
    .rpnl-advertising-pl__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .rpnl-advertising-pl__process li {
        gap: 13px;
        padding: 19px 16px;
    }

    .rpnl-advertising-pl__faq summary {
        padding-left: 17px;
        font-size: 15px;
    }

    .rpnl-advertising-pl__faq details p {
        padding-right: 17px;
        padding-left: 17px;
    }
}
/* =========================================================
   REKLAMA – OFERTA HOLENDERSKA
   ========================================================= */

.rpnl-advertising-nl {
    padding-bottom: 70px;
    background: #f5f8fc;
}

.rpnl-advertising-nl__content {
    min-width: 0;
}

.rpnl-advertising-nl__content p {
    margin-top: 0;
    margin-bottom: 16px;
    color: #4d6578;
    font-size: 15px;
    line-height: 1.75;
}

.rpnl-advertising-nl__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #e30613;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-advertising-nl__heading {
    margin: 0 0 17px;
    color: #0b2d4d;
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

/* =========================================================
   OTWARCIE
   ========================================================= */

.rpnl-advertising-nl__opening {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 40px;
    align-items: center;
    padding: clamp(30px, 4vw, 46px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.08);
}

.rpnl-advertising-nl__lead {
    color: #334e68 !important;
    font-size: 17px !important;
    font-weight: 600;
    line-height: 1.7 !important;
}

.rpnl-advertising-nl__opening-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.rpnl-advertising-nl__button,
.rpnl-advertising-nl__button:visited {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising-nl__button:hover {
    transform: translateY(-2px);
}

.rpnl-advertising-nl__button--primary,
.rpnl-advertising-nl__button--primary:visited {
    color: #ffffff !important;
    background: #e30613;
    border-color: #e30613;
}

.rpnl-advertising-nl__button--primary:hover,
.rpnl-advertising-nl__button--primary:focus-visible {
    color: #ffffff !important;
    background: #bd0711;
    border-color: #bd0711;
}

.rpnl-advertising-nl__button--secondary,
.rpnl-advertising-nl__button--secondary:visited {
    color: #0b2d4d !important;
    background: #ffffff;
    border-color: #cad8e5;
}

.rpnl-advertising-nl__button--secondary:hover,
.rpnl-advertising-nl__button--secondary:focus-visible {
    color: #1677ff !important;
    border-color: #1677ff;
}

.rpnl-advertising-nl__opening-box {
    padding: 27px 25px;
    background: #0b2d4d;
    border-radius: 14px;
}

.rpnl-advertising-nl__opening-box::before {
    display: block;
    width: 46px;
    height: 4px;
    margin-bottom: 20px;
    background: #e30613;
    border-radius: 999px;
    content: "";
}

.rpnl-advertising-nl__opening-box strong {
    display: block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.4;
}

.rpnl-advertising-nl__opening-box ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-nl__opening-box li {
    position: relative;
    margin: 0;
    padding-left: 23px;
    color: #d7e3ee;
    font-size: 14px;
    line-height: 1.5;
}

.rpnl-advertising-nl__opening-box li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #e30613;
    content: "✓";
    font-weight: 900;
}

/* =========================================================
   SEKCJE
   ========================================================= */

.rpnl-advertising-nl__section {
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-advertising-nl__section-header {
    max-width: 720px;
    margin-bottom: 29px;
}

.rpnl-advertising-nl__section-header p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   KORZYŚCI
   ========================================================= */

.rpnl-advertising-nl__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.rpnl-advertising-nl__benefit {
    padding: 24px 22px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 13px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising-nl__benefit:hover {
    border-color: #1677ff;
    box-shadow: 0 9px 22px rgba(11, 45, 77, 0.08);
    transform: translateY(-3px);
}

.rpnl-advertising-nl__benefit > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising-nl__benefit:first-child > span {
    background: #e30613;
}

.rpnl-advertising-nl__benefit h3 {
    margin: 0 0 10px;
    color: #0b2d4d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-advertising-nl__benefit p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   FORMY REKLAMY
   ========================================================= */

.rpnl-advertising-nl__formats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-advertising-nl__format {
    position: relative;
    padding: 25px 23px;
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 13px;
}

.rpnl-advertising-nl__format::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1677ff;
    content: "";
}

.rpnl-advertising-nl__format:nth-child(3n + 1)::before {
    background: #e30613;
}

.rpnl-advertising-nl__format-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #1677ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-advertising-nl__format:nth-child(3n + 1)
.rpnl-advertising-nl__format-label {
    color: #e30613;
}

.rpnl-advertising-nl__format h3 {
    margin: 0 0 12px;
    color: #0b2d4d;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.3;
}

.rpnl-advertising-nl__format p {
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

.rpnl-advertising-nl__format ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 17px 0 0;
    border-top: 1px solid #dce5ef;
    list-style: none;
}

.rpnl-advertising-nl__format li {
    position: relative;
    margin: 0;
    padding-left: 21px;
    color: #334e68;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.rpnl-advertising-nl__format li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #e30613;
    content: "✓";
    font-weight: 900;
}

/* =========================================================
   KOMUNIKACJA
   ========================================================= */

.rpnl-advertising-nl__communication {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: 38px;
    align-items: center;
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.14);
}

.rpnl-advertising-nl__communication h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.rpnl-advertising-nl__communication > div:first-child p {
    margin: 0;
    color: #d7e3ee;
}

.rpnl-advertising-nl__communication-note {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
}

.rpnl-advertising-nl__communication-note strong {
    display: block;
    margin-bottom: 11px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.35;
}

.rpnl-advertising-nl__communication-note p {
    margin: 0;
    color: #d7e3ee;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================================
   PROCES WSPÓŁPRACY
   ========================================================= */

.rpnl-advertising-nl__process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-nl__process li {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 22px 20px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 12px;
}

.rpnl-advertising-nl__process li > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising-nl__process h3 {
    margin: 0 0 8px;
    color: #0b2d4d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-advertising-nl__process p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   STANDARDY PUBLIKACJI
   ========================================================= */

.rpnl-advertising-nl__standards {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    background: #132f49;
    border-radius: 18px;
}

.rpnl-advertising-nl__standards h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.rpnl-advertising-nl__standards-content p {
    margin: 0;
    color: #d7e3ee;
}

.rpnl-advertising-nl__standards ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-nl__standards li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 45px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.rpnl-advertising-nl__standards li::before {
    position: absolute;
    top: 15px;
    left: 16px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    content: "✓";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* =========================================================
   FAQ
   ========================================================= */

.rpnl-advertising-nl__faq details {
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 11px;
}

.rpnl-advertising-nl__faq details + details {
    margin-top: 11px;
}

.rpnl-advertising-nl__faq summary {
    position: relative;
    padding: 18px 54px 18px 20px;
    color: #0b2d4d;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    list-style: none;
}

.rpnl-advertising-nl__faq summary::-webkit-details-marker {
    display: none;
}

.rpnl-advertising-nl__faq summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 50%;
    content: "+";
    font-size: 18px;
    line-height: 1;
    transform: translateY(-50%);
}

.rpnl-advertising-nl__faq details[open] summary {
    color: #e30613;
    background: #eef4f9;
}

.rpnl-advertising-nl__faq details[open] summary::after {
    background: #e30613;
    content: "−";
}

.rpnl-advertising-nl__faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.7;
}

/* =========================================================
   KOŃCOWE CTA
   ========================================================= */

.rpnl-advertising-nl__cta {
    display: flex;
    gap: 34px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    background: #e8f2fb;
    border: 1px solid #caddec;
    border-left: 5px solid #e30613;
    border-radius: 16px;
}

.rpnl-advertising-nl__cta-content {
    max-width: 650px;
}

.rpnl-advertising-nl__cta h2 {
    margin: 0 0 15px;
    color: #0b2d4d;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.rpnl-advertising-nl__cta p {
    color: #4d6578;
}

.rpnl-advertising-nl__email,
.rpnl-advertising-nl__email:visited {
    color: #1677ff !important;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none !important;
}

.rpnl-advertising-nl__email:hover,
.rpnl-advertising-nl__email:focus-visible {
    color: #e30613 !important;
    text-decoration: underline !important;
}

.rpnl-advertising-nl__cta > .rpnl-advertising-nl__button {
    min-width: 225px;
    flex: 0 0 auto;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .rpnl-advertising-nl__opening {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-nl__opening-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 30px;
    }

    .rpnl-advertising-nl__opening-box::before {
        grid-column: 1 / -1;
    }

    .rpnl-advertising-nl__opening-box strong {
        margin: 0;
    }

    .rpnl-advertising-nl__communication,
    .rpnl-advertising-nl__standards {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 850px) {
    .rpnl-advertising-nl__formats {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-nl__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 760px) {
    .rpnl-advertising-nl {
        padding-bottom: 40px;
    }

    .rpnl-advertising-nl__section,
    .rpnl-advertising-nl__communication,
    .rpnl-advertising-nl__standards,
    .rpnl-advertising-nl__cta {
        margin-top: 20px;
    }

    .rpnl-advertising-nl__opening,
    .rpnl-advertising-nl__section,
    .rpnl-advertising-nl__communication,
    .rpnl-advertising-nl__standards,
    .rpnl-advertising-nl__cta {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .rpnl-advertising-nl__heading {
        font-size: 26px;
    }

    .rpnl-advertising-nl__benefits,
    .rpnl-advertising-nl__process {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-nl__opening-box {
        display: block;
    }

    .rpnl-advertising-nl__opening-box strong {
        margin-bottom: 18px;
    }

    .rpnl-advertising-nl__benefit,
    .rpnl-advertising-nl__format {
        padding: 20px 18px;
    }

    .rpnl-advertising-nl__opening-actions {
        flex-direction: column;
    }

    .rpnl-advertising-nl__opening-actions
    .rpnl-advertising-nl__button {
        width: 100%;
    }

    .rpnl-advertising-nl__cta >
    .rpnl-advertising-nl__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .rpnl-advertising-nl__process li {
        gap: 13px;
        padding: 19px 16px;
    }

    .rpnl-advertising-nl__faq summary {
        padding-left: 17px;
        font-size: 15px;
    }

    .rpnl-advertising-nl__faq details p {
        padding-right: 17px;
        padding-left: 17px;
    }
}
/* =========================================================
   REKLAMA – OFERTA ANGIELSKA
   ========================================================= */

.rpnl-advertising-en {
    padding-bottom: 70px;
    background: #f5f8fc;
}

.rpnl-advertising-en__content {
    min-width: 0;
}

.rpnl-advertising-en__content p {
    margin-top: 0;
    margin-bottom: 16px;
    color: #4d6578;
    font-size: 15px;
    line-height: 1.75;
}

.rpnl-advertising-en__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #e30613;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-advertising-en__heading {
    margin: 0 0 17px;
    color: #0b2d4d;
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

/* OTWARCIE */

.rpnl-advertising-en__opening {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 40px;
    align-items: center;
    padding: clamp(30px, 4vw, 46px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.08);
}

.rpnl-advertising-en__lead {
    color: #334e68 !important;
    font-size: 17px !important;
    font-weight: 600;
    line-height: 1.7 !important;
}

.rpnl-advertising-en__opening-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.rpnl-advertising-en__button,
.rpnl-advertising-en__button:visited {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border: 2px solid transparent;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none !important;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising-en__button:hover {
    transform: translateY(-2px);
}

.rpnl-advertising-en__button--primary,
.rpnl-advertising-en__button--primary:visited {
    color: #ffffff !important;
    background: #e30613;
    border-color: #e30613;
}

.rpnl-advertising-en__button--primary:hover,
.rpnl-advertising-en__button--primary:focus-visible {
    color: #ffffff !important;
    background: #bd0711;
    border-color: #bd0711;
}

.rpnl-advertising-en__button--secondary,
.rpnl-advertising-en__button--secondary:visited {
    color: #0b2d4d !important;
    background: #ffffff;
    border-color: #cad8e5;
}

.rpnl-advertising-en__button--secondary:hover,
.rpnl-advertising-en__button--secondary:focus-visible {
    color: #1677ff !important;
    border-color: #1677ff;
}

.rpnl-advertising-en__opening-box {
    padding: 27px 25px;
    background: #0b2d4d;
    border-radius: 14px;
}

.rpnl-advertising-en__opening-box::before {
    display: block;
    width: 46px;
    height: 4px;
    margin-bottom: 20px;
    background: #e30613;
    border-radius: 999px;
    content: "";
}

.rpnl-advertising-en__opening-box strong {
    display: block;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.4;
}

.rpnl-advertising-en__opening-box ul {
    display: grid;
    gap: 11px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-en__opening-box li {
    position: relative;
    margin: 0;
    padding-left: 23px;
    color: #d7e3ee;
    font-size: 14px;
    line-height: 1.5;
}

.rpnl-advertising-en__opening-box li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #e30613;
    content: "✓";
    font-weight: 900;
}

/* SEKCJE */

.rpnl-advertising-en__section {
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    background: #ffffff;
    border: 1px solid #dce5ef;
    border-radius: 18px;
}

.rpnl-advertising-en__section-header {
    max-width: 720px;
    margin-bottom: 29px;
}

.rpnl-advertising-en__section-header p:last-child {
    margin-bottom: 0;
}

/* KORZYŚCI */

.rpnl-advertising-en__benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.rpnl-advertising-en__benefit {
    padding: 24px 22px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 13px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.rpnl-advertising-en__benefit:hover {
    border-color: #1677ff;
    box-shadow: 0 9px 22px rgba(11, 45, 77, 0.08);
    transform: translateY(-3px);
}

.rpnl-advertising-en__benefit > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising-en__benefit:first-child > span {
    background: #e30613;
}

.rpnl-advertising-en__benefit h3 {
    margin: 0 0 10px;
    color: #0b2d4d;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.rpnl-advertising-en__benefit p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

/* FORMY REKLAMY */

.rpnl-advertising-en__formats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rpnl-advertising-en__format {
    position: relative;
    padding: 25px 23px;
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 13px;
}

.rpnl-advertising-en__format::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #1677ff;
    content: "";
}

.rpnl-advertising-en__format:nth-child(3n + 1)::before {
    background: #e30613;
}

.rpnl-advertising-en__format-label {
    display: inline-block;
    margin-bottom: 12px;
    color: #1677ff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.rpnl-advertising-en__format:nth-child(3n + 1)
.rpnl-advertising-en__format-label {
    color: #e30613;
}

.rpnl-advertising-en__format h3 {
    margin: 0 0 12px;
    color: #0b2d4d;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.3;
}

.rpnl-advertising-en__format p {
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.65;
}

.rpnl-advertising-en__format ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding: 17px 0 0;
    border-top: 1px solid #dce5ef;
    list-style: none;
}

.rpnl-advertising-en__format li {
    position: relative;
    margin: 0;
    padding-left: 21px;
    color: #334e68;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.rpnl-advertising-en__format li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: #e30613;
    content: "✓";
    font-weight: 900;
}

/* KOMUNIKACJA */

.rpnl-advertising-en__communication {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
    gap: 38px;
    align-items: center;
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(11, 45, 77, 0.14);
}

.rpnl-advertising-en__communication h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.rpnl-advertising-en__communication > div:first-child p {
    margin: 0;
    color: #d7e3ee;
}

.rpnl-advertising-en__communication-note {
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
}

.rpnl-advertising-en__communication-note strong {
    display: block;
    margin-bottom: 11px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 850;
    line-height: 1.35;
}

.rpnl-advertising-en__communication-note p {
    margin: 0;
    color: #d7e3ee;
    font-size: 14px;
    line-height: 1.65;
}

/* PROCES WSPÓŁPRACY */

.rpnl-advertising-en__process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-en__process li {
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 22px 20px;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 12px;
}

.rpnl-advertising-en__process li > span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.rpnl-advertising-en__process h3 {
    margin: 0 0 8px;
    color: #0b2d4d;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-advertising-en__process p {
    margin: 0;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.6;
}

/* STANDARDY PUBLIKACJI */

.rpnl-advertising-en__standards {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 40px;
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    background: #132f49;
    border-radius: 18px;
}

.rpnl-advertising-en__standards h2 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.18;
}

.rpnl-advertising-en__standards-content p {
    margin: 0;
    color: #d7e3ee;
}

.rpnl-advertising-en__standards ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-advertising-en__standards li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 45px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

.rpnl-advertising-en__standards li::before {
    position: absolute;
    top: 15px;
    left: 16px;
    display: inline-flex;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #e30613;
    border-radius: 50%;
    content: "✓";
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
}

/* FAQ */

.rpnl-advertising-en__faq details {
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #dce5ef;
    border-radius: 11px;
}

.rpnl-advertising-en__faq details + details {
    margin-top: 11px;
}

.rpnl-advertising-en__faq summary {
    position: relative;
    padding: 18px 54px 18px 20px;
    color: #0b2d4d;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.45;
    list-style: none;
}

.rpnl-advertising-en__faq summary::-webkit-details-marker {
    display: none;
}

.rpnl-advertising-en__faq summary::after {
    position: absolute;
    top: 50%;
    right: 20px;
    display: inline-flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0b2d4d;
    border-radius: 50%;
    content: "+";
    font-size: 18px;
    line-height: 1;
    transform: translateY(-50%);
}

.rpnl-advertising-en__faq details[open] summary {
    color: #e30613;
    background: #eef4f9;
}

.rpnl-advertising-en__faq details[open] summary::after {
    background: #e30613;
    content: "−";
}

.rpnl-advertising-en__faq details p {
    margin: 0;
    padding: 0 20px 20px;
    color: #5b6f81;
    font-size: 14px;
    line-height: 1.7;
}

/* KOŃCOWE CTA */

.rpnl-advertising-en__cta {
    display: flex;
    gap: 34px;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding: clamp(30px, 4vw, 46px);
    background: #e8f2fb;
    border: 1px solid #caddec;
    border-left: 5px solid #e30613;
    border-radius: 16px;
}

.rpnl-advertising-en__cta-content {
    max-width: 650px;
}

.rpnl-advertising-en__cta h2 {
    margin: 0 0 15px;
    color: #0b2d4d;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.rpnl-advertising-en__cta p {
    color: #4d6578;
}

.rpnl-advertising-en__email,
.rpnl-advertising-en__email:visited {
    color: #1677ff !important;
    font-weight: 800;
    overflow-wrap: anywhere;
    text-decoration: none !important;
}

.rpnl-advertising-en__email:hover,
.rpnl-advertising-en__email:focus-visible {
    color: #e30613 !important;
    text-decoration: underline !important;
}

.rpnl-advertising-en__cta > .rpnl-advertising-en__button {
    min-width: 225px;
    flex: 0 0 auto;
}

/* TABLET */

@media (max-width: 1050px) {
    .rpnl-advertising-en__opening {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-en__opening-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 30px;
    }

    .rpnl-advertising-en__opening-box::before {
        grid-column: 1 / -1;
    }

    .rpnl-advertising-en__opening-box strong {
        margin: 0;
    }

    .rpnl-advertising-en__communication,
    .rpnl-advertising-en__standards {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 850px) {
    .rpnl-advertising-en__formats {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-en__cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* MOBILE */

@media (max-width: 760px) {
    .rpnl-advertising-en {
        padding-bottom: 40px;
    }

    .rpnl-advertising-en__section,
    .rpnl-advertising-en__communication,
    .rpnl-advertising-en__standards,
    .rpnl-advertising-en__cta {
        margin-top: 20px;
    }

    .rpnl-advertising-en__opening,
    .rpnl-advertising-en__section,
    .rpnl-advertising-en__communication,
    .rpnl-advertising-en__standards,
    .rpnl-advertising-en__cta {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .rpnl-advertising-en__heading {
        font-size: 26px;
    }

    .rpnl-advertising-en__benefits,
    .rpnl-advertising-en__process {
        grid-template-columns: 1fr;
    }

    .rpnl-advertising-en__opening-box {
        display: block;
    }

    .rpnl-advertising-en__opening-box strong {
        margin-bottom: 18px;
    }

    .rpnl-advertising-en__benefit,
    .rpnl-advertising-en__format {
        padding: 20px 18px;
    }

    .rpnl-advertising-en__opening-actions {
        flex-direction: column;
    }

    .rpnl-advertising-en__opening-actions
    .rpnl-advertising-en__button {
        width: 100%;
    }

    .rpnl-advertising-en__cta >
    .rpnl-advertising-en__button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .rpnl-advertising-en__process li {
        gap: 13px;
        padding: 19px 16px;
    }

    .rpnl-advertising-en__faq summary {
        padding-left: 17px;
        font-size: 15px;
    }

    .rpnl-advertising-en__faq details p {
        padding-right: 17px;
        padding-left: 17px;
    }
}
/* =========================================================
   RADIOPOLSKANL — POLITYKA PRYWATNOŚCI
   ========================================================= */

.rpnl-privacy {
    --privacy-navy: #0b2d4d;
    --privacy-navy-dark: #071f36;
    --privacy-blue: #1677ff;
    --privacy-red: #e30613;
    --privacy-bg: #f5f8fc;
    --privacy-surface: #ffffff;
    --privacy-border: #dfe7ef;
    --privacy-text: #243447;
    --privacy-muted: #617184;
    --privacy-soft-blue: #edf5ff;
    --privacy-soft-red: #fff1f2;
    --privacy-radius: 16px;
    --privacy-shadow: 0 12px 35px rgba(11, 45, 77, 0.08);

    background: var(--privacy-bg);
    color: var(--privacy-text);
}

.rpnl-privacy *,
.rpnl-privacy *::before,
.rpnl-privacy *::after {
    box-sizing: border-box;
}

.rpnl-privacy a {
    color: var(--privacy-blue);
    text-decoration: none;
}

.rpnl-privacy a:hover,
.rpnl-privacy a:focus-visible {
    color: var(--privacy-red);
}

.rpnl-privacy a:focus-visible,
.rpnl-privacy button:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.3);
    outline-offset: 3px;
}

/* =========================================================
   HERO
   ========================================================= */

.rpnl-privacy__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.75fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 42px;
    padding: 52px;
    overflow: hidden;
    position: relative;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 92% 15%,
            rgba(22, 119, 255, 0.35),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            var(--privacy-navy-dark) 0%,
            var(--privacy-navy) 70%,
            #124f80 100%
        );
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(7, 31, 54, 0.18);
}

.rpnl-privacy__hero::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -70px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.rpnl-privacy__hero::after {
    content: "";
    position: absolute;
    right: 120px;
    bottom: -130px;
    width: 250px;
    height: 250px;
    background: rgba(227, 6, 19, 0.11);
    border-radius: 50%;
}

.rpnl-privacy__hero-content,
.rpnl-privacy__hero-box {
    position: relative;
    z-index: 1;
}

.rpnl-privacy__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: #9fc8ff;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.rpnl-privacy__eyebrow::before {
    content: "";
    display: block;
    width: 28px;
    height: 3px;
    flex: 0 0 auto;
    background: var(--privacy-red);
    border-radius: 999px;
}

.rpnl-privacy__hero h1 {
    margin: 0 0 17px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.rpnl-privacy__lead {
    max-width: 710px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.75;
}

.rpnl-privacy__updated {
    margin: 23px 0 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.87rem;
}

.rpnl-privacy__updated strong {
    color: #ffffff;
    font-weight: 700;
}

.rpnl-privacy__hero-box {
    padding: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rpnl-privacy__hero-box > strong {
    display: block;
    margin-bottom: 17px;
    color: #ffffff;
    font-size: 1rem;
}

.rpnl-privacy__hero-box ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-privacy__hero-box li {
    position: relative;
    margin: 0;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.91rem;
    line-height: 1.55;
}

.rpnl-privacy__hero-box li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    color: #ffffff;
    background: var(--privacy-red);
    border-radius: 50%;
    font-size: 0.67rem;
    font-weight: 900;
}

/* =========================================================
   GŁÓWNA KOLUMNA
   ========================================================= */

.rpnl-privacy__content {
    min-width: 0;
    padding: 42px 48px 52px;
    background: var(--privacy-surface);
    border: 1px solid var(--privacy-border);
    border-radius: var(--privacy-radius);
    box-shadow: var(--privacy-shadow);
}

.rpnl-privacy__content > *:first-child {
    margin-top: 0;
}

.rpnl-privacy__content p,
.rpnl-privacy__content li,
.rpnl-privacy__content td,
.rpnl-privacy__content th {
    font-size: 0.98rem;
    line-height: 1.75;
}

.rpnl-privacy__content p {
    margin: 0 0 18px;
}

.rpnl-privacy__content p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   SPIS TREŚCI
   ========================================================= */

.rpnl-privacy__navigation {
    margin-bottom: 48px;
    padding: 28px 30px;
    background: var(--privacy-soft-blue);
    border: 1px solid #d5e7fb;
    border-left: 4px solid var(--privacy-blue);
    border-radius: 12px;
}

.rpnl-privacy__navigation > strong {
    display: block;
    margin-bottom: 19px;
    color: var(--privacy-navy);
    font-size: 1rem;
}

.rpnl-privacy__navigation ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 30px;
    margin: 0;
    padding: 0;
    counter-reset: privacy-navigation;
    list-style: none;
}

.rpnl-privacy__navigation li {
    min-width: 0;
    margin: 0;
    counter-increment: privacy-navigation;
}

.rpnl-privacy__navigation a {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 5px 0;
    color: var(--privacy-text);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-privacy__navigation a::before {
    content: counter(privacy-navigation, decimal-leading-zero);
    flex: 0 0 auto;
    color: var(--privacy-blue);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.rpnl-privacy__navigation a:hover {
    color: var(--privacy-red);
    transform: translateX(3px);
}

/* =========================================================
   SEKCJE
   ========================================================= */

.rpnl-privacy__section {
    position: relative;
    scroll-margin-top: 120px;
    padding: 46px 0;
    border-top: 1px solid var(--privacy-border);
}

.rpnl-privacy__navigation + .rpnl-privacy__section {
    padding-top: 0;
    border-top: 0;
}

.rpnl-privacy__section-number {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--privacy-red);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.1em;
}

.rpnl-privacy__section h2,
.rpnl-privacy__contact h2 {
    margin: 0 0 22px;
    color: var(--privacy-navy);
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.025em;
}

.rpnl-privacy__section h3 {
    margin: 26px 0 10px;
    color: var(--privacy-navy);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-privacy__subheading {
    margin-top: 34px !important;
}

/* =========================================================
   KARTA ADMINISTRATORA
   ========================================================= */

.rpnl-privacy__administrator-card {
    display: grid;
    gap: 7px;
    margin: 27px 0;
    padding: 26px 28px;
    position: relative;
    overflow: hidden;
    background: var(--privacy-navy);
    border-radius: 14px;
    box-shadow: 0 11px 28px rgba(11, 45, 77, 0.14);
}

.rpnl-privacy__administrator-card::after {
    content: "RPNL";
    position: absolute;
    right: 20px;
    bottom: -13px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 4.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.rpnl-privacy__administrator-card > * {
    position: relative;
    z-index: 1;
}

.rpnl-privacy__administrator-card > strong {
    color: #ffffff;
    font-size: 1.3rem;
}

.rpnl-privacy__administrator-card span {
    color: rgba(255, 255, 255, 0.73);
    font-size: 0.91rem;
}

.rpnl-privacy__administrator-card span strong {
    color: #ffffff;
}

.rpnl-privacy__administrator-card a {
    width: fit-content;
    margin-top: 5px;
    color: #9fc8ff;
    font-size: 0.93rem;
    font-weight: 700;
}

.rpnl-privacy__administrator-card a:hover {
    color: #ffffff;
}

/* =========================================================
   KARTY ZAKRESU DANYCH
   ========================================================= */

.rpnl-privacy__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 27px 0;
}

.rpnl-privacy__card {
    padding: 23px;
    background: #f9fbfd;
    border: 1px solid var(--privacy-border);
    border-radius: 12px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-privacy__card:hover {
    transform: translateY(-2px);
    border-color: #bdd7f4;
    box-shadow: 0 9px 24px rgba(11, 45, 77, 0.07);
}

.rpnl-privacy__card h3 {
    margin: 0 0 9px;
    font-size: 1rem;
}

.rpnl-privacy__card p {
    margin: 0;
    color: var(--privacy-muted);
    font-size: 0.89rem;
    line-height: 1.67;
}

/* =========================================================
   NOTATKI
   ========================================================= */

.rpnl-privacy__note {
    margin: 27px 0;
    padding: 23px 25px;
    background: var(--privacy-soft-red);
    border: 1px solid #ffd4d8;
    border-left: 4px solid var(--privacy-red);
    border-radius: 10px;
}

.rpnl-privacy__note > strong {
    display: block;
    margin-bottom: 7px;
    color: var(--privacy-navy);
    font-size: 0.95rem;
}

.rpnl-privacy__note p {
    margin: 0;
    color: #4d5b6a;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* =========================================================
   TABELA
   ========================================================= */

.rpnl-privacy__table-wrapper {
    width: 100%;
    margin-top: 27px;
    overflow-x: auto;
    border: 1px solid var(--privacy-border);
    border-radius: 12px;
    -webkit-overflow-scrolling: touch;
}

.rpnl-privacy__table {
    width: 100%;
    min-width: 650px;
    margin: 0;
    border: 0;
    border-collapse: collapse;
    background: #ffffff;
}

.rpnl-privacy__table th,
.rpnl-privacy__table td {
    width: 50%;
    padding: 17px 20px;
    text-align: left;
    vertical-align: top;
    border: 0;
    border-bottom: 1px solid var(--privacy-border);
}

.rpnl-privacy__table th {
    color: #ffffff;
    background: var(--privacy-navy);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rpnl-privacy__table td {
    color: var(--privacy-text);
    font-size: 0.88rem;
    line-height: 1.6;
}

.rpnl-privacy__table tbody tr:nth-child(even) {
    background: #f8fafc;
}

.rpnl-privacy__table tbody tr:last-child td {
    border-bottom: 0;
}

/* =========================================================
   USŁUGI ZEWNĘTRZNE
   ========================================================= */

.rpnl-privacy__service {
    margin-top: 20px;
    padding: 27px 29px;
    background: #f9fbfd;
    border: 1px solid var(--privacy-border);
    border-radius: 13px;
}

.rpnl-privacy__service-header {
    display: flex;
    gap: 13px;
    align-items: center;
    margin-bottom: 16px;
}

.rpnl-privacy__service-header > span {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    color: #ffffff;
    background: var(--privacy-blue);
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 900;
}

.rpnl-privacy__service-header h3 {
    margin: 0;
    font-size: 1.13rem;
}

.rpnl-privacy__service p {
    color: var(--privacy-muted);
    font-size: 0.91rem;
    line-height: 1.68;
}

.rpnl-privacy__service > a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-top: 2px;
    font-size: 0.87rem;
    font-weight: 800;
}

.rpnl-privacy__service > a span,
.rpnl-privacy__external-link span {
    transition: transform 0.2s ease;
}

.rpnl-privacy__service > a:hover span,
.rpnl-privacy__external-link:hover span {
    transform: translateX(4px);
}

/* =========================================================
   TYPY COOKIES
   ========================================================= */

.rpnl-privacy__cookie-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 27px 0;
}

.rpnl-privacy__cookie {
    position: relative;
    padding: 23px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--privacy-border);
    border-radius: 12px;
}

.rpnl-privacy__cookie::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: var(--privacy-blue);
}

.rpnl-privacy__cookie:nth-child(3)::before {
    background: var(--privacy-red);
}

.rpnl-privacy__cookie > span {
    display: inline-block;
    margin-bottom: 9px;
    color: var(--privacy-blue);
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-privacy__cookie:nth-child(3) > span {
    color: var(--privacy-red);
}

.rpnl-privacy__cookie h3 {
    margin: 0 0 9px;
    font-size: 1rem;
}

.rpnl-privacy__cookie p {
    margin: 0;
    color: var(--privacy-muted);
    font-size: 0.87rem;
    line-height: 1.63;
}

/* =========================================================
   PRZYCISKI I LINKI
   ========================================================= */

.rpnl-privacy__external-link,
.rpnl-privacy__cookie-settings {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    margin-top: 5px;
    padding: 11px 19px;
    color: #ffffff !important;
    background: var(--privacy-navy);
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-privacy__external-link:hover,
.rpnl-privacy__cookie-settings:hover {
    color: #ffffff !important;
    background: var(--privacy-red);
    transform: translateY(-1px);
}

.rpnl-privacy__technical-note {
    margin-top: 11px !important;
    color: var(--privacy-muted);
    font-size: 0.78rem !important;
    font-style: italic;
}

/* =========================================================
   LISTY
   ========================================================= */

.rpnl-privacy__checklist,
.rpnl-privacy__rights {
    display: grid;
    gap: 11px;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.rpnl-privacy__checklist li,
.rpnl-privacy__rights li {
    position: relative;
    margin: 0;
    padding: 15px 18px 15px 48px;
    background: #f9fbfd;
    border: 1px solid var(--privacy-border);
    border-radius: 10px;
    font-size: 0.91rem;
    line-height: 1.58;
}

.rpnl-privacy__checklist li::before,
.rpnl-privacy__rights li::before {
    content: "✓";
    position: absolute;
    top: 16px;
    left: 18px;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: #ffffff;
    background: var(--privacy-blue);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 900;
}

.rpnl-privacy__rights li::before {
    content: "";
    top: 19px;
    width: 9px;
    height: 9px;
    background: var(--privacy-red);
}

.rpnl-privacy__rights strong {
    color: var(--privacy-navy);
}

/* =========================================================
   OKRESY PRZECHOWYWANIA
   ========================================================= */

.rpnl-privacy__retention {
    display: grid;
    gap: 0;
    margin-top: 25px;
    border: 1px solid var(--privacy-border);
    border-radius: 12px;
}

.rpnl-privacy__retention > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
    gap: 25px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--privacy-border);
}

.rpnl-privacy__retention > div:last-child {
    border-bottom: 0;
}

.rpnl-privacy__retention > div:nth-child(even) {
    background: #f8fafc;
}

.rpnl-privacy__retention strong {
    color: var(--privacy-navy);
    font-size: 0.91rem;
}

.rpnl-privacy__retention p {
    margin: 0;
    color: var(--privacy-muted);
    font-size: 0.87rem;
    line-height: 1.6;
}

/* =========================================================
   SEKCJA KONTAKTOWA
   ========================================================= */

.rpnl-privacy__contact {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding: 38px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            var(--privacy-navy-dark),
            var(--privacy-navy)
        );
    border-radius: 16px;
}

.rpnl-privacy__contact > div {
    min-width: 0;
}

.rpnl-privacy__contact .rpnl-privacy__eyebrow {
    margin-bottom: 10px;
}

.rpnl-privacy__contact h2 {
    margin-bottom: 12px;
    color: #ffffff;
}

.rpnl-privacy__contact p {
    max-width: 570px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.91rem;
    line-height: 1.65;
}

.rpnl-privacy__email {
    color: #9fc8ff !important;
    font-size: 0.91rem;
    font-weight: 800;
}

.rpnl-privacy__email:hover {
    color: #ffffff !important;
}

.rpnl-privacy__contact-button {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    flex: 0 0 auto;
    padding: 13px 20px;
    color: #ffffff !important;
    background: var(--privacy-red);
    border-radius: 8px;
    font-size: 0.87rem;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-privacy__contact-button:hover {
    color: #ffffff !important;
    background: #bd0510;
    transform: translateY(-2px);
}

.rpnl-privacy__contact-button span {
    transition: transform 0.2s ease;
}

.rpnl-privacy__contact-button:hover span {
    transform: translateX(4px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
    .rpnl-privacy__hero {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
        gap: 30px;
        padding: 42px;
    }

    .rpnl-privacy__content {
        padding: 38px;
    }
}

@media (max-width: 900px) {
    .rpnl-privacy__hero {
        grid-template-columns: 1fr;
    }

    .rpnl-privacy__hero-box {
        max-width: 620px;
    }

    .rpnl-privacy__content {
        padding: 34px;
    }

    .rpnl-privacy__navigation ol {
        grid-template-columns: 1fr;
    }

    .rpnl-privacy__contact {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .rpnl-privacy__hero {
        gap: 27px;
        margin-bottom: 25px;
        padding: 32px 24px;
        border-radius: 15px;
    }

    .rpnl-privacy__hero h1 {
        font-size: 2.25rem;
    }

    .rpnl-privacy__lead {
        font-size: 0.97rem;
        line-height: 1.65;
    }

    .rpnl-privacy__hero-box {
        padding: 22px;
    }

    .rpnl-privacy__content {
        padding: 27px 22px 32px;
        border-radius: 13px;
    }

    .rpnl-privacy__navigation {
        margin-bottom: 37px;
        padding: 23px 21px;
    }

    .rpnl-privacy__section {
        padding: 38px 0;
        scroll-margin-top: 95px;
    }

    .rpnl-privacy__section h2,
    .rpnl-privacy__contact h2 {
        font-size: 1.55rem;
    }

    .rpnl-privacy__cards,
    .rpnl-privacy__cookie-types {
        grid-template-columns: 1fr;
    }

    .rpnl-privacy__retention > div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .rpnl-privacy__administrator-card {
        padding: 23px;
    }

    .rpnl-privacy__administrator-card::after {
        font-size: 3.8rem;
    }

    .rpnl-privacy__service {
        padding: 23px;
    }

    .rpnl-privacy__contact {
        padding: 28px 24px;
        border-radius: 13px;
    }

    .rpnl-privacy__contact-button {
        width: 100%;
    }
}

@media (max-width: 460px) {
    .rpnl-privacy__hero {
        padding: 27px 20px;
    }

    .rpnl-privacy__hero h1 {
        font-size: 1.95rem;
    }

    .rpnl-privacy__content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .rpnl-privacy__navigation {
        padding: 21px 18px;
    }

    .rpnl-privacy__table th,
    .rpnl-privacy__table td {
        padding: 15px;
    }

    .rpnl-privacy__checklist li,
    .rpnl-privacy__rights li {
        padding-right: 15px;
    }
}

/* =========================================================
   REDUKCJA ANIMACJI
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .rpnl-privacy *,
    .rpnl-privacy *::before,
    .rpnl-privacy *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
/* =========================================================
   POLITYKA PRYWATNOŚCI I REGULAMIN — KOREKTA DESKTOPU
   ========================================================= */

@media (min-width: 851px) {
    .rpnl-privacy .rpnl-category-shell {
        padding-top: 32px;
    }
}
/* =========================================================
   KATALOG POLSKICH FIRM
   archive-firma.php
   ========================================================= */

.rpnl-company-archive {
    padding-top: 32px;
    background: #f5f8fc;
    color: #17283a;
}

.rpnl-company-archive *,
.rpnl-company-archive *::before,
.rpnl-company-archive *::after {
    box-sizing: border-box;
}

/* Szerokość i boczne marginesy katalogu */

.rpnl-company-archive .rpnl-container {
    width: 100%;
    max-width: 1480px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* Hero katalogu */

.rpnl-company-hero {
    width: calc(100% - 48px);
    max-width: 1980px;
    margin-inline: auto;
    padding: 54px 0 48px;
    overflow: hidden;
    border-radius: 16px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(22, 119, 255, 0.28),
            transparent 34%
        ),
        linear-gradient(135deg, #071f35 0%, #0b2d4d 58%, #104a7a 100%);
}

.rpnl-company-hero .rpnl-container {
    position: relative;
}

.rpnl-company-eyebrow {
    margin: 0 0 10px;
    color: #8fc4ff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.rpnl-company-hero h1 {
    max-width: 760px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rpnl-company-intro {
    max-width: 680px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.rpnl-company-add-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 28px;
    padding: 12px 22px;
    border: 1px solid #e30613;
    border-radius: 8px;
    color: #ffffff;
    background: #e30613;
    font-size: 0.94rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(227, 6, 19, 0.24);
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-company-add-button:hover {
    color: #ffffff;
    background: #c9000c;
    border-color: #c9000c;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.3);
}

/* Główna część katalogu */

.rpnl-company-directory {
    padding: 38px 0 64px;
}

/* Wyszukiwarka i filtry */

.rpnl-company-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
    gap: 16px;
    align-items: end;
    padding: 22px;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(11, 45, 77, 0.07);
}

.rpnl-company-filter-field {
    min-width: 0;
}

.rpnl-company-filter-field label {
    display: block;
    margin: 0 0 7px;
    color: #24384d;
    font-size: 0.78rem;
    font-weight: 750;
    line-height: 1.3;
}

.rpnl-company-filter-field input,
.rpnl-company-filter-field select {
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 0 13px;
    border: 1px solid #cbd7e3;
    border-radius: 7px;
    outline: none;
    color: #17283a;
    background-color: #ffffff;
    font: inherit;
    font-size: 0.92rem;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-company-filter-field input::placeholder {
    color: #8291a1;
}

.rpnl-company-filter-field input:focus,
.rpnl-company-filter-field select:focus {
    border-color: #1677ff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.rpnl-company-filter-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.rpnl-company-filter-actions button {
    min-width: 132px;
    height: 46px;
    margin: 0;
    padding: 0 19px;
    border: 1px solid #0b2d4d;
    border-radius: 7px;
    cursor: pointer;
    color: #ffffff;
    background: #0b2d4d;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 750;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-filter-actions button:hover {
    background: #1677ff;
    border-color: #1677ff;
    transform: translateY(-1px);
}

.rpnl-company-filter-actions a {
    color: #52677c;
    font-size: 0.75rem;
    font-weight: 650;
    text-decoration: none;
}

.rpnl-company-filter-actions a:hover {
    color: #e30613;
    text-decoration: underline;
}

/* Nagłówek wyników */

.rpnl-company-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin: 38px 0 19px;
    padding-bottom: 13px;
    border-bottom: 1px solid #dce5ef;
}

.rpnl-company-results-header h2 {
    margin: 0;
    color: #0b2d4d;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rpnl-company-results-header p {
    margin: 0;
    color: #64778a;
    font-size: 0.84rem;
    line-height: 1.4;
}

/* Siatka firm */

.rpnl-company-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Kafelek firmy */

.rpnl-company-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 5px 18px rgba(11, 45, 77, 0.055);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.rpnl-company-card:hover {
    border-color: #bdcddd;
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(11, 45, 77, 0.12);
}

.rpnl-company-card--wyrozniona {
    border-color: #f2c14e;
    box-shadow: 0 7px 22px rgba(190, 139, 12, 0.12);
}

.rpnl-company-card--promowana {
    border-color: #1677ff;
    box-shadow: 0 7px 24px rgba(22, 119, 255, 0.14);
}

.rpnl-company-card-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 184px;
    overflow: hidden;
    color: #ffffff;
    background: #eaf0f6;
    text-decoration: none;
}

.rpnl-company-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rpnl-company-card:hover .rpnl-company-card-image img {
    transform: scale(1.035);
}

.rpnl-company-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.rpnl-company-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 20px 21px;
}

.rpnl-company-card-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 24px;
    margin-bottom: 11px;
}

.rpnl-company-badge {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.025em;
}

.rpnl-company-badge--verified {
    color: #075b37;
    background: #dcf7ea;
}

.rpnl-company-badge--verified::before {
    content: "✓";
    margin-right: 4px;
    font-weight: 900;
}

.rpnl-company-badge--featured {
    color: #735100;
    background: #fff0bd;
}

.rpnl-company-badge--promoted {
    color: #0754b8;
    background: #dcecff;
}

.rpnl-company-card-title {
    margin: 0;
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.rpnl-company-card-title a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-company-card-title a:hover {
    color: #1677ff;
}

.rpnl-company-card-category {
    margin: 7px 0 0;
    color: #1677ff;
    font-size: 0.76rem;
    font-weight: 750;
    line-height: 1.4;
}

.rpnl-company-card-description {
    margin: 13px 0 0;
    color: #52677c;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rpnl-company-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 15px 0 0;
    color: #64778a;
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.4;
}

.rpnl-company-card-location span {
    font-size: 0.86rem;
}

.rpnl-company-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 18px;
    color: #0b2d4d;
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
}

.rpnl-company-card-link span {
    transition: transform 0.2s ease;
}

.rpnl-company-card-link:hover {
    color: #e30613;
}

.rpnl-company-card-link:hover span {
    transform: translateX(4px);
}

/* Brak wyników */

.rpnl-company-empty {
    padding: 52px 24px;
    border: 1px solid #dce5ef;
    border-radius: 12px;
    text-align: center;
    background: #ffffff;
}

.rpnl-company-empty h2 {
    margin: 0;
    color: #0b2d4d;
    font-size: 1.45rem;
}

.rpnl-company-empty p {
    margin: 11px 0 20px;
    color: #64778a;
}

.rpnl-company-empty a {
    display: inline-flex;
    padding: 11px 18px;
    border-radius: 7px;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
}

.rpnl-company-empty a:hover {
    color: #ffffff;
    background: #1677ff;
}

/* Paginacja */

.rpnl-company-pagination {
    margin-top: 38px;
}

.rpnl-company-pagination .page-numbers {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rpnl-company-pagination ul.page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.rpnl-company-pagination li {
    margin: 0;
}

.rpnl-company-pagination a,
.rpnl-company-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 39px;
    height: 39px;
    padding: 0 11px;
    border: 1px solid #d2deea;
    border-radius: 7px;
    color: #0b2d4d;
    background: #ffffff;
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.rpnl-company-pagination a:hover,
.rpnl-company-pagination .current {
    color: #ffffff;
    background: #0b2d4d;
    border-color: #0b2d4d;
}

/* Dolne CTA */

.rpnl-company-owner-cta {
    padding: 0 0 68px;
    background: #f5f8fc;
}

.rpnl-company-owner-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 31px 35px;
    border-radius: 12px;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            rgba(22, 119, 255, 0.12),
            transparent 55%
        ),
        #0b2d4d;
    box-shadow: 0 12px 30px rgba(11, 45, 77, 0.14);
}

.rpnl-company-owner-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rpnl-company-owner-cta p {
    max-width: 660px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.55;
}

.rpnl-company-owner-cta a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 19px;
    border: 1px solid #e30613;
    border-radius: 7px;
    color: #ffffff;
    background: #e30613;
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-owner-cta a:hover {
    color: #ffffff;
    background: #c9000c;
    border-color: #c9000c;
    transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
    .rpnl-company-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-company-filter-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .rpnl-company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {
    .rpnl-company-hero {
        width: calc(100% - 24px);
        padding: 38px 0 36px;
        border-radius: 12px;
    }

    .rpnl-company-archive .rpnl-container {
        padding-inline: 16px;
    }

    .rpnl-company-hero h1 {
        font-size: 2rem;
    }

    .rpnl-company-intro {
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .rpnl-company-add-button {
        width: 100%;
        margin-top: 22px;
    }

    .rpnl-company-directory {
        padding: 24px 0 46px;
    }

    .rpnl-company-filters {
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
        padding: 17px;
        border-radius: 10px;
    }

    .rpnl-company-filter-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 3px;
    }

    .rpnl-company-filter-actions button {
        width: 100%;
    }

    .rpnl-company-filter-actions a {
        padding: 4px;
        text-align: center;
    }

    .rpnl-company-results-header {
        align-items: flex-start;
        margin-top: 29px;
    }

    .rpnl-company-results-header h2 {
        font-size: 1.35rem;
    }

    .rpnl-company-results-header p {
        padding-top: 3px;
        text-align: right;
    }

    .rpnl-company-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 17px;
    }

    .rpnl-company-card-image {
        height: 190px;
    }

    .rpnl-company-card-content {
        padding: 17px 18px 19px;
    }

    .rpnl-company-owner-cta {
        padding-bottom: 48px;
    }

    .rpnl-company-owner-cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 21px;
        padding: 25px 22px;
    }

    .rpnl-company-owner-cta a {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .rpnl-company-results-header {
        display: block;
    }

    .rpnl-company-results-header p {
        margin-top: 6px;
        text-align: left;
    }

    .rpnl-company-card-image {
        height: 175px;
    }
}
/* =========================================================
   POJEDYNCZA FIRMA
   ========================================================= */

.rpnl-company-single {
    padding: 32px 0 68px;
    color: #17283a;
    background: #f5f8fc;
}

.rpnl-company-single-container {
    width: 100%;
    max-width: 1480px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* Okruszki */

.rpnl-company-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: #718397;
    font-size: 0.78rem;
    line-height: 1.5;
}

.rpnl-company-breadcrumbs a {
    color: #52677c;
    font-weight: 650;
    text-decoration: none;
}

.rpnl-company-breadcrumbs a:hover {
    color: #1677ff;
    text-decoration: underline;
}

.rpnl-company-breadcrumbs span[aria-hidden="true"] {
    color: #a6b3c0;
}

.rpnl-company-breadcrumbs span[aria-current="page"] {
    overflow: hidden;
    max-width: 420px;
    color: #718397;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   HERO FIRMY
   ========================================================= */

.rpnl-company-single-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 38px 42px;
    border-radius: 16px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 12%,
            rgba(22, 119, 255, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #071f35 0%,
            #0b2d4d 58%,
            #104a7a 100%
        );
    box-shadow: 0 12px 32px rgba(11, 45, 77, 0.14);
}

.rpnl-company-single-identity {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Logo lub zdjęcie firmy */

.rpnl-company-single-logo {
    display: flex;
    flex: 0 0 180px;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.17);
}

.rpnl-company-single-logo img {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
}

.rpnl-company-single-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 2.8rem;
    font-weight: 850;
    line-height: 1;
}

/* Nagłówek firmy */

.rpnl-company-single-heading {
    min-width: 0;
    max-width: 900px;
}

.rpnl-company-single-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-height: 24px;
    margin-bottom: 12px;
}

.rpnl-company-single-badges:empty {
    display: none;
}

.rpnl-company-single-heading h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rpnl-company-single-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 13px;
}

.rpnl-company-single-categories a {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 5px 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    font-size: 0.73rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
}

.rpnl-company-single-categories a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
}

.rpnl-company-single-lead {
    max-width: 780px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.65;
}

.rpnl-company-single-locations {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Odznaki */

.rpnl-company-single .rpnl-company-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.025em;
}

.rpnl-company-single .rpnl-company-badge--verified {
    color: #075b37;
    background: #dcf7ea;
}

.rpnl-company-single .rpnl-company-badge--verified::before {
    content: "✓";
    margin-right: 4px;
    font-weight: 900;
}

.rpnl-company-single .rpnl-company-badge--featured {
    color: #735100;
    background: #fff0bd;
}

.rpnl-company-single .rpnl-company-badge--promoted {
    color: #0754b8;
    background: #dcecff;
}

/* =========================================================
   UKŁAD TREŚCI
   ========================================================= */

.rpnl-company-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 400px);
    gap: 28px;
    align-items: start;
}

.rpnl-company-single-main {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 22px;
}

/* Sekcje treści */

.rpnl-company-single-section {
    padding: 29px 32px 31px;
    border: 1px solid #dce5ef;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(11, 45, 77, 0.055);
}

.rpnl-company-single-section h2 {
    position: relative;
    margin: 0 0 21px;
    padding-bottom: 13px;
    color: #0b2d4d;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rpnl-company-single-section h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: #e30613;
    content: "";
}

/* Główny opis */

.rpnl-company-single-content {
    color: #344b61;
    font-size: 0.98rem;
    line-height: 1.78;
}

.rpnl-company-single-content > *:first-child {
    margin-top: 0;
}

.rpnl-company-single-content > *:last-child {
    margin-bottom: 0;
}

.rpnl-company-single-content p {
    margin: 0 0 1.15em;
}

.rpnl-company-single-content h2,
.rpnl-company-single-content h3,
.rpnl-company-single-content h4 {
    color: #0b2d4d;
}

.rpnl-company-single-content h2::after {
    display: none;
}

.rpnl-company-single-content a {
    color: #1677ff;
    font-weight: 650;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.rpnl-company-single-content ul,
.rpnl-company-single-content ol {
    margin: 1em 0;
    padding-left: 1.4em;
}

.rpnl-company-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Informacje o firmie */

.rpnl-company-details-list {
    margin: 0;
}

.rpnl-company-detail-row {
    display: grid;
    grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid #e4ebf2;
}

.rpnl-company-detail-row:first-child {
    padding-top: 0;
}

.rpnl-company-detail-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.rpnl-company-detail-row dt {
    color: #52677c;
    font-size: 0.83rem;
    font-weight: 750;
    line-height: 1.5;
}

.rpnl-company-detail-row dd {
    margin: 0;
    color: #17283a;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.5;
}

/* Social media */

.rpnl-company-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rpnl-company-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 41px;
    padding: 9px 15px;
    border: 1px solid #ccd8e4;
    border-radius: 7px;
    color: #0b2d4d;
    background: #f8fafc;
    font-size: 0.82rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-social-links a:hover {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
    transform: translateY(-2px);
}

/* =========================================================
   PANEL KONTAKTOWY
   ========================================================= */

.rpnl-company-contact-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 14px;
}

.rpnl-company-contact-card {
    overflow: hidden;
    border: 1px solid #d5e0eb;
    border-radius: 13px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(11, 45, 77, 0.09);
}

.rpnl-company-contact-header {
    padding: 24px 25px 21px;
    color: #ffffff;
    background:
        linear-gradient(
            120deg,
            rgba(22, 119, 255, 0.16),
            transparent 62%
        ),
        #0b2d4d;
}

.rpnl-company-contact-eyebrow {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rpnl-company-contact-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rpnl-company-contact-list {
    margin: 0;
    padding: 7px 25px 3px;
}

.rpnl-company-contact-item {
    padding: 16px 0;
    border-bottom: 1px solid #e3eaf1;
}

.rpnl-company-contact-item:last-child {
    border-bottom: 0;
}

.rpnl-company-contact-item dt {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 6px;
    color: #64778a;
    font-size: 0.71rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.rpnl-company-contact-item dt span {
    font-size: 0.9rem;
}

.rpnl-company-contact-item dd {
    overflow-wrap: anywhere;
    margin: 0;
    color: #17283a;
    font-size: 0.9rem;
    font-weight: 650;
    line-height: 1.55;
}

.rpnl-company-contact-item dd a {
    color: #0b2d4d;
    text-decoration: none;
}

.rpnl-company-contact-item dd a:hover {
    color: #1677ff;
    text-decoration: underline;
}

.rpnl-company-contact-empty {
    margin: 0;
    padding: 23px 25px 4px;
    color: #64778a;
    font-size: 0.86rem;
    line-height: 1.55;
}

/* Przyciski kontaktowe */

.rpnl-company-contact-actions {
    display: grid;
    gap: 9px;
    padding: 18px 25px 25px;
}

.rpnl-company-contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 17px;
    border: 1px solid transparent;
    border-radius: 7px;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-contact-button:hover {
    transform: translateY(-1px);
}

.rpnl-company-contact-button--primary {
    color: #ffffff;
    background: #e30613;
    border-color: #e30613;
}

.rpnl-company-contact-button--primary:hover {
    color: #ffffff;
    background: #c9000c;
    border-color: #c9000c;
}

.rpnl-company-contact-button--secondary {
    color: #ffffff;
    background: #0b2d4d;
    border-color: #0b2d4d;
}

.rpnl-company-contact-button--secondary:hover {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
}

.rpnl-company-contact-button--website {
    color: #0b2d4d;
    background: #f5f8fc;
    border-color: #cbd7e3;
}

.rpnl-company-contact-button--website:hover {
    color: #ffffff;
    background: #1677ff;
    border-color: #1677ff;
}

/* Informacja pod panelem */

.rpnl-company-listing-notice {
    padding: 17px 19px;
    border: 1px solid #dce5ef;
    border-radius: 10px;
    background: #edf3f8;
}

.rpnl-company-listing-notice p {
    margin: 0;
    color: #64778a;
    font-size: 0.73rem;
    line-height: 1.55;
}

/* =========================================================
   DOLNE CTA
   ========================================================= */

.rpnl-company-single-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 28px;
    padding: 29px 34px;
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            rgba(22, 119, 255, 0.15),
            transparent 56%
        ),
        #0b2d4d;
    box-shadow: 0 10px 28px rgba(11, 45, 77, 0.12);
}

.rpnl-company-single-bottom h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 820;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.rpnl-company-single-bottom p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    line-height: 1.5;
}

.rpnl-company-single-bottom > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 17px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-company-single-bottom > a:hover {
    color: #ffffff;
    background: #e30613;
    border-color: #e30613;
    transform: translateY(-2px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .rpnl-company-single-layout {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 340px);
        gap: 22px;
    }

    .rpnl-company-single-hero {
        padding: 32px;
    }

    .rpnl-company-single-logo {
        flex-basis: 150px;
        width: 150px;
        height: 150px;
    }

    .rpnl-company-single-section {
        padding: 25px 27px 27px;
    }

    .rpnl-company-contact-list {
        padding-inline: 21px;
    }

    .rpnl-company-contact-actions {
        padding-inline: 21px;
    }
}

/* =========================================================
   MOBILE I MAŁY TABLET
   ========================================================= */

@media (max-width: 820px) {
    .rpnl-company-single {
        padding-top: 22px;
    }

    .rpnl-company-single-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-company-contact-sidebar {
        position: static;
    }

    .rpnl-company-single-hero {
        padding: 28px;
    }

    .rpnl-company-single-identity {
        align-items: flex-start;
        gap: 23px;
    }

    .rpnl-company-single-logo {
        flex-basis: 128px;
        width: 128px;
        height: 128px;
    }

    .rpnl-company-single-heading h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
}

/* =========================================================
   TELEFON
   ========================================================= */

@media (max-width: 600px) {
    .rpnl-company-single {
        padding: 14px 0 46px;
    }

    .rpnl-company-single-container {
        padding-inline: 12px;
    }

    .rpnl-company-breadcrumbs {
        margin-bottom: 11px;
        padding-inline: 4px;
        font-size: 0.71rem;
    }

    .rpnl-company-breadcrumbs span[aria-current="page"] {
        max-width: 170px;
    }

    .rpnl-company-single-hero {
        margin-bottom: 17px;
        padding: 24px 20px 25px;
        border-radius: 12px;
    }

    .rpnl-company-single-identity {
        flex-direction: column;
        gap: 19px;
    }

    .rpnl-company-single-logo {
        flex-basis: auto;
        width: 112px;
        height: 112px;
        border-width: 4px;
        border-radius: 11px;
    }

    .rpnl-company-single-placeholder {
        width: 68px;
        height: 68px;
        font-size: 2rem;
    }

    .rpnl-company-single-heading h1 {
        font-size: 1.85rem;
        line-height: 1.12;
    }

    .rpnl-company-single-lead {
        margin-top: 13px;
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .rpnl-company-single-layout {
        gap: 17px;
    }

    .rpnl-company-single-main {
        gap: 17px;
    }

    .rpnl-company-single-section {
        padding: 22px 19px 23px;
        border-radius: 11px;
    }

    .rpnl-company-single-section h2 {
        margin-bottom: 18px;
        font-size: 1.3rem;
    }

    .rpnl-company-single-content {
        font-size: 0.93rem;
        line-height: 1.72;
    }

    .rpnl-company-detail-row {
        display: block;
        padding: 13px 0;
    }

    .rpnl-company-detail-row dt {
        margin-bottom: 4px;
    }

    .rpnl-company-social-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-company-contact-header {
        padding: 22px 20px 19px;
    }

    .rpnl-company-contact-list {
        padding-inline: 20px;
    }

    .rpnl-company-contact-actions {
        padding: 16px 20px 21px;
    }

    .rpnl-company-single-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 18px;
        padding: 24px 21px;
        border-radius: 11px;
    }

    .rpnl-company-single-bottom > a {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .rpnl-company-social-links {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-company-single-heading h1 {
        font-size: 1.65rem;
    }
}
/* =========================================================
   STRONA: DODAJ FIRMĘ
   ========================================================= */

.rpnl-add-company {
    padding: 32px 0 72px;
    color: #17283a;
    background: #f5f8fc;
}

.rpnl-add-company-container {
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* =========================================================
   HERO
   ========================================================= */

.rpnl-add-company-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 28px;
    padding: 42px 46px;
    overflow: hidden;
    border-radius: 16px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 86% 8%,
            rgba(22, 119, 255, 0.38),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #071f35 0%,
            #0b2d4d 60%,
            #104a7a 100%
        );
    box-shadow: 0 12px 32px rgba(11, 45, 77, 0.14);
}

.rpnl-add-company-hero-content {
    max-width: 720px;
}

.rpnl-add-company-eyebrow {
    margin: 0 0 10px;
    color: #8ebfff;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.rpnl-add-company-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.rpnl-add-company-hero-content > p:last-child {
    max-width: 650px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.65;
}

.rpnl-add-company-hero-note {
    display: flex;
    flex: 0 0 255px;
    flex-direction: column;
    gap: 5px;
    padding: 19px 21px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(5px);
}

.rpnl-add-company-hero-note strong {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-add-company-hero-note span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    line-height: 1.5;
}

/* =========================================================
   KOMUNIKATY
   ========================================================= */

.rpnl-add-company-message {
    margin-bottom: 24px;
    padding: 25px 28px;
    border: 1px solid;
    border-radius: 12px;
}

.rpnl-add-company-message h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
    font-weight: 820;
    line-height: 1.3;
}

.rpnl-add-company-message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.rpnl-add-company-message ul {
    margin: 10px 0 0;
    padding-left: 20px;
}

.rpnl-add-company-message li {
    margin: 4px 0;
    font-size: 0.87rem;
    line-height: 1.5;
}

.rpnl-add-company-message--success {
    color: #075b37;
    border-color: #a9dfc7;
    background: #eaf9f2;
}

.rpnl-add-company-message--error {
    color: #8d1520;
    border-color: #efb8bd;
    background: #fff0f1;
}

/* =========================================================
   FORMULARZ
   ========================================================= */

.rpnl-add-company-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.rpnl-add-company-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Sekcje */

.rpnl-add-company-section {
    padding: 32px 36px 36px;
    border: 1px solid #dce5ef;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 6px 22px rgba(11, 45, 77, 0.055);
}

.rpnl-add-company-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e3eaf1;
}

.rpnl-add-company-section-heading > span {
    display: inline-flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1;
}

.rpnl-add-company-section-heading h2 {
    margin: 0;
    color: #0b2d4d;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 820;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.rpnl-add-company-section-heading p {
    margin: 5px 0 0;
    color: #718397;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Siatka pól */

.rpnl-add-company-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 26px;
}

.rpnl-add-company-field {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.rpnl-add-company-field--full {
    grid-column: 1 / -1;
}

.rpnl-add-company-field > label,
.rpnl-add-company-field > legend {
    display: block;
    margin: 0 0 8px;
    padding: 0;
    color: #31485e;
    font-size: 0.79rem;
    font-weight: 780;
    line-height: 1.35;
}

/* Pola formularza */

.rpnl-add-company-field input[type="text"],
.rpnl-add-company-field input[type="tel"],
.rpnl-add-company-field input[type="email"],
.rpnl-add-company-field input[type="url"],
.rpnl-add-company-field select,
.rpnl-add-company-field textarea {
    display: block;
    width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 11px 14px;
    border: 1px solid #cbd7e3;
    border-radius: 8px;
    outline: none;
    color: #17283a;
    background: #ffffff;
    box-shadow: none;
    font: inherit;
    font-size: 0.88rem;
    line-height: 1.5;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.rpnl-add-company-field select {
    padding-right: 38px;
    cursor: pointer;
}

.rpnl-add-company-field textarea {
    min-height: 110px;
    resize: vertical;
}

.rpnl-add-company-field #company_description {
    min-height: 220px;
}

.rpnl-add-company-field input::placeholder,
.rpnl-add-company-field textarea::placeholder {
    color: #96a5b4;
    opacity: 1;
}

.rpnl-add-company-field input:hover,
.rpnl-add-company-field select:hover,
.rpnl-add-company-field textarea:hover {
    border-color: #9fb1c3;
}

.rpnl-add-company-field input:focus,
.rpnl-add-company-field select:focus,
.rpnl-add-company-field textarea:focus {
    border-color: #1677ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}

.rpnl-add-company-field input:required:valid,
.rpnl-add-company-field select:required:valid,
.rpnl-add-company-field textarea:required:valid {
    border-color: #96cdb3;
}

.rpnl-add-company-field small {
    display: block;
    margin-top: 7px;
    color: #7b8d9f;
    font-size: 0.71rem;
    line-height: 1.45;
}

/* Plik z logo */

.rpnl-add-company-field input[type="file"] {
    display: block;
    width: 100%;
    min-height: 54px;
    padding: 7px;
    border: 1px dashed #b8c7d6;
    border-radius: 8px;
    color: #536a7f;
    background: #f8fafc;
    font-size: 0.8rem;
    cursor: pointer;
}

.rpnl-add-company-field input[type="file"]::file-selector-button {
    min-height: 38px;
    margin-right: 12px;
    padding: 8px 14px;
    border: 0;
    border-radius: 6px;
    color: #ffffff;
    background: #0b2d4d;
    font-size: 0.76rem;
    font-weight: 750;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.rpnl-add-company-field input[type="file"]::file-selector-button:hover {
    background: #1677ff;
}

/* Języki */

.rpnl-add-company-languages {
    min-width: 0;
}

.rpnl-add-company-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.rpnl-add-company-checks label {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    margin: 0;
    cursor: pointer;
}

.rpnl-add-company-checks input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.rpnl-add-company-checks span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid #cbd7e3;
    border-radius: 7px;
    color: #40576d;
    background: #f8fafc;
    font-size: 0.78rem;
    font-weight: 720;
    line-height: 1.2;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-add-company-checks span::before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    margin-right: 7px;
    border: 1px solid #aebdcb;
    border-radius: 4px;
    color: transparent;
    background: #ffffff;
    content: "✓";
    font-size: 0.7rem;
    font-weight: 900;
}

.rpnl-add-company-checks input:checked + span {
    color: #0b2d4d;
    border-color: #1677ff;
    background: #edf5ff;
}

.rpnl-add-company-checks input:checked + span::before {
    color: #ffffff;
    border-color: #1677ff;
    background: #1677ff;
}

.rpnl-add-company-checks input:focus-visible + span {
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.15);
}

/* Zgoda */

.rpnl-add-company-consent {
    grid-column: 1 / -1;
    padding: 17px 19px;
    border: 1px solid #d6e0ea;
    border-radius: 9px;
    background: #f5f8fc;
}

.rpnl-add-company-consent label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0;
    cursor: pointer;
}

.rpnl-add-company-consent input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin: 2px 0 0;
    accent-color: #1677ff;
    cursor: pointer;
}

.rpnl-add-company-consent span {
    color: #4b6278;
    font-size: 0.78rem;
    font-weight: 620;
    line-height: 1.55;
}

/* =========================================================
   PANEL WYSYŁANIA
   ========================================================= */

.rpnl-add-company-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 31px;
    border-radius: 13px;
    color: #ffffff;
    background:
        linear-gradient(
            115deg,
            rgba(22, 119, 255, 0.17),
            transparent 58%
        ),
        #0b2d4d;
    box-shadow: 0 10px 28px rgba(11, 45, 77, 0.13);
}

.rpnl-add-company-submit > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rpnl-add-company-submit strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.rpnl-add-company-submit span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    line-height: 1.45;
}

.rpnl-add-company-submit button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 48px;
    margin: 0;
    padding: 12px 21px;
    border: 1px solid #e30613;
    border-radius: 7px;
    color: #ffffff;
    background: #e30613;
    box-shadow: none;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 820;
    line-height: 1.2;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rpnl-add-company-submit button:hover {
    color: #ffffff;
    border-color: #c9000c;
    background: #c9000c;
    box-shadow: 0 7px 18px rgba(227, 6, 19, 0.22);
    transform: translateY(-2px);
}

.rpnl-add-company-submit button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .rpnl-add-company-hero {
        align-items: flex-start;
        padding: 35px 34px;
    }

    .rpnl-add-company-hero-note {
        flex-basis: 220px;
    }

    .rpnl-add-company-section {
        padding: 29px 30px 32px;
    }
}

/* =========================================================
   TELEFON I MAŁY TABLET
   ========================================================= */

@media (max-width: 720px) {
    .rpnl-add-company {
        padding-top: 22px;
    }

    .rpnl-add-company-hero {
        flex-direction: column;
        gap: 25px;
    }

    .rpnl-add-company-hero-note {
        width: 100%;
        flex-basis: auto;
    }

    .rpnl-add-company-fields {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-add-company-field--full,
    .rpnl-add-company-consent {
        grid-column: auto;
    }

    .rpnl-add-company-submit {
        align-items: flex-start;
        flex-direction: column;
    }

    .rpnl-add-company-submit button {
        width: 100%;
    }
}

/* =========================================================
   TELEFON
   ========================================================= */

@media (max-width: 520px) {
    .rpnl-add-company {
        padding: 14px 0 48px;
    }

    .rpnl-add-company-container {
        padding-inline: 12px;
    }

    .rpnl-add-company .rpnl-company-breadcrumbs {
        margin-bottom: 11px;
        padding-inline: 4px;
        font-size: 0.71rem;
    }

    .rpnl-add-company-hero {
        margin-bottom: 17px;
        padding: 27px 21px;
        border-radius: 12px;
    }

    .rpnl-add-company-hero h1 {
        font-size: 2rem;
    }

    .rpnl-add-company-hero-content > p:last-child {
        font-size: 0.91rem;
        line-height: 1.6;
    }

    .rpnl-add-company-hero-note {
        padding: 16px 17px;
    }

    .rpnl-add-company-form {
        gap: 17px;
    }

    .rpnl-add-company-section {
        padding: 23px 19px 25px;
        border-radius: 11px;
    }

    .rpnl-add-company-section-heading {
        gap: 12px;
        margin-bottom: 23px;
        padding-bottom: 18px;
    }

    .rpnl-add-company-section-heading > span {
        flex-basis: 37px;
        width: 37px;
        height: 37px;
        border-radius: 8px;
        font-size: 0.7rem;
    }

    .rpnl-add-company-section-heading h2 {
        font-size: 1.22rem;
    }

    .rpnl-add-company-fields {
        gap: 20px;
    }

    .rpnl-add-company-field input[type="text"],
    .rpnl-add-company-field input[type="tel"],
    .rpnl-add-company-field input[type="email"],
    .rpnl-add-company-field input[type="url"],
    .rpnl-add-company-field select,
    .rpnl-add-company-field textarea {
        min-height: 47px;
        font-size: 0.86rem;
    }

    .rpnl-add-company-checks {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-add-company-checks span {
        width: 100%;
    }

    .rpnl-add-company-submit {
        padding: 23px 20px;
        border-radius: 11px;
    }

    .rpnl-add-company-message {
        padding: 21px 20px;
        border-radius: 10px;
    }
}

@media (max-width: 370px) {
    .rpnl-add-company-checks {
        grid-template-columns: minmax(0, 1fr);
    }
}
.rpnl-add-company-consent a {
    color: #0b5fc6;
    font-weight: 750;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.rpnl-add-company-consent a:hover {
    color: #e30613;
}
/* =========================================================
   STRONY PRAWNE — MARGINESY I SIDEBAR
   ========================================================= */

.rpnl-privacy > .rpnl-category-shell > .rpnl-container {
    width: calc(100% - 48px);
    max-width: 1840px;
    margin-inline: auto;
}

@media (max-width: 700px) {
    .rpnl-privacy > .rpnl-category-shell > .rpnl-container {
        width: calc(100% - 24px);
    }
}
/* =========================================================
   POJEDYNCZA OFERTA PRACY
   ========================================================= */

.rpnl-job-single {
    padding: 34px 0 70px;
}

.rpnl-job-single__container {
    width: calc(100% - 48px);
    max-width: var(--rpnl-container);
    margin-inline: auto;
}

.rpnl-job-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
    color: var(--rpnl-text-muted);
    font-size: 0.86rem;
}

.rpnl-job-single__breadcrumbs a {
    color: var(--rpnl-text-muted);
}

.rpnl-job-single__breadcrumbs a:hover {
    color: var(--rpnl-red);
}

/* Nagłówek oferty */

.rpnl-job-single__hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px 42px;
    margin-bottom: 30px;
    background: var(--rpnl-navy);
    color: var(--rpnl-white);
    border-radius: var(--rpnl-radius);
    box-shadow: var(--rpnl-shadow);
}

.rpnl-job-single__hero-content {
    min-width: 0;
}

.rpnl-job-single__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 17px;
}

.rpnl-job-badge {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.rpnl-job-badge--active {
    background: #dcfce7;
    color: #166534;
}

.rpnl-job-badge--expired {
    background: #fee2e2;
    color: #991b1b;
}

.rpnl-job-badge--featured {
    background: #fef3c7;
    color: #92400e;
}

.rpnl-job-badge--verified {
    background: #dbeafe;
    color: #1e40af;
}

.rpnl-job-single__hero h1 {
    max-width: 820px;
    margin: 0;
    color: var(--rpnl-white);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.rpnl-job-single__company {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.15rem;
    font-weight: 700;
}

.rpnl-job-single__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 24px;
}

.rpnl-job-single__summary span {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    font-weight: 700;
}

.rpnl-job-single__logo {
    display: flex;
    flex: 0 0 150px;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    padding: 18px;
    overflow: hidden;
    background: var(--rpnl-white);
    border-radius: 16px;
}

.rpnl-job-single__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Układ treści */

.rpnl-job-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
    align-items: start;
}

.rpnl-job-single__main {
    min-width: 0;
}

.rpnl-job-section {
    padding: 30px 34px;
    margin-bottom: 22px;
    background: var(--rpnl-white);
    border: 1px solid var(--rpnl-border);
    border-radius: var(--rpnl-radius);
    box-shadow: 0 5px 18px rgba(11, 45, 77, 0.05);
}

.rpnl-job-section h2 {
    padding-bottom: 14px;
    margin: 0 0 22px;
    color: var(--rpnl-navy);
    font-size: 1.42rem;
    line-height: 1.25;
    border-bottom: 2px solid var(--rpnl-border);
}

.rpnl-job-section h2::after {
    display: block;
    width: 54px;
    height: 3px;
    margin-top: 14px;
    margin-bottom: -17px;
    background: var(--rpnl-red);
    content: "";
}

.rpnl-job-section__content > *:first-child {
    margin-top: 0;
}

.rpnl-job-section__content > *:last-child {
    margin-bottom: 0;
}

/* Tabele danych */

.rpnl-job-details {
    margin: 0;
}

.rpnl-job-details > div {
    display: grid;
    grid-template-columns: minmax(150px, 32%) minmax(0, 1fr);
    gap: 22px;
    padding: 15px 0;
    border-bottom: 1px solid var(--rpnl-border);
}

.rpnl-job-details > div:first-child {
    padding-top: 0;
}

.rpnl-job-details > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.rpnl-job-details dt {
    color: var(--rpnl-text-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.rpnl-job-details dd {
    min-width: 0;
    margin: 0;
    color: var(--rpnl-text);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.rpnl-job-info-block {
    padding: 20px 22px;
    margin-top: 16px;
    background: var(--rpnl-background);
    border-left: 4px solid var(--rpnl-blue);
    border-radius: 8px;
}

.rpnl-job-info-block:first-of-type {
    margin-top: 0;
}

.rpnl-job-info-block--important {
    background: #fff7ed;
    border-left-color: #ea580c;
}

.rpnl-job-info-block h3 {
    margin: 0 0 8px;
    color: var(--rpnl-navy);
    font-size: 1rem;
}

.rpnl-job-info-block p {
    margin: 0;
}

/* Komunikaty */

.rpnl-job-alert {
    padding: 22px 24px;
    margin-bottom: 22px;
    border: 1px solid;
    border-radius: var(--rpnl-radius);
}

.rpnl-job-alert--expired {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.rpnl-job-alert--notice {
    background: #fff8e6;
    color: #573a00;
    border-color: #f2c66d;
    border-left: 6px solid #d97706;
}

.rpnl-job-alert--notice h2 {
    margin: 0 0 12px;
    color: #7c2d12;
    font-size: 1.25rem;
}

.rpnl-job-alert--notice p {
    margin: 0 0 12px;
}

.rpnl-job-alert--notice p:last-child {
    margin-bottom: 0;
}

/* Panel kontaktowy */

.rpnl-job-contact {
    position: sticky;
    top: 112px;
}

.rpnl-job-contact__card {
    padding: 28px;
    background: var(--rpnl-white);
    border: 1px solid var(--rpnl-border);
    border-top: 5px solid var(--rpnl-red);
    border-radius: var(--rpnl-radius);
    box-shadow: var(--rpnl-shadow);
}

.rpnl-job-contact__eyebrow {
    margin: 0 0 8px;
    color: var(--rpnl-red);
    font-size: 0.73rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.rpnl-job-contact h2 {
    margin: 0 0 16px;
    color: var(--rpnl-navy);
    font-size: 1.45rem;
    line-height: 1.2;
}

.rpnl-job-contact__name {
    padding-bottom: 15px;
    margin: 0 0 18px;
    font-weight: 700;
    border-bottom: 1px solid var(--rpnl-border);
}

.rpnl-job-contact__actions {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.rpnl-job-contact__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 11px 16px;
    color: var(--rpnl-navy);
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    background: var(--rpnl-white);
    border: 2px solid var(--rpnl-navy);
    border-radius: 8px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.rpnl-job-contact__button:hover,
.rpnl-job-contact__button:focus-visible {
    background: var(--rpnl-navy);
    color: var(--rpnl-white);
}

.rpnl-job-contact__button--primary {
    background: var(--rpnl-red);
    color: var(--rpnl-white);
    border-color: var(--rpnl-red);
}

.rpnl-job-contact__button--primary:hover,
.rpnl-job-contact__button--primary:focus-visible {
    background: var(--rpnl-navy);
    border-color: var(--rpnl-navy);
}

.rpnl-job-contact__note,
.rpnl-job-contact__disclaimer,
.rpnl-job-contact__expiry {
    font-size: 0.84rem;
    line-height: 1.5;
}

.rpnl-job-contact__note {
    padding: 13px 15px;
    background: var(--rpnl-background);
    border-radius: 7px;
}

.rpnl-job-contact__disclaimer {
    color: var(--rpnl-text-muted);
}

.rpnl-job-contact__expiry {
    padding-top: 15px;
    margin-bottom: 0;
    color: var(--rpnl-navy);
    border-top: 1px solid var(--rpnl-border);
}

/* Stopka widoku */

.rpnl-job-single__footer {
    margin-top: 28px;
}

.rpnl-job-single__footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 17px;
    color: var(--rpnl-navy);
    font-size: 0.9rem;
    font-weight: 800;
    background: var(--rpnl-white);
    border: 1px solid var(--rpnl-border);
    border-radius: 8px;
}

.rpnl-job-single__footer a:hover {
    color: var(--rpnl-red);
    border-color: var(--rpnl-red);
}

/* Tablet */

@media (max-width: 980px) {
    .rpnl-job-single__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-job-contact {
        position: static;
    }

    .rpnl-job-contact__card {
        max-width: none;
    }
}

/* Telefon */

@media (max-width: 700px) {
    .rpnl-job-single {
        padding: 22px 0 45px;
    }

    .rpnl-job-single__container {
        width: calc(100% - 24px);
    }

    .rpnl-job-single__breadcrumbs {
        margin-bottom: 16px;
        font-size: 0.76rem;
    }

    .rpnl-job-single__breadcrumbs span[aria-current="page"] {
        display: none;
    }

    .rpnl-job-single__hero {
        align-items: flex-start;
        padding: 25px 21px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .rpnl-job-single__hero h1 {
        font-size: 1.85rem;
    }

    .rpnl-job-single__company {
        font-size: 1rem;
    }

    .rpnl-job-single__summary {
        display: grid;
        gap: 8px;
        margin-top: 19px;
    }

    .rpnl-job-single__logo {
        display: none;
    }

    .rpnl-job-single__layout {
        gap: 20px;
    }

    .rpnl-job-section {
        padding: 23px 20px;
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .rpnl-job-section h2 {
        font-size: 1.24rem;
    }

    .rpnl-job-details > div {
        grid-template-columns: minmax(0, 1fr);
        gap: 4px;
        padding: 13px 0;
    }

    .rpnl-job-details dt {
        font-size: 0.78rem;
    }

    .rpnl-job-alert {
        padding: 19px 18px;
        margin-bottom: 16px;
    }

    .rpnl-job-alert--notice h2 {
        font-size: 1.14rem;
    }

    .rpnl-job-contact__card {
        padding: 23px 20px;
    }

    .rpnl-job-contact h2 {
        font-size: 1.3rem;
    }

    .rpnl-job-single__footer {
        margin-top: 20px;
    }
}
/* ==========================================================
   OFERTY PRACY — ARCHIWUM I POJEDYNCZA OFERTA
   Wyłącznie klasy modułu pracy.
   ========================================================== */

.rpnl-jobs-archive,
.rpnl-job-single {
    padding: 24px 0 64px;
    color: var(--rpnl-text, #1e293b);
    background: var(--rpnl-background, #f5f8fc);
}

.rpnl-jobs-archive *,
.rpnl-jobs-archive *::before,
.rpnl-jobs-archive *::after,
.rpnl-job-single *,
.rpnl-job-single *::before,
.rpnl-job-single *::after {
    box-sizing: border-box;
}

.rpnl-jobs-archive__container,
.rpnl-job-single__container {
    width: min(calc(100% - 40px), 1150px);
    margin-inline: auto;
}

/* Archiwum: hero */

.rpnl-jobs-hero {
    width: min(calc(100% - 64px), 1840px);
    padding: 28px 0 32px;
    margin: 0 auto 28px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 88% 20%, rgba(22, 119, 255, 0.26), transparent 34%),
        linear-gradient(135deg, #0b2d4d, #103f6b);
    border-radius: 15px;
}

.rpnl-jobs-breadcrumbs,
.rpnl-job-single__breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 600;
}

.rpnl-jobs-breadcrumbs {
    color: rgba(255, 255, 255, 0.72);
}

.rpnl-jobs-breadcrumbs a {
    color: rgba(255, 255, 255, 0.88);
}

.rpnl-jobs-breadcrumbs a,
.rpnl-job-single__breadcrumbs a {
    text-decoration: none;
}

.rpnl-jobs-hero__content {
    max-width: 760px;
}

.rpnl-jobs-hero__eyebrow,
.rpnl-jobs-filters__eyebrow,
.rpnl-job-contact__eyebrow {
    margin: 0 0 8px;
    color: #e30613;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rpnl-jobs-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    line-height: 1.1;
}

.rpnl-jobs-hero__content > p:last-child {
    max-width: 700px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
}

/* Archiwum: filtry */

.rpnl-jobs-filters,
.rpnl-jobs-empty,
.rpnl-jobs-disclaimer,
.rpnl-job-single__hero,
.rpnl-job-section,
.rpnl-job-contact__card,
.rpnl-job-alert {
    background: #fff;
    border: 1px solid var(--rpnl-border, #dbe4ee);
    border-radius: var(--rpnl-radius, 12px);
    box-shadow: var(--rpnl-shadow, 0 8px 24px rgba(11, 45, 77, 0.08));
}

.rpnl-jobs-filters {
    padding: 26px;
    margin-bottom: 24px;
}

.rpnl-jobs-filters__heading,
.rpnl-jobs-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rpnl-jobs-filters__heading {
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--rpnl-border, #dbe4ee);
}

.rpnl-jobs-filters h2,
.rpnl-jobs-empty h2,
.rpnl-jobs-disclaimer h2,
.rpnl-job-section h2,
.rpnl-job-contact h2 {
    margin: 0;
    color: #0b2d4d;
}

.rpnl-jobs-filters__reset {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 700;
}

.rpnl-jobs-filters__grid {
    display: grid;
    grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(145px, 1fr)) auto;
    gap: 14px;
    align-items: end;
}

.rpnl-jobs-filter-field label {
    display: block;
    margin-bottom: 7px;
    color: #0b2d4d;
    font-size: 0.78rem;
    font-weight: 800;
}

.rpnl-jobs-filter-field input,
.rpnl-jobs-filter-field select {
    width: 100%;
    min-height: 48px;
    padding: 10px 13px;
    color: #1e293b;
    font: inherit;
    font-size: 0.88rem;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
}

.rpnl-jobs-filter-field input:focus,
.rpnl-jobs-filter-field select:focus {
    border-color: #1677ff;
    outline: 3px solid rgba(22, 119, 255, 0.14);
}

.rpnl-jobs-filters__submit,
.rpnl-job-contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 20px;
    color: #fff;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background: #e30613;
    border: 2px solid #e30613;
    border-radius: 8px;
}

.rpnl-jobs-filters__submit:hover,
.rpnl-job-contact__button:hover {
    background: #0b2d4d;
    border-color: #0b2d4d;
}

.rpnl-jobs-results-bar {
    min-height: 42px;
    margin-bottom: 12px;
}

.rpnl-jobs-results-bar p {
    margin: 0;
    color: #64748b;
    font-size: 0.88rem;
    font-weight: 700;
}

/* Archiwum: odseparowane karty */

.rpnl-job-listings {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.rpnl-job-listing-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--rpnl-border, #dbe4ee);
    border-radius: var(--rpnl-radius, 12px);
    box-shadow: 0 5px 18px rgba(11, 45, 77, 0.06);
}

.rpnl-job-listing-card--featured {
    border-top: 4px solid #e30613;
}

.rpnl-job-listing-card__top {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 17px 19px 0;
}

.rpnl-job-listing-card__badges,
.rpnl-job-listing-card__extras,
.rpnl-job-single__badges,
.rpnl-job-single__summary {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.rpnl-job-listing-card__badge,
.rpnl-job-badge,
.rpnl-job-listing-card__extras span {
    display: inline-flex;
    padding: 5px 8px;
    color: #475569;
    font-size: 0.68rem;
    font-weight: 800;
    background: #f1f5f9;
    border-radius: 5px;
}

.rpnl-job-listing-card__badge--featured,
.rpnl-job-badge--featured,
.rpnl-job-badge--expired {
    color: #991b1b;
    background: #fee2e2;
}

.rpnl-job-listing-card__badge--verified,
.rpnl-job-badge--verified,
.rpnl-job-badge--active {
    color: #166534;
    background: #dcfce7;
}

.rpnl-job-listing-card__date {
    flex: 0 0 auto;
    margin: 4px 0 0;
    color: #64748b;
    font-size: 0.68rem;
}

.rpnl-job-listing-card__body {
    flex: 1;
    padding: 18px 19px;
}

.rpnl-job-listing-card__company {
    margin: 0 0 7px;
    color: #e30613;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.rpnl-job-listing-card__title {
    margin: 0 0 18px;
    color: #0b2d4d;
    font-size: 1.25rem;
    line-height: 1.3;
}

.rpnl-job-listing-card__title a {
    color: inherit;
    text-decoration: none;
}

.rpnl-job-listing-card__details p {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 0;
    margin: 0;
    border-top: 1px solid var(--rpnl-border, #dbe4ee);
}

.rpnl-job-listing-card__details span {
    color: #64748b;
    font-size: 0.72rem;
}

.rpnl-job-listing-card__details strong {
    font-size: 0.78rem;
}

.rpnl-job-listing-card__extras {
    margin-top: 14px;
}

.rpnl-job-listing-card__footer {
    padding: 0 19px 19px;
}

.rpnl-job-listing-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    color: #0b2d4d;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid #0b2d4d;
    border-radius: 8px;
}

.rpnl-job-listing-card__button:hover {
    color: #fff;
    background: #0b2d4d;
}

.rpnl-jobs-empty,
.rpnl-jobs-disclaimer {
    padding: 28px;
}

.rpnl-jobs-empty {
    text-align: center;
}

.rpnl-jobs-empty p,
.rpnl-jobs-disclaimer p {
    margin-bottom: 0;
    color: #64748b;
    line-height: 1.65;
}

.rpnl-jobs-pagination {
    margin-top: 30px;
}

.rpnl-jobs-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.rpnl-jobs-pagination a,
.rpnl-jobs-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
    color: #0b2d4d;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--rpnl-border, #dbe4ee);
    border-radius: 7px;
}

.rpnl-jobs-pagination .current {
    color: #fff;
    background: #0b2d4d;
}

.rpnl-jobs-disclaimer {
    margin-top: 34px;
    background: #fff8e6;
    border-left: 5px solid #d97706;
}

/* Pojedyncza oferta */

.rpnl-job-single__hero {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    margin-bottom: 24px;
}

.rpnl-job-single__hero h1 {
    margin: 12px 0 8px;
    color: #0b2d4d;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
}

.rpnl-job-single__company {
    margin: 0 0 16px;
    color: #e30613;
    font-weight: 800;
}

.rpnl-job-single__summary span {
    color: #475569;
    font-size: 0.88rem;
    font-weight: 700;
}

.rpnl-job-single__logo {
    flex: 0 0 150px;
}

.rpnl-job-single__logo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.rpnl-job-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    align-items: start;
}

.rpnl-job-single__main {
    display: grid;
    gap: 20px;
}

.rpnl-job-section,
.rpnl-job-alert,
.rpnl-job-contact__card {
    padding: 26px;
}

.rpnl-job-section h2,
.rpnl-job-alert h2,
.rpnl-job-contact h2 {
    margin-bottom: 18px;
}

.rpnl-job-section__content {
    line-height: 1.75;
}

.rpnl-job-details {
    margin: 0;
}

.rpnl-job-details > div {
    display: grid;
    grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
    gap: 20px;
    padding: 13px 0;
    border-top: 1px solid var(--rpnl-border, #dbe4ee);
}

.rpnl-job-details dt {
    color: #64748b;
    font-weight: 700;
}

.rpnl-job-details dd {
    margin: 0;
    font-weight: 700;
}

.rpnl-job-info-block--important,
.rpnl-job-alert--notice {
    border-left: 5px solid #d97706;
}

.rpnl-job-alert--expired {
    border-left: 5px solid #e30613;
}

.rpnl-job-contact {
    position: sticky;
    top: 100px;
}

.rpnl-job-contact__name {
    color: #0b2d4d;
    font-weight: 800;
}

.rpnl-job-contact__actions {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.rpnl-job-contact__button:not(.rpnl-job-contact__button--primary) {
    color: #0b2d4d;
    background: #fff;
    border-color: #0b2d4d;
}

.rpnl-job-contact__note,
.rpnl-job-contact__disclaimer,
.rpnl-job-contact__expiry {
    color: #64748b;
    font-size: 0.82rem;
    line-height: 1.55;
}

.rpnl-job-single__footer {
    margin-top: 26px;
}

.rpnl-job-single__footer a {
    color: #0b2d4d;
    font-weight: 800;
}

@media (max-width: 1050px) {
    .rpnl-jobs-filters__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-jobs-filter-field--search {
        grid-column: span 2;
    }

    .rpnl-job-listings {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-job-single__layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }
}

@media (max-width: 760px) {
    .rpnl-jobs-archive,
    .rpnl-job-single {
        padding: 14px 0 44px;
    }

    .rpnl-jobs-archive__container,
    .rpnl-job-single__container {
        width: calc(100% - 24px);
    }

    .rpnl-jobs-hero {
        width: calc(100% - 24px);
        padding: 22px 0 25px;
        margin-bottom: 20px;
        border-radius: 11px;
    }

    .rpnl-jobs-hero .rpnl-jobs-archive__container {
        width: calc(100% - 36px);
    }

    .rpnl-jobs-filters__heading,
    .rpnl-job-single__hero {
        display: block;
    }

    .rpnl-jobs-filters,
    .rpnl-job-section,
    .rpnl-job-alert,
    .rpnl-job-contact__card,
    .rpnl-job-single__hero {
        padding: 20px;
    }

    .rpnl-jobs-filters__grid,
    .rpnl-job-listings,
    .rpnl-job-single__layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-jobs-filter-field--search {
        grid-column: auto;
    }

    .rpnl-jobs-filters__submit {
        width: 100%;
    }

    .rpnl-job-single__logo {
        width: 110px;
        margin-top: 20px;
    }

    .rpnl-job-contact {
        position: static;
    }

    .rpnl-job-details > div {
        grid-template-columns: minmax(0, 1fr);
        gap: 5px;
    }
}
/* ==========================================================
   DODAWANIE OFERTY PRACY
   Wyłącznie klasy formularza zgłoszeniowego.
   ========================================================== */

.rpnl-job-submission {
    padding: 24px 0 64px;
    color: var(--rpnl-text, #182230);
    background: var(--rpnl-background, #f5f8fc);
}

.rpnl-job-submission *,
.rpnl-job-submission *::before,
.rpnl-job-submission *::after {
    box-sizing: border-box;
}

.rpnl-job-submission-container {
    width: min(calc(100% - 40px), 1150px);
    margin-inline: auto;
}

/* Hero */

.rpnl-job-submission-hero {
    width: min(calc(100% - 64px), 1840px);
    padding: 28px 0 32px;
    margin: 0 auto 28px;
    overflow: hidden;
    color: var(--rpnl-white, #ffffff);
    background:
        radial-gradient(circle at 88% 20%, rgba(22, 119, 255, 0.26), transparent 34%),
        linear-gradient(135deg, #0b2d4d, #103f6b);
    border-radius: 15px;
}

.rpnl-job-submission-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8rem;
    font-weight: 600;
}

.rpnl-job-submission-breadcrumbs a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.rpnl-job-submission-breadcrumbs a:hover,
.rpnl-job-submission-breadcrumbs a:focus-visible {
    color: var(--rpnl-white, #ffffff);
    text-decoration: underline;
}

.rpnl-job-submission-eyebrow {
    margin: 0 0 8px;
    color: var(--rpnl-red, #e30613);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rpnl-job-submission-hero h1 {
    margin: 0;
    color: var(--rpnl-white, #ffffff);
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    line-height: 1.1;
}

.rpnl-job-submission-hero .rpnl-job-submission-container > p:last-child {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* Komunikaty */

.rpnl-job-submission-message {
    padding: 24px 26px;
    margin-bottom: 24px;
    background: var(--rpnl-white, #ffffff);
    border: 1px solid var(--rpnl-border, #dfe7ef);
    border-left-width: 5px;
    border-radius: var(--rpnl-radius, 12px);
    box-shadow: var(--rpnl-shadow, 0 8px 24px rgba(11, 45, 77, 0.08));
}

.rpnl-job-submission-message h2 {
    margin: 0 0 8px;
    color: var(--rpnl-navy, #0b2d4d);
    font-size: 1.3rem;
    line-height: 1.3;
}

.rpnl-job-submission-message p,
.rpnl-job-submission-message ul {
    margin: 0;
    line-height: 1.65;
}

.rpnl-job-submission-message ul {
    padding-left: 20px;
}

.rpnl-job-submission-message a {
    display: inline-block;
    margin-top: 15px;
    color: var(--rpnl-blue, #1677ff);
    font-weight: 750;
}

.rpnl-job-submission-message--success {
    border-left-color: #15803d;
}

.rpnl-job-submission-message--error {
    color: #7f1d1d;
    background: #fff7f7;
    border-color: #fecaca;
    border-left-color: var(--rpnl-red, #e30613);
}

.rpnl-job-submission-message--error h2 {
    color: #991b1b;
}

/* Formularz i sekcje */

.rpnl-job-submission-form {
    display: grid;
    gap: 22px;
}

.rpnl-job-submission-section {
    padding: 27px 28px 29px;
    background: var(--rpnl-white, #ffffff);
    border: 1px solid var(--rpnl-border, #dfe7ef);
    border-radius: var(--rpnl-radius, 12px);
    box-shadow: var(--rpnl-shadow, 0 8px 24px rgba(11, 45, 77, 0.08));
}

.rpnl-job-submission-section h2 {
    padding-bottom: 15px;
    margin: 0 0 20px;
    color: var(--rpnl-navy, #0b2d4d);
    font-size: 1.35rem;
    line-height: 1.3;
    border-bottom: 1px solid var(--rpnl-border, #dfe7ef);
}

.rpnl-job-submission-section > p {
    margin: -9px 0 20px;
    color: var(--rpnl-text-muted, #667085);
    font-size: 0.88rem;
    line-height: 1.6;
}

.rpnl-job-submission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 19px 22px;
}

.rpnl-job-submission-field--wide {
    grid-column: 1 / -1;
}

.rpnl-job-submission-field {
    min-width: 0;
    margin: 0;
}

.rpnl-job-submission-field > span,
.rpnl-job-submission-field > legend {
    display: block;
    padding: 0;
    margin: 0 0 7px;
    color: var(--rpnl-navy, #0b2d4d);
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1.4;
}

.rpnl-job-submission-field input:not([type="checkbox"]),
.rpnl-job-submission-field select,
.rpnl-job-submission-field textarea {
    display: block;
    width: 100%;
    min-height: 49px;
    padding: 11px 13px;
    color: var(--rpnl-text, #182230);
    font: inherit;
    font-size: 0.91rem;
    line-height: 1.45;
    background: var(--rpnl-white, #ffffff);
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.rpnl-job-submission-field textarea {
    min-height: 112px;
    resize: vertical;
}

.rpnl-job-submission-field textarea[rows="10"] {
    min-height: 230px;
}

.rpnl-job-submission-field input::placeholder,
.rpnl-job-submission-field textarea::placeholder {
    color: #98a2b3;
}

.rpnl-job-submission-field input:not([type="checkbox"]):hover,
.rpnl-job-submission-field select:hover,
.rpnl-job-submission-field textarea:hover {
    border-color: #94a3b8;
}

.rpnl-job-submission-field input:not([type="checkbox"]):focus,
.rpnl-job-submission-field select:focus,
.rpnl-job-submission-field textarea:focus {
    border-color: var(--rpnl-blue, #1677ff);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.14);
}

/* Grupy pól wyboru */

fieldset.rpnl-job-submission-field {
    padding: 18px;
    border: 1px solid var(--rpnl-border, #dfe7ef);
    border-radius: 9px;
}

fieldset.rpnl-job-submission-field > legend {
    padding: 0 8px;
    margin-left: -8px;
}

fieldset.rpnl-job-submission-field > label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    margin: 3px 6px 3px 0;
    color: #334155;
    font-size: 0.87rem;
    font-weight: 650;
    line-height: 1.35;
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
}

.rpnl-job-submission-field input[type="checkbox"],
.rpnl-job-submission-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--rpnl-blue, #1677ff);
}

/* Zgoda i wysłanie */

.rpnl-job-submission-consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 17px 18px;
    color: #334155;
    font-size: 0.86rem;
    line-height: 1.55;
    cursor: pointer;
    background: #f8fafc;
    border: 1px solid var(--rpnl-border, #dfe7ef);
    border-radius: 9px;
}

.rpnl-job-submission-consent input {
    flex: 0 0 auto;
    margin-top: 2px;
}

.rpnl-job-submission-actions {
    display: flex;
    justify-content: flex-end;
    padding: 2px 0 0;
}

.rpnl-job-submission-actions button {
    min-height: 50px;
    padding: 12px 24px;
    color: var(--rpnl-white, #ffffff);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    background: var(--rpnl-red, #e30613);
    border: 1px solid var(--rpnl-red, #e30613);
    border-radius: 8px;
    box-shadow: 0 7px 18px rgba(227, 6, 19, 0.2);
    transition:
        background-color 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
}

.rpnl-job-submission-actions button:hover {
    background: var(--rpnl-navy, #0b2d4d);
    border-color: var(--rpnl-navy, #0b2d4d);
    transform: translateY(-1px);
}

.rpnl-job-submission-actions button:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.28);
    outline-offset: 3px;
}

/* Pole antyspamowe niewidoczne dla użytkownika */

.rpnl-job-submission-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Tablet */

@media (max-width: 800px) {
    .rpnl-job-submission-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-job-submission-field--wide {
        grid-column: auto;
    }
}

/* Telefon */

@media (max-width: 700px) {
    .rpnl-job-submission {
        padding: 14px 0 45px;
    }

    .rpnl-job-submission-container {
        width: calc(100% - 24px);
    }

    .rpnl-job-submission-hero {
        width: calc(100% - 24px);
        padding: 22px 0 25px;
        margin-bottom: 20px;
        border-radius: 11px;
    }

    .rpnl-job-submission-hero .rpnl-job-submission-container {
        width: calc(100% - 36px);
    }

    .rpnl-job-submission-breadcrumbs {
        margin-bottom: 14px;
        font-size: 0.75rem;
    }

    .rpnl-job-submission-hero h1 {
        font-size: 1.8rem;
    }

    .rpnl-job-submission-hero .rpnl-job-submission-container > p:last-child {
        margin-top: 12px;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .rpnl-job-submission-form {
        gap: 16px;
    }

    .rpnl-job-submission-section {
        padding: 21px 18px 22px;
        border-radius: 10px;
    }

    .rpnl-job-submission-section h2 {
        padding-bottom: 13px;
        margin-bottom: 17px;
        font-size: 1.2rem;
    }

    .rpnl-job-submission-grid {
        gap: 15px;
    }

    fieldset.rpnl-job-submission-field {
        padding: 14px;
    }

    fieldset.rpnl-job-submission-field > label {
        display: flex;
        width: 100%;
        margin: 3px 0;
    }

    .rpnl-job-submission-message {
        padding: 21px 18px;
        border-radius: 10px;
    }

    .rpnl-job-submission-actions button {
        width: 100%;
    }
}
.rpnl-job-submission-consent a {
	color: var(--rpnl-blue, #1677ff);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rpnl-job-submission-consent a:hover,
.rpnl-job-submission-consent a:focus-visible {
	color: var(--rpnl-red, #e30613);
}
/* STRONA RADIO */

.rpnl-radio-page {
    background: #f5f8fc;
}

.rpnl-radio-page__container {
    width: min(1150px, calc(100% - 32px));
    margin: 0 auto;
}

.rpnl-radio-page__hero {
    position: relative;
    width: min(1150px, calc(100% - 32px));
    min-height: 400px;
    display: flex;
    align-items: center;
    margin: 24px auto 0;
    color: #fff;
    background-image: var(--rpnl-radio-hero-image);
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
}

.rpnl-radio-page__hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(11, 45, 77, 0.96) 0%, rgba(11, 45, 77, 0.78) 45%, rgba(11, 45, 77, 0.22) 100%),
        linear-gradient(180deg, rgba(11, 45, 77, 0.18), rgba(11, 45, 77, 0.72));
}

.rpnl-radio-page__hero .rpnl-radio-page__container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 34px;
    box-sizing: border-box;
}

.rpnl-radio-page__breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    font-weight: 700;
}

.rpnl-radio-page__breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.rpnl-radio-page__hero-content {
    max-width: 680px;
    padding: 20px 0 48px;
}

.rpnl-radio-page__live-badge {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    padding: 8px 13px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: rgba(227, 6, 19, 0.92);
    border-radius: 999px;
}

.rpnl-radio-page__live-badge span {
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.rpnl-radio-page__hero h1 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: 0;
}

.rpnl-radio-page__hero h1 span {
    color: #ff3b45;
}

.rpnl-radio-page__hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.14rem;
    line-height: 1.7;
}

.rpnl-radio-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
    padding: 34px 0 58px;
}

.rpnl-radio-page__content {
    display: grid;
    gap: 24px;
    min-width: 0;
}

.rpnl-radio-page__intro,
.rpnl-radio-page__split,
.rpnl-radio-page__approach,
.rpnl-radio-page__message,
.rpnl-radio-page__schedule,
.rpnl-radio-page__faq {
    padding: 30px;
    background: #fff;
    border: 1px solid var(--rpnl-border, #dbe4ee);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(11, 45, 77, 0.06);
}

.rpnl-radio-page__eyebrow {
    display: block;
    margin-bottom: 10px;
    color: #e30613;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rpnl-radio-page h2 {
    margin: 0 0 14px;
    color: #0b2d4d;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    line-height: 1.15;
}

.rpnl-radio-page h3 {
    margin: 0 0 9px;
    color: #0b2d4d;
    font-size: 1.12rem;
    line-height: 1.25;
}

.rpnl-radio-page p {
    color: #475569;
    line-height: 1.75;
}

.rpnl-radio-page__lead {
    color: #24364b;
    font-size: 1.08rem;
    font-weight: 600;
}

.rpnl-radio-page__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rpnl-radio-page__card {
    padding: 24px;
    color: #fff;
    border-radius: 8px;
}

.rpnl-radio-page__card span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
}

.rpnl-radio-page__card h3,
.rpnl-radio-page__card p {
    color: #fff;
}

.rpnl-radio-page__card p {
    margin-bottom: 0;
    opacity: 0.9;
}

.rpnl-radio-page__card--blue {
    background: #1677ff;
}

.rpnl-radio-page__card--red {
    background: #e30613;
}

.rpnl-radio-page__card--navy {
    background: #0b2d4d;
}

.rpnl-radio-page__split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: center;
}

.rpnl-radio-page__image-card {
    margin: 0;
}

.rpnl-radio-page__image-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.rpnl-radio-page__image-card figcaption {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.86rem;
    font-weight: 700;
}

.rpnl-radio-page__section-heading {
    max-width: 680px;
    margin-bottom: 22px;
}

.rpnl-radio-page__section-heading p {
    margin: 0;
}

.rpnl-radio-page__steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.rpnl-radio-page__steps div {
    padding: 20px;
    background: #f5f8fc;
    border: 1px solid var(--rpnl-border, #dbe4ee);
    border-radius: 8px;
}

.rpnl-radio-page__steps span {
    display: block;
    margin-bottom: 12px;
    color: #e30613;
    font-size: 0.9rem;
    font-weight: 900;
}

.rpnl-radio-page__steps p {
    margin-bottom: 0;
}

.rpnl-radio-page__message {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    color: #fff;
    background: #0b2d4d;
    border-color: #0b2d4d;
}

.rpnl-radio-page__message h2,
.rpnl-radio-page__message p,
.rpnl-radio-page__message li {
    color: #fff;
}

.rpnl-radio-page__message p {
    opacity: 0.9;
}

.rpnl-radio-page__message ul {
    margin: 0;
    padding-left: 20px;
}

.rpnl-radio-page__message li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.rpnl-radio-page__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.rpnl-radio-page__buttons a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 11px 17px;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    background: #e30613;
    border-radius: 7px;
}

.rpnl-radio-page__buttons a:nth-child(2) {
    color: #0b2d4d;
    background: #fff;
}

.rpnl-radio-page__schedule {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.rpnl-radio-page__soon {
    flex: 0 0 auto;
    padding: 10px 16px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    background: #1677ff;
    border-radius: 999px;
}

.rpnl-radio-page__faq details {
    padding: 18px 0;
    border-top: 1px solid var(--rpnl-border, #dbe4ee);
}

.rpnl-radio-page__faq details:last-child {
    padding-bottom: 0;
}

.rpnl-radio-page__faq summary {
    cursor: pointer;
    color: #0b2d4d;
    font-weight: 900;
}

.rpnl-radio-page__faq details p {
    margin: 12px 0 0;
}

@media (max-width: 1050px) {
    .rpnl-radio-page__layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .rpnl-radio-page__cards,
    .rpnl-radio-page__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rpnl-radio-page__message,
    .rpnl-radio-page__split {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-radio-page__image-card {
        max-width: 360px;
    }
}

@media (max-width: 760px) {
    .rpnl-radio-page__container {
        width: calc(100% - 24px);
    }

    .rpnl-radio-page__hero {
        width: calc(100% - 24px);
        min-height: 380px;
        margin-top: 18px;
        border-radius: 8px;
    }

    .rpnl-radio-page__hero .rpnl-radio-page__container {
        width: 100%;
        padding: 0 22px;
    }

    .rpnl-radio-page__breadcrumbs {
        margin-bottom: 28px;
    }

    .rpnl-radio-page__hero-content {
        padding-bottom: 34px;
    }

    .rpnl-radio-page__hero h1 {
        font-size: clamp(2.35rem, 13vw, 3.6rem);
    }

    .rpnl-radio-page__hero p {
        font-size: 1rem;
    }

    .rpnl-radio-page__layout {
        grid-template-columns: minmax(0, 1fr);
        padding: 24px 0 46px;
    }

    .rpnl-radio-page__intro,
    .rpnl-radio-page__split,
    .rpnl-radio-page__approach,
    .rpnl-radio-page__message,
    .rpnl-radio-page__schedule,
    .rpnl-radio-page__faq {
        padding: 22px;
    }

    .rpnl-radio-page__cards,
    .rpnl-radio-page__steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .rpnl-radio-page__schedule {
        display: block;
    }

    .rpnl-radio-page__soon {
        display: inline-flex;
        margin-top: 12px;
    }
}
/* =========================================================
   HOMEPAGE – ADVANCED ADS
   ========================================================= */

.rpnl-home-ad-slot {
    margin-bottom: 28px;
}

.rpnl-home-ad-slot img {
    display: block;
    max-width: 100%;
    height: auto;
}
/* =========================================================
   LIVEBAR — CAŁY PASEK KLIKALNY
   ========================================================= */

.rpnl-livebar {
    padding: 0;
}

.rpnl-livebar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 46px;
    padding: 10px 24px;
    color: #ffffff;
    text-decoration: none;
    border-radius: inherit;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.rpnl-livebar__inner:hover,
.rpnl-livebar__inner:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.rpnl-livebar__inner:focus-visible {
    outline: 3px solid rgba(22, 119, 255, 0.35);
    outline-offset: 3px;
}

.rpnl-livebar__link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 1100px) {

    .rpnl-livebar__inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 14px;
        padding: 12px 14px;
        text-align: center;
    }

    .rpnl-livebar__message {
        order: 3;
        flex-basis: 100%;
        font-size: 12px;
    }
}