/* ============================================================
   COMPONENTS — Navbar, Footer, Sidebar, Shared News Card
   Używany na każdej stronie serwisu.
   ============================================================ */

/* --- NAVBAR ----------------------------------------------- */
.navbar-logo {
    height: 36px;
}

/* --- SHARED BREADCRUMB ------------------------------------ */
.cat-breadcrumb {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.cat-breadcrumb__item {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #777;
}

.cat-breadcrumb__item + .cat-breadcrumb__item::before {
    content: '›';
    margin: 0 5px;
    color: #bbb;
    line-height: 1;
}

.cat-breadcrumb__link {
    color: #1b3380;
    text-decoration: none;
    transition: color 0.15s;
    font-weight: 400;
}

.cat-breadcrumb__link:hover {
    color: #606060;
    text-decoration: underline;
}

.cat-breadcrumb__item--active {
    color: #585858;
    font-weight: 400;
}

/* --- RADIO BELKA (SHARED) --------------------------------- */
.belkaradioNew {
    --belka-bg-desktop: url('/images/belka/pusty.png');
    --belka-bg-mobile: url('/images/belka/pusty-mobile.png');
    background-image: var(--belka-bg-desktop);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    background-color: #f6f6f6;
    width: 100%;
    min-height: 110px;
    height: 110px;
    max-height: 110px;
    overflow: hidden;
}

.belkaradioNew > .row,
.belkaradioNew > .row > a {
    min-height: 110px !important;
    height: 110px !important;
    max-height: 110px !important;
}

.belkaradioNew a {
    display: block;
    min-height: 110px !important;
    height: 110px !important;
    max-height: 110px !important;
}

#belkaRadio #info {
    display: flex;
    align-items: center;
    min-height: 110px;
    height: 110px;
    max-height: 110px;
}

#belkaRadio .info-radio .sluchajRCont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    margin-left: 100px;
    min-height: 110px;
    height: 110px;
    padding: 8px 0;
    line-height: 1.2;
}

#belkaRadio .bg-ico-belka {
    color: #bc1d17;
    background: transparent;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

#belkaRadio .sluchajR {
    margin: 0;
    margin-right: 8px;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: -0.1px;
    color: #274d92;
}

#belkaRadio .sluchajR em {
    color: #575353;
    font-size: 12px;
    font-weight: 700;
}

#belkaRadio.belkaRadioWieczorWyborczy .bg-ico-belka {
    color: #ffcc00;
}

#belkaRadio.belkaRadioWieczorWyborczy .sluchajR,
#belkaRadio.belkaRadioWieczorWyborczy .sluchajR em {
    color: #ffffff;
}

@keyframes blinking {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#belkaRadio .kropka {
    -webkit-animation: blinking 1.2s infinite;
    animation: blinking 1.2s infinite;
    border-radius: 50%;
    background-color: #41d129;
    display: block;
    width: 15px;
    height: 15px;
    margin-right: 6px;
}

#belkaRadio .liner {
    color: #636060;
    margin-left: auto;
    margin-top: 2px;
}

@media (max-width: 767px) {
    .belkaradioNew {
        background-image: var(--belka-bg-mobile);
        min-height: 100px;
        height: 100px;
        max-height: 100px;
        background-position: center left;
    }

    .belkaradioNew > .row,
    .belkaradioNew > .row > a,
    #belkaRadio #info,
    #belkaRadio .info-radio .sluchajRCont {
        min-height: 100px !important;
    }

    #belkaRadio .sluchajR {
        font-size: 16px;
        line-height: 20px;
        margin-right: 0;
    }

    #belkaRadio .info-radio .sluchajRCont,
    #belkaRadio.naZywo .info-radio .sluchajRCont {
        justify-content: center;
        margin-left: 150px !important;
        margin-top: 0;
        padding: 6px 5px 6px 0;
    }

    #belkaRadio .liner {
        display: none;
    }
}

@media (max-width: 321px) {
    #belkaRadio .sluchajR {
        font-size: 15px;
        line-height: 18px;
    }
}

.navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    box-shadow: none !important;
    position: relative;
}

.menu-button,
.menu-button::before,
.menu-button::after {
    display: block;
    background-color: #1b3380;
    position: absolute;
    height: 4px;
    width: 30px;
    border-radius: 2px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), margin-top 400ms cubic-bezier(0.23, 1, 0.32, 1), background-color 200ms ease;
}

