/**
 * RPNL CSS MODULE: SIDEBAR
 *
 * Globalny sidebar, pogoda, ankiety, newsletter, popularne wpisy, social media i radio.
 *
 * Źródło: main.css z motywu RPNL v1.5.5.
 * Moduł nie jest jeszcze ładowany przez functions.php.
 */

/* =========================================================
   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);
}

/* =========================================================
   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;
    }
}

/* =========================================================
   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;
}