.menu-button {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.menu-button::before {
    content: "";
    margin-top: -8px;
}

.menu-button::after {
    content: "";
    margin-top: 8px;
}

.navbar-toggler[aria-expanded="true"] .menu-button {
    background-color: rgba(255, 255, 255, 0);
}

.navbar-toggler[aria-expanded="true"] .menu-button::before {
    margin-top: 0;
    transform: rotate(405deg);
}

.navbar-toggler[aria-expanded="true"] .menu-button::after {
    margin-top: 0;
    transform: rotate(-405deg);
}

.navbar .nav-link {
    font-size: 0.95rem;
}

.nav-main-link {
    color: #1b3380 !important;
    font-size: 1.25rem !important;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
}

a.nav-main-link {
    padding-top: 0 !important;
    padding-bottom: 5px !important;
}

.nav-main-link:hover,
.nav-main-link:focus,
.nav-main-link:focus-visible,
.nav-main-link.show {
    color: #1b3380 !important;
    background-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.navbar-nav .nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav-parent {
    display: flex;
    align-items: center;
    width: 100%;
}

.mobile-submenu-toggle {
    margin-left: auto;
    margin-right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #1b3380;
    display: none;
    align-items: center;
    justify-content: center;
}

.regiony-heading-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.regiony-heading-row .regiony-facts-heading {
    margin: 0;
}

.weatherWrapper-blue.region-weather-now {
    display: block;
    background: #348bea;
    margin-bottom: 15px;
    height: 66px;
    padding: 8px 16px;
    width: 350px;
    flex: 0 0 350px;
}

.region-weather-now .weather-box-blue .boxHeaderWeather {
    float: left;
    width: 30%;
    font-size: 18px;
    line-height: 20px;
}

.region-weather-now .weather-box-blue .boxHeaderWeather .titleWeather {
    float: left;
    margin-top: 0;
}

.region-weather-now .weather-box-blue .boxHeaderWeather a {
    color: #fff !important;
    font-size: 24px !important;
    line-height: 26px !important;
    padding: 0;
    text-decoration: none;
    font-weight: 700;
}

.region-weather-now .weather-box-blue .weather-state {
    float: left;
    height: 50px;
    width: 40% !important;
    color: #fff;
    background-color: #348bea;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.region-weather-now .weather-box-blue .weather-temperature {
    float: right;
    width: 30% !important;
    color: #fff;
    height: 50px;
    letter-spacing: -2px;
    text-align: center;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    font-family: "Roboto", "Arial", sans-serif;
}

.region-weather-now .weather-box-blue .weather-temperature .wheater-deg {
    line-height: 50px;
    font-size: 50px;
    font-weight: 100;
    float: none;
}

.region-weather-now .weather-box-blue .weather-temperature .wheater-deg-desc {
    font-size: 50px;
    line-height: 1;
    float: none;
    margin-top: 0px;
    margin-left: 2px;
    font-weight: 100;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .regiony-heading-row {
        display: flex;
        align-items: flex-start;
    }

    .weatherWrapper-blue.region-weather-now {
        width: 320px;
        flex: 0 0 320px;
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .regiony-heading-row {
        display: block;
    }

    .weatherWrapper-blue.region-weather-now {
        width: 100%;
        flex: 0 0 auto;
        margin-top: 0.65rem;
    }
}

.mobile-submenu-toggle .bi {
    transition: transform 0.25s ease;
    font-size: 18px;
}

.nav-item.is-open > .mobile-nav-parent .mobile-submenu-toggle .bi {
    transform: rotate(180deg);
}

.nav-main-link::before {
    margin-left: 15px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 3px;
    background-color: #ff9600;
    transition: width 0.2s ease;
}
@media (min-width: 1200px) {
    .nav-item.dropdown .mobile-nav-parent>a::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }
}

.navbar-nav .nav-item:hover .nav-main-link::before {
    width: 85%;
}

.navbar .dropdown-item {
    color: #1b3380;
    font-size: 1rem;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: #fc0;
    color: #1b3380;
    outline: none;
}

.navbar .dropdown-toggle::after {
    border-color: #1b3380 transparent transparent;
}

.play-btn-hover:hover {
    background-color: var(--rmf-blue-hover) !important;
    color: #ffffff !important;
}

.navbar-nav .nav-item.dropdown {
    position: relative;
}

@media (min-width: 1200px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-item:hover {
        background-color: #ffcc00 !important;
        color: #003366 !important;
    }

    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        border-top: 2px solid #003366;
    }
}

.sluchaj-container {
    background-color: transparent !important;
    width: 280px;
    padding-right: 0 !important;
    justify-content: flex-end;
}

.navbar-mobile-radio {
    display: inline-flex;
    align-items: center;
    color: #1b3380;
    font-weight: 900;
    text-transform: uppercase;
}

.navbar-mobile-radio-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    display: block;
}

.navbar-mobile-radio-label {
    display: none;
    margin-left: 6px;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1;
}

.sluchajR {
    display: block;
    color: #1b3380;
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
  
    padding-right: 45px;
   
    cursor: pointer;
    transition: opacity 0.2s;
}
.sluchajTop {
    display: block;
    color: #1b3380;
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
  
    padding-right: 45px;
    background-image: url(/images/icons/play.gif);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: contain;
    cursor: pointer;
    transition: opacity 0.2s;
}

.sluchajR:hover {
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .sluchajR {
        font-size: 16px;
        padding-right: 35px;
    }
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        width: 100%;
        margin-top: 6px;
        background: #fc0;
        border-top: 1px solid rgba(27, 51, 128, 0.25);
    }

    .navbar-nav {
        width: 100%;
        margin: 0 !important;
        padding: 8px 0 12px;
    }

    .navbar-nav .nav-item {
        display: block;
        border-bottom: 1px solid rgba(27, 51, 128, 0.15);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: 0;
    }

    .nav-main-link {
        font-size: 24px !important;
        font-weight: 900 !important;
        text-decoration: none !important;
        width: calc(100% - 52px);
        padding: 10px 0 5px 12px !important;
    }

    .nav-main-link::before {
        display: none;
    }

    .mobile-submenu-toggle {
        display: inline-flex;
    }

    .navbar .dropdown-menu {
        display: none;
        position: static !important;
        float: none;
        width: 100%;
        margin: 0;
        padding-left: 12px;
        background: transparent;
        box-shadow: none !important;
    }

    .nav-item.is-open > .dropdown-menu {
        display: block;
    }

    .navbar .dropdown-item {
        padding-top: 10px !important;
        padding-bottom: 5px !important;
        font-size: 18px !important;
        line-height: 20px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        color: #1b3380;
    }

    .navbar .dropdown-toggle::after {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .navbar-mobile-radio {
        width: 28px;
        justify-content: center;
    }

    .navbar-mobile-radio-label {
        display: none;
    }
}

@media (min-width: 576px) and (max-width: 1199.98px) {
    .navbar-mobile-radio-label {
        display: inline;
    }
}

/* --- FOOTER ----------------------------------------------- */
.pageFooter .commonLogo {
    display: none;
}

.grayFooter {
    background-color: #2f2f2f;
    
}
.pageFooter{
    padding: 30px 0;
}

.lineFooter{
    padding-top:30px;
    border-top: 1px solid #565656;
}
.footerNavigation a:hover {
    text-decoration: none !important;
}

.footerNavigation {
    font-size: 16px;
    font-family: "Roboto", Arial, sans-serif !important;
}

.footerNavigation ul,
.footerNavigation li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footerNavigation .menuFooter ul li {
    display: block;
    float: none;
}

.footerNavigation .menuFooter .item {
    padding: 0;
}

.footerNavigation .line,
.footerNavigation .line3 {
    margin-left: -15px;
    margin-right: -15px;
}

.footerNavigation .line3 {
    margin-top: 12px;
}

.footerNavigation .row::before,
.footerNavigation .row::after {
    content: " ";
    display: table;
}

.footerNavigation .row::after {
    clear: both;
}

.footerNavigation [class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    float: left;
    width: 100%;
}

.footerNavigation a {
    display: inline-block;
}

.footerNavigation .footTitle a {
    display: block;
}

.footerNavigation a,
.footerNavigation .text {
    color: #cecece;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    min-width: 30%;
}

.footerNavigation .logo .text {
    display: none;
}

.footerNavigation .footTitle {
    color: #ecedef;
    font-weight: bold;
    margin: 12px 0 10px;
    display: block;
}

.footerNavigation .menuFooter ul li {
    margin: 0;
}

.footerNavigation .menuFooter .item {
    padding: 1px 0;
}

@media (max-width: 480px) {
    .footerNavigation .footTitle {
        margin: 5px 0;
    }
}

@media (min-width: 768px) {
    .footerNavigation .col-sm-6 {
        width: 50%;
    }

    .footerNavigation .col-sm-12 {
        width: 100%;
    }
}

@media (min-width: 992px) {
    .footerNavigation .col-md-5 {
        width: 41.66666667%;
    }

    .footerNavigation .col-md-6 {
        width: 50%;
    }

    .footerNavigation .col-md-7 {
        width: 58.33333333%;
    }

    .footerNavigation .col-md-12 {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    .footerNavigation .col-lg-5 {
        width: 41.66666667%;
    }

    .footerNavigation .col-lg-6 {
        width: 50%;
    }

    .footerNavigation .col-lg-7 {
        width: 58.33333333%;
    }

    .footerNavigation .col-lg-12 {
        width: 100%;
    }
}

@media (min-width: 1290px) {
    .footerNavigation .footer-foto,
    .footerNavigation .footer-filmy {
        margin-top: -20px;
    }
}

.footerNavigation .label {
    color: #ce3633;
    float: left;
    padding-right: 3px;
}

.footerNavigation .links {
    overflow: hidden;
}

.footerNavigation .links li {
    float: left;
}

.footerNavigation .links a {
    color: #6b6c63;
    text-decoration: none;
    padding: 0px 6px;
    background: url(footer_top_bottom_bg.png) right -89px no-repeat;
}

.footerNavigation .links .ilast a {
    background: none;
}

.footerNavigation .blocks {
    overflow: hidden;
    padding: 8px 23px;
}

.footerNavigation .block {
    clear: both;
    overflow: hidden;
    padding-bottom: 10px;
}

.footerNavigation .boxHeader {
    display: none;
}

.footerNavigation .boxBody {
    overflow: hidden;
}

.footerNavigation .bookmarkMenu .boxBody,
.footerNavigation .additionalMenu .boxBody,
.footerNavigation .navigationMenuMain .boxBody {
    border: 0;
    overflow: visible;
}

.footerNavigation .footerLinks {
    display: block !important;
    margin-bottom: 18px;
}

.footerNavigation .footerLinks .boxBegin {
    height: 5px;
    background: #f0f0f0;
}

.footerNavigation .footerLinks .boxBody {
    display: block;
    padding: 5px 2px;
    background: #f0f0f0;
    overflow: auto;
    border: none;
}

.footerNavigation .footerLinks .menu {
    float: right;
}

.footerNavigation .footerLinks .menuSpecial {
    float: right;
}

.footerNavigation .footerLinks li {
    display: block;
    float: left;
    padding: 0 5px;
    border-left: 1px solid #d6d8c3;
}

.footerNavigation .footerLinks .item {
    padding: 5px;
}

.footerNavigation .footerLinks .text {
    min-width: 100px;
    padding-top: 5px;
}

.footerNavigation .FooterLinksSpolecznosc .logo {
    background-image: url(/s/classic/2023/ikony@2x.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 35px;
    height: 35px;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}

.footerNavigation .FooterLinksSpolecznosc .el1 {
    background-position: 0% 14%;
}

.footerNavigation .FooterLinksSpolecznosc .el2 {
    background-position: 0% 21%;
}

.footerNavigation .FooterLinksSpolecznosc .el3 {
    background-image: url(/s/classic/2022/insta-logo-rmf24.png);
    background-size: cover;
}

.footerNavigation .FooterLinksSpolecznosc .el4 {
    background-position: 0% 35%;
}

.footerNavigation .FooterLinksSpolecznosc .el5 {
    background-position: 0% 98%;
}

.footerNavigation .FooterLinksSpolecznosc .footer-facebook {
    clear: both;
}

.footerNavigation .FooterLinksSpolecznosc .logo a {
    display: block;
    font-size: 11px;
    color: #0083c7;
    min-height: 35px;
}

.footerNavigation .footerLinks .boxEnd {
    height: 5px;
    background: #f0f0f0;
}

.footerNavigation .boxNavigationFooterLinks .boxBegin {
    height: 1px;
    background: #f0f0f0;
}

.footerNavigation .boxNavigationFooterLinks .boxBody {
    background-color: #fff;
    height: 70px;
}

.footerNavigation .boxNavigationFooterLinks .boxEnd {
    height: 1px;
    background: #f0f0f0;
}

.footerNavigation .boxNavigationFooterLinks {
    width: 300px;
    float: left;
}

.footerNavigation .boxNavigationFooterLinks .boxHeader {
    display: none;
}

.footerNavigation .boxNavigationFooterLinks .menu li {
    float: left;
    border-right: 1px solid #f0f0f0;
    margin: 5px 0px;
}

.footerNavigation .boxNavigationFooterLinks .menu li.ilast {
    border: none !important;
}

.footerNavigation .boxNavigationFooterLinks .menu .item {
    height: 60px;
    margin: 0px 9px;
    width: 54px;
    overflow: hidden;
    text-align: center;
    background-image: url(footer_top_bottom_bg.png);
    background-repeat: no-repeat;
}

.footerNavigation .boxNavigationFooterLinks .footerLinksNewsroom .item {
    background-position: 15px -73px;
}

.footerNavigation .boxNavigationFooterLinks .footerLinksAds .item {
    background-position: -87px -73px;
}

.footerNavigation .boxNavigationFooterLinks .footerLinksSitemap .item {
    background-position: -193px -73px;
}

.footerNavigation .boxNavigationFooterLinks .footerLinksContact .item {
    background-position: -325px -73px;
}

.footerNavigation .boxNavigationFooterLinks .menu a {
    display: block;
    padding-top: 30px;
}

.footerNavigation .boxSEOLinks,
.footerNavigation .boxFooterLinks {
    width: 650px;
    float: right;
}

.footerNavigation .boxSEOLinks .boxBegin,
.footerNavigation .boxFooterLinks .boxBegin {
    height: 1px;
    background: #f0f0f0;
}

.footerNavigation .boxSEOLinks .boxBody,
.footerNavigation .boxFooterLinks .boxBody {
    background-color: #f0f0f0;
    border-left: none !important;
    height: 70px;
}

.footerNavigation .boxSEOLinks .boxEnd,
.footerNavigation .boxFooterLinks .boxEnd {
    height: 1px;
    background: #f0f0f0;
}

@media (min-width: 992px) {
    .footerNavigation .AkcjeFooter,
    .footerNavigation .kontaktFooter {
        padding-left: 0px !important;
    }
}

@media (min-width: 1290px) {
    .footerNavigation .AkcjeFooter,
    .footerNavigation .kontaktFooter {
        padding-right: 50px !important;
    }
}

.footerCopyright {
    margin: 10px 10px 20px 10px;
    text-align: center;
    clear: both;
    line-height: 12px;
}

.footerCopyright div,
.footerCopyright p {
    display: inline;
}
.footerCopyright   a{color:#fff !important; text-decoration: none;}
.footerCopyright .footerLogoLink {
    padding: 0 3px 0 0;
}

.footerCopyright .footerLogoLink img {
    margin: 0 0 6px 0;
}

.commonCopyright,
.commonCopyright .boxBody {
    padding: 0;
}

.commonCopyright .boxBody p {
    color: #999a8c;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 20px;
}

.commonCopyright .boxBody p a {
    color: #ecedef;
}

@media (max-width: 767.98px) {
    .footerNavigation .hidden-xs {
        display: none !important;
    }
}

/* --- SHARED NEWS CARD ------------------------------------- */
.news-card {
    cursor: pointer;
    display: block;
}

@media (max-width: 479px) {
    .top-stories-section .news-card {
        border-bottom: 1px solid #ccc;
        
    }
}
.news-card.sponsored,
.cat-card.sponsored {
    
    background: #fff;
    overflow: visible;
    position: relative;
    top:-15px;
}

.article-related__card.sponsored {
    border: 1px solid #aaa;
    background: #fff;
    overflow: visible;
    padding: 0.75rem;
}

.news-card.sponsored,
.cat-card.sponsored {
    padding: 0 ;
    border-radius: 0;
}

.article-sponsored {
    display: block;
    font-size: 12px;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    color: #000;
    background: #fff;
    padding: 0;
    width: 190px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: 5px;
}

.article-sponsored--inline {
    display: inline-block;
    position: static;
    top: auto;
    width: auto;
    margin: 0 8px 4px 0;
    padding: 2px 6px;
    font-size: 10px;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid #aaa;
    font-weight: 500;
}

.article-sponsored--article-top,
.article-sponsored--article-bottom {
    top: -13px;
    width: 280px;
    font-size: 18px;
}

.dark-card .article-sponsored,
.bg-dark .article-sponsored {
    background: #20232a;
    color: #fff;
}

.latest-news-item.is-sponsored .news-title {
    display: block;
}

.latest-news-item.is-sponsored .article-sponsored--inline {
    margin-bottom: 6px;
}

.category-links li.is-sponsored .article-sponsored--inline {
    margin-bottom: 6px;
}

.img-wrapper {
    overflow: hidden;
    background-color: #f8f9fa;
}

.cat-card__img-wrap--sponsored,
.img-wrapper--sponsored {
    border: 1px solid #aaa;
    background: #fff;
    padding: 8px;
}

.cat-card.sponsored .cat-card__img-wrap {
    margin: 0;
}

.cat-card.sponsored {
    padding-bottom: 0;
}

.news-card--image-only.sponsored,
.cat-grid .cat-card.sponsored {
    padding-bottom: 0;
}

.news-card img {
    transition: transform 0.4s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-card h2,
.news-card h3,
.news-card h4 {
    transition: color 0.2s ease;
    line-height: 1.3;
}

.news-card:hover h2,
.news-card:hover h3,
.news-card:hover h4 {
    color: var(--rmf-blue) !important;
}

.col-md-4 > .news-card h3 {
    font-size: 1.125rem;
}

@media (max-width: 767.98px) {
    

    .news-card--image-only.sponsored,
    .cat-grid .cat-card.sponsored {
        padding: 0;
    }

    .article-sponsored {
        width: 180px;
         font-size: 10px;
    }

    .latest-news-item.is-sponsored .article-sponsored--inline {
        display: inline-block;
        margin-right: 0;
    }
}

@media (max-width: 479px) {
    

    .article-sponsored--inline {
        font-size: 9px;
        padding: 2px 5px;
    }
}

/* --- SIDEBAR: NAJNOWSZE ----------------------------------- */
.najnowsze-naglowek {
    color: #ffcc00;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.sidebar-timeline {
    position: relative;
}

.latest-news-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px;
}

.latest-news-item::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    bottom: 0;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.latest-news-item.last::after {
    display: none;
}

.latest-news-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: #ffc107;
    border-radius: 50%;
    z-index: 1;
}

.latest-news-item .time-stamp {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

.latest-news-item .news-title {
    color: #fff !important;
    text-decoration: none;
    font-size: 1.05rem;
    line-height: 1.4;
    transition: color 0.2s;
}

.latest-news-item .news-title:hover {
    color: #ffc107;
}

.latest-news-item .bi-play-circle {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* --- SIDEBAR: NAJPOPULARNIEJSZE --------------------------- */
.mrf-widget {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    padding: 20px;
   
}

.mrf-widget h2 {
    color: #ffcc00;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.mrf-article-item {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    border-bottom: 1px solid #3d3d3d;
    padding-bottom: 15px;
}

.mrf-article-item:last-child {
    border-bottom: none;
}

.mrf-date {
    color: #ffcc00;
    font-size: 12px;
    font-weight: normal;
    margin-bottom: 6px;
    display: block;
}

.mrf-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    display: block;
}

.mrf-article-item:hover .mrf-title {
    color: #ffcc00;
}

.mrf-empty {
    color: #888;
}

/* --- SIDEBAR: WEATHER ------------------------------------- */
#weatherWrapper {
    margin-bottom: 1rem;
}

#weatherWrapper .weatherWrapper {
    display: inline-block;
    background: #2f2f2f;
    margin-bottom: 0;
    padding: 15px;
    width: 100%;
}

#weatherWrapper .boxHeaderWeather {
    padding: 0 !important;
    font-weight: 700;
    font-size: 26px !important;
    line-height: 24px;
    text-transform: uppercase !important;
    float: left;
    width: 100%;
}

#weatherWrapper .boxHeaderWeather .titleWeather {
    float: left;
    margin-top: 10px;
}

#weatherWrapper .boxHeaderWeather .titleWeather a {
    color: #ffcc00;
    text-decoration: none;
}

#weatherWrapper .weather-box {
    position: relative;
}

#weatherWrapper .weather-box .weather-state,
#weatherWrapper .weather-box .weather-temperature {
    float: left;
    height: 120px;
    width: 50%;
    border-right: 1px solid #4f4f4f;
    background-color: #2f2f2f;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

#weatherWrapper .weather-box .weather-state {
    display: flex;
    align-items: center;
    justify-content: center;
}

#weatherWrapper .weather-box .weather-state img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

#weatherWrapper .weather-box .weather-temperature {
    color: #fff;
    font-family: "OpenSans", "Arial", "sans-serif";
    text-align: center;
    border-right: 0;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
}

#weatherWrapper .weather-box .weather-temperature .wheater-deg {
    line-height: 120px;
    font-size: 50px;
    font-weight: 300;
}

#weatherWrapper .weather-box .weather-temperature .wheater-deg-desc {
    font-size: 30px;
    line-height: 1;
    display: inline-block;
    margin-top: 30px;
    margin-left: 2px;
}

#weatherWrapper .weather-box .weather-city {
    float: left;
    width: 70%;
    height: 40px;
    line-height: 34px;
    font-size: 18px;
   
    font-weight: 300;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left;
    text-transform: uppercase;
}

#weatherWrapper .weather-box .zmienCity {
    float: right;
    color: #fff;
    text-align: right;
    font-weight: 300;
    letter-spacing: -1px;
    text-transform: uppercase;
    height: 40px;
    line-height: 34px;
    font-size: 18px;
    cursor: pointer;
}

#weatherWrapper .weather-box .weather-cities {
    display: none;
    position: absolute;
    top: 35px;
    right: 0;
    background: #2f2f2f;
    z-index: 2;
    width: 300px;
    padding: 10px;
    color: #fc0;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

#weatherWrapper .weather-box.weather-cities-active .weather-cities {
    display: block;
}

#weatherWrapper .weather-cities-left {
    float: left;
    width: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#weatherWrapper .weather-cities-right {
    float: right;
    width: 50%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#weatherWrapper .weather-box .weather-cities li {
    height: 22px;
    line-height: 22px;
    cursor: pointer;
    padding: 0 10px;
    white-space: nowrap;
}

#weatherWrapper .weather-box .weather-cities .weather-cities-left li {
    border-right: 1px solid #4f4f4f;
}

#weatherWrapper .weather-box .weather-cities li:hover,
#weatherWrapper .weather-box .weather-cities li.weather-city-active {
    background: #fff;
    color: #000;
}

#weatherWrapper .weather-meta {
    clear: both;
    color: #cfcfcf;
    font-size: 12px;
    line-height: 1.3;
    padding-top: 6px;
}

/* --- SIDEBAR: SHARED -------------------------------------- */
.sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--rmf-yellow);
    border-radius: 50%;
}

.badge-wide {
    max-width: 80%;
}

.promo-caption {
    font-size: 1rem;
}

.sidebar-ad-placeholder {
    --bs-bg-opacity: 1;
    height: 300px;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
   
    color: #6f6f6f;
    font-size: 0.875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.08em;
}

/* Po załadowaniu slotu reklamowego wyłączamy tło placeholders (`bg-light text-muted`). */
.ad-slot-loaded-bg-hidden {
    background-color: transparent !important;
    color: inherit !important;
}

#RMF_24_podstrony_top_bill:not(.RMF_24_podstrony_top_bill-loaded-w2g)::after, 
#RMF_24_sg_top_bill:not(.RMF_24_sg_top_bill-loaded-w2g)::after, 
#RMF_24_sg_bill:not(.RMF_24_sg_bill-loaded-w2g)::after, 
#RMF_24_podstrony_top_bill:not(.RMF_24_podstrony_top_bill-loaded-w2g)::after, 
#RMF_24_podstrony_prawy_rec:not(.RMF_24_podstrony_prawy_rec-loaded-w2g)::after, 
#RMF_24_podstrony_bill_mobile:not(.RMF_24_podstrony_bill_mobile-loaded-w2g)::after, 
#RMF_24_sg_navibox_rec:not(.RMF_24_sg_navibox_rec-loaded-w2g)::after,
#RMF_24_podstrony_navibox_rec:not(.RMF_24_podstrony_navibox_rec-loaded-w2g)::after,
#RMF_24_podstrony_navibox_rec:not(.RMF_24_podstrony_navibox_rec-loaded-w2g)::after,
#RMF_24_sg_bill_mobile:not(.RMF_24_sg_bill_mobile-loaded-w2g)::after {
    content: 'Reklama';
    text-transform: uppercase;
    color: silver;
    font-size: .8em;
    letter-spacing: .6em;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    margin-top: -7px;
}
iframe[name="google_conversion_frame"], #RMF_24_interstitial_mobile, #RMF_24_interstitial_mobile_2 {
    height: 0 !important;
    width: 0 !important;
    line-height: 0 !important;
    font-size: 0 !important;
   
    float: left;
}