:root {
    --fn-red: #ef2028;
    --fn-red-dark: #d71920;
    --fn-black: #151515;
    --fn-dark: #212121;
    --fn-text: #333;
    --fn-muted: #8a8a8a;
    --fn-line: #e7e7e7;
    --fn-soft: #f5f5f5;
    --fn-white: #fff;
    --fn-orange: #dd9933;
    --fn-max: 1170px;
    --fn-radius: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #fff;
    color: var(--fn-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

body.fn-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--fn-red);
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.fn-container {
    width: min(var(--fn-max), calc(100% - 40px));
    margin-inline: auto;
}

.fn-skip {
    position: fixed;
    top: -60px;
    left: 20px;
    z-index: 99999;
    padding: 10px 16px;
    background: #000;
    color: #fff;
}

.fn-skip:focus {
    top: 10px;
}

.fn-status {
    max-width: var(--fn-max);
    margin: 70px auto;
    padding: 30px;
    text-align: center;
}

.fn-error {
    padding: 30px;
    border: 1px solid #f1bcbc;
    background: #fff4f4;
    color: #9b1717;
}

/* Top bar */

.fn-topbar {
    min-height: 34px;
    background: #212121;
    color: #bbb;
    font-size: 11px;
}

.fn-topbar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fn-top-links {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.fn-top-links a {
    white-space: nowrap;
    transition: color .2s;
}

.fn-top-links a:hover {
    color: #fff;
}

.fn-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.fn-social {
    display: flex;
    gap: 8px;
}

.fn-social a {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: #f5f5f5;
    font-size: 12px;
}

/* Masthead */

.fn-masthead {
    background: #fff;
}

.fn-masthead-inner {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.fn-logo {
    width: 270px;
    flex: 0 0 270px;
}

.fn-logo img {
    height: auto;
}

.fn-header-ad {
    display: block;
    width: min(728px, 66%);
}

.fn-header-ad img {
    width: 100%;
    height: auto;
}

/* Main navigation */

.fn-nav-wrap {
    position: relative;
    z-index: 80;
    background: #fff;
    border-top: 1px solid var(--fn-line);
    border-bottom: 3px solid var(--fn-black);
}

.fn-nav-inner {
    min-height: 50px;
    display: flex;
    align-items: center;
}

.fn-main-nav {
    display: flex;
    min-width: 0;
    flex: 1;
}

.fn-main-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #292929;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s, background .2s;
}

.fn-main-nav a:hover,
.fn-main-nav a.is-active {
    background: var(--fn-red);
    color: #fff;
}

.fn-search-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    font-size: 25px;
    color: #222;
}

.fn-search-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 20px 0;
    background: #fff;
    border-bottom: 1px solid var(--fn-line);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.fn-search-panel.is-open {
    display: block;
}

.fn-search-panel form .fn-container {
    display: flex;
}

.fn-search-panel input {
    width: 100%;
    height: 46px;
    padding: 0 15px;
    border: 1px solid #ddd;
    outline: 0;
}

.fn-search-panel button {
    border: 0;
    padding: 0 25px;
    background: var(--fn-red);
    color: #fff;
    font-weight: 700;
}

.fn-mobile-toggle,
.fn-mobile-drawer,
.fn-drawer-overlay {
    display: none;
}

/* Newsflash */

.fn-newsflash {
    padding: 22px 0 16px;
    background: #fff;
}

.fn-newsflash-inner {
    min-height: 40px;
    display: flex;
    align-items: stretch;
    border: 1px solid var(--fn-line);
}

.fn-newsflash strong {
    min-width: 120px;
    display: grid;
    place-items: center;
    padding: 0 20px;
    background: var(--fn-red);
    color: #fff;
    font-size: 12px;
    letter-spacing: .2px;
}

.fn-ticker-window {
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.fn-ticker-track {
    height: 40px;
    animation: fnTicker 15s infinite;
}

.fn-ticker-track a {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    color: #333;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes fnTicker {
    0%, 17% { transform: translateY(0); }
    20%, 37% { transform: translateY(-40px); }
    40%, 57% { transform: translateY(-80px); }
    60%, 77% { transform: translateY(-120px); }
    80%, 97% { transform: translateY(-160px); }
    100% { transform: translateY(0); }
}

/* Main page layout */

.fn-primary-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 30px;
    padding-top: 10px;
    padding-bottom: 40px;
}

.fn-main-column,
.fn-sidebar,
.fn-lower-main,
.fn-lower-side {
    min-width: 0;
}

/* Slider */

.fn-slider {
    margin-bottom: 35px;
}

.fn-slider-stage {
    position: relative;
    height: 430px;
    overflow: hidden;
    background: #111;
}

.fn-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}

.fn-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.fn-slide > a,
.fn-slide img {
    width: 100%;
    height: 100%;
}

.fn-slide img {
    object-fit: cover;
}

.fn-slide-overlay,
.fn-event-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.02) 20%,
        rgba(0,0,0,.74) 100%
    );
}

.fn-slide-copy {
    position: absolute;
    z-index: 3;
    left: 34px;
    right: 34px;
    bottom: 30px;
    color: #fff;
}

.fn-category {
    display: inline-block;
    padding: 4px 8px;
    background: var(--fn-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.fn-slide-copy h1 {
    max-width: 720px;
    margin: 10px 0 7px;
    color: #fff;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,.25);
}

.fn-slide-copy .fn-meta {
    color: rgba(255,255,255,.85);
}

.fn-slider-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 38px;
    height: 52px;
    transform: translateY(-50%);
    border: 0;
    background: rgba(0,0,0,.52);
    color: #fff;
    font-size: 31px;
    opacity: .25;
    transition: opacity .2s;
}

.fn-slider-stage:hover .fn-slider-arrow {
    opacity: 1;
}

.fn-prev {
    left: 0;
}

.fn-next {
    right: 0;
}

.fn-slider-thumbs {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 2px;
    margin-top: 2px;
    background: #fff;
}

.fn-slider-thumbs button {
    position: relative;
    height: 62px;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #ddd;
    opacity: .55;
}

.fn-slider-thumbs button.is-active {
    opacity: 1;
}

.fn-slider-thumbs button.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--fn-red);
}

.fn-slider-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Module headings */

.fn-module {
    margin-bottom: 38px;
}

.fn-heading {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #222;
}

.fn-heading h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 8px 16px 8px 0;
    color: #222;
    background: #fff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}

.fn-heading h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 55px;
    height: 2px;
    background: var(--fn-red);
}

.fn-heading-orange {
    border-color: var(--fn-orange);
}

.fn-heading-orange h2::after {
    background: var(--fn-orange);
}

.fn-heading-5 {
    border: 0;
}

.fn-heading-5 h2 {
    padding: 8px 13px;
    background: #222;
    color: #fff;
}

.fn-heading-5 h2::after {
    display: none;
}

.fn-heading-5::after {
    content: "";
    height: 3px;
    flex: 1;
    background: #222;
}

/* Metadata */

.fn-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: var(--fn-muted);
    font-size: 11px;
}

.fn-meta i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #bbb;
}

/* Lead stories */

.fn-block5-grid {
    display: grid;
    gap: 28px;
}

.fn-lead-story {
    display: grid;
    grid-template-columns: 47% 1fr;
    gap: 24px;
}

.fn-lead-image {
    position: relative;
    display: block;
    min-height: 210px;
    overflow: hidden;
    background: #eee;
}

.fn-lead-image img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    transition: transform .3s ease;
}

.fn-lead-image:hover img,
.fn-card-image:hover img,
.fn-small-image:hover img {
    transform: scale(1.025);
}

.fn-lead-image .fn-category,
.fn-card-image .fn-category {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.fn-lead-copy h3 {
    margin: 0 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -.25px;
}

.fn-lead-copy p {
    margin: 13px 0 0;
    color: #666;
    font-size: 13px;
    line-height: 1.7;
}

/* Cards */

.fn-block22-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.fn-four-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 22px;
}

.fn-card-image {
    position: relative;
    display: block;
    height: 160px;
    overflow: hidden;
    background: #eee;
}

.fn-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}

.fn-card h3 {
    margin: 10px 0 7px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.3;
}

/* Politics / Block 19 */

.fn-block19 {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 25px;
}

.fn-block19-leads {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.fn-block19-leads .fn-card-image {
    height: 180px;
}

.fn-block19-leads .fn-card h3 {
    font-size: 18px;
}

/* Small posts */

.fn-story-list {
    display: grid;
    gap: 14px;
}

.fn-small-story {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.fn-small-image {
    width: 105px;
    height: 76px;
    flex: 0 0 105px;
    overflow: hidden;
    background: #eee;
}

.fn-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.fn-small-copy {
    min-width: 0;
    flex: 1;
}

.fn-small-copy h4 {
    margin: 0 0 5px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    line-height: 1.35;
}

.fn-small-copy time {
    color: #999;
    font-size: 10px;
}

.fn-rank {
    width: 27px;
    flex: 0 0 27px;
    padding-top: 2px;
    color: #bcbcbc;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

/* Crime */

.fn-block1 {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 25px;
}

.fn-block1 > .fn-lead-story {
    display: block;
}

.fn-block1 > .fn-lead-story .fn-lead-image {
    min-height: 245px;
}

.fn-block1 > .fn-lead-story .fn-lead-copy {
    margin-top: 15px;
}

.fn-block1 > .fn-lead-story .fn-lead-copy h3 {
    font-size: 23px;
}

.fn-two-column-list {
    align-content: start;
}

.fn-pagination-buttons {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    margin-top: 15px;
}

.fn-pagination-buttons button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    color: #777;
}

.fn-pagination-buttons button:hover {
    border-color: var(--fn-red);
    color: var(--fn-red);
}

/* Block 9 */

.fn-block9 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fn-compact-story {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 13px;
}

.fn-compact-image {
    height: 86px;
    overflow: hidden;
    background: #eee;
}

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

.fn-compact-story h3 {
    margin: 0 0 7px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 15px;
    line-height: 1.35;
}

/* Sidebar tabs */

.fn-sidebar {
    position: relative;
}

.fn-tab-widget {
    margin-bottom: 32px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.fn-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #e5e5e5;
}

.fn-tabs button {
    min-height: 43px;
    padding: 0 6px;
    border: 0;
    border-right: 1px solid #e5e5e5;
    background: #f7f7f7;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.fn-tabs button:last-child {
    border-right: 0;
}

.fn-tabs button.is-active {
    background: #fff;
    color: #222;
    box-shadow: inset 0 3px 0 var(--fn-red);
}

.fn-tab-panel {
    display: none;
    padding: 18px;
}

.fn-tab-panel.is-active {
    display: grid;
    gap: 16px;
}

.fn-tab-panel .fn-small-image {
    width: 82px;
    height: 60px;
    flex-basis: 82px;
}

.fn-tab-panel .fn-small-copy h4 {
    font-size: 13px;
}

.fn-sidebar-module .fn-heading {
    margin-bottom: 17px;
}

.fn-sidebar-module .fn-heading h2 {
    font-size: 15px;
}

.fn-sidebar .fn-block9 {
    grid-template-columns: 1fr;
}

.fn-sidebar .fn-compact-story {
    grid-template-columns: 100px 1fr;
}

.fn-sidebar .fn-compact-image {
    height: 72px;
}

/* Scandal carousel */

.fn-scandal-carousel {
    position: relative;
    min-height: 325px;
    overflow: hidden;
    background: #111;
}

.fn-scandal {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
}

.fn-scandal.is-active {
    opacity: 1;
    visibility: visible;
}

.fn-scandal > a,
.fn-scandal img {
    width: 100%;
    height: 100%;
}

.fn-scandal img {
    object-fit: cover;
}

.fn-scandal > a > div {
    position: absolute;
    z-index: 3;
    left: 20px;
    right: 20px;
    bottom: 36px;
}

.fn-scandal h3 {
    margin: 8px 0 0;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 21px;
    line-height: 1.25;
}

.fn-carousel-dots {
    position: absolute;
    z-index: 6;
    left: 18px;
    bottom: 15px;
    display: flex;
    gap: 6px;
}

.fn-carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}

.fn-carousel-dots button.is-active {
    background: #fff;
}

/* Ads */

.fn-ad {
    text-align: center;
}

.fn-ad img {
    width: auto;
    max-width: 100%;
    margin: auto;
}

.fn-vertical-ad {
    margin: 30px auto;
}

.fn-vertical-ad img {
    max-height: 620px;
    object-fit: contain;
}

/* Events hero */

.fn-events-band {
    margin: 5px 0 40px;
    padding: 40px 0;
    background: #212121;
}

.fn-events-grid {
    height: 480px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
}

.fn-event-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #111;
}

.fn-event-1 {
    grid-row: 1 / 3;
}

.fn-event-card > a,
.fn-event-card img {
    width: 100%;
    height: 100%;
}

.fn-event-card img {
    object-fit: cover;
    transition: transform .4s ease;
}

.fn-event-card:hover img {
    transform: scale(1.03);
}

.fn-event-copy {
    position: absolute;
    z-index: 2;
    left: 20px;
    right: 20px;
    bottom: 18px;
    color: #fff;
}

.fn-event-copy h3 {
    margin: 8px 0 0;
    font-family: Georgia, serif;
    font-size: 17px;
    line-height: 1.25;
}

.fn-event-1 .fn-event-copy {
    left: 28px;
    right: 28px;
    bottom: 27px;
}

.fn-event-1 .fn-event-copy h3 {
    font-size: 28px;
}

/* Lower section */

.fn-lower-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 30px;
    padding-bottom: 35px;
}

.fn-lifestyle {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 25px;
}

.fn-lifestyle > .fn-lead-story {
    display: block;
}

.fn-lifestyle > .fn-lead-story .fn-lead-copy {
    margin-top: 15px;
}

.fn-lower-side .fn-block9 {
    grid-template-columns: 1fr;
}

.fn-load-more {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Horizontal ad */

.fn-horizontal-ad-band {
    margin-top: 5px;
    padding: 40px 0;
    background: #f5f5f5;
}

.fn-horizontal-ad img {
    max-height: 90px;
    object-fit: contain;
}

/* Footer */

.fn-footer {
    background: #191919;
    color: #aaa;
}

.fn-footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 50px;
    padding-top: 55px;
    padding-bottom: 45px;
}

.fn-footer-brand img {
    width: 220px;
    margin-bottom: 20px;
}

.fn-footer-brand p {
    max-width: 440px;
    color: #999;
}

.fn-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
}

.fn-footer nav {
    display: grid;
    gap: 7px;
}

.fn-footer nav a {
    color: #999;
    font-size: 12px;
}

.fn-footer nav a:hover {
    color: #fff;
}

.fn-footer-bottom {
    border-top: 1px solid #303030;
    padding: 18px 0;
    color: #777;
    font-size: 11px;
}

.fn-footer-bottom p {
    margin: 0;
}

.fn-footer-bottom a {
    color: #aaa;
}

.fn-scroll-top {
    position: fixed;
    z-index: 100;
    right: 24px;
    bottom: 24px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 2px;
    background: rgba(0,0,0,.7);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
}

.fn-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.fn-image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #ececec;
}

/* Tablet */

@media (max-width: 1050px) {
    .fn-top-links a:nth-child(n+6) {
        display: none;
    }

    .fn-main-nav a {
        padding-inline: 8px;
        font-size: 11px;
    }

    .fn-slide-copy h1 {
        font-size: 30px;
    }

    .fn-slider-stage {
        height: 390px;
    }

    .fn-block19 {
        grid-template-columns: 1fr;
    }
}

/* Mobile navigation and content */

@media (max-width: 820px) {
    .fn-container {
        width: min(100% - 30px, var(--fn-max));
    }

    .fn-topbar {
        display: none;
    }

    .fn-masthead-inner {
        min-height: 88px;
        justify-content: center;
        padding: 14px 0;
    }

    .fn-logo {
        width: 195px;
        flex-basis: 195px;
    }

    .fn-header-ad {
        display: none;
    }

    .fn-nav-inner {
        min-height: 48px;
        justify-content: space-between;
    }

    .fn-main-nav {
        display: none;
    }

    .fn-mobile-toggle {
        width: 44px;
        height: 44px;
        display: grid;
        align-content: center;
        gap: 5px;
        padding: 10px;
        border: 0;
        background: transparent;
    }

    .fn-mobile-toggle span {
        width: 22px;
        height: 2px;
        display: block;
        background: #222;
    }

    .fn-mobile-drawer {
        position: fixed;
        z-index: 1001;
        top: 0;
        bottom: 0;
        left: 0;
        width: min(330px, 86vw);
        display: block;
        overflow-y: auto;
        padding-bottom: 30px;
        transform: translateX(-105%);
        background: #fff;
        transition: transform .28s ease;
    }

    .fn-mobile-drawer.is-open {
        transform: translateX(0);
    }

    .fn-drawer-overlay {
        position: fixed;
        z-index: 1000;
        inset: 0;
        display: block;
        background: rgba(0,0,0,.55);
        opacity: 0;
        visibility: hidden;
        transition: .25s;
    }

    .fn-drawer-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    .fn-mobile-drawer-head {
        min-height: 90px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 20px;
        border-bottom: 1px solid var(--fn-line);
    }

    .fn-mobile-drawer-head img {
        width: 170px;
    }

    .fn-mobile-close {
        border: 0;
        background: none;
        font-size: 32px;
        font-weight: 300;
    }

    .fn-mobile-drawer nav {
        display: grid;
    }

    .fn-mobile-drawer nav a {
        padding: 13px 20px;
        border-bottom: 1px solid #eee;
        color: #333;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .fn-newsflash {
        padding-top: 15px;
    }

    .fn-newsflash strong {
        min-width: 94px;
        padding-inline: 11px;
        font-size: 10px;
    }

    .fn-primary-layout,
    .fn-lower-layout {
        grid-template-columns: 1fr;
    }

    .fn-slider-stage {
        height: 380px;
    }

    .fn-slider-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .fn-slider-thumbs button:nth-child(n+5) {
        display: none;
    }

    .fn-sidebar {
        padding-top: 10px;
    }

    .fn-events-grid {
        height: 600px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 2fr 1fr 1fr;
    }

    .fn-event-1 {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .fn-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .fn-footer-brand {
        grid-column: 1 / 3;
    }
}

@media (max-width: 600px) {
    .fn-container {
        width: min(100% - 24px, var(--fn-max));
    }

    .fn-masthead-inner {
        min-height: 78px;
    }

    .fn-logo {
        width: 170px;
        flex-basis: 170px;
    }

    .fn-newsflash {
        padding-bottom: 10px;
    }

    .fn-newsflash-inner {
        min-height: 38px;
    }

    .fn-newsflash strong {
        min-width: 82px;
        font-size: 9px;
    }

    .fn-ticker-track,
    .fn-ticker-track a {
        height: 38px;
    }

    .fn-ticker-track a {
        padding-inline: 12px;
        font-size: 11px;
    }

    @keyframes fnTicker {
        0%, 17% { transform: translateY(0); }
        20%, 37% { transform: translateY(-38px); }
        40%, 57% { transform: translateY(-76px); }
        60%, 77% { transform: translateY(-114px); }
        80%, 97% { transform: translateY(-152px); }
        100% { transform: translateY(0); }
    }

    .fn-primary-layout {
        padding-bottom: 25px;
    }

    .fn-slider-stage {
        height: 315px;
    }

    .fn-slide-copy {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .fn-slide-copy h1 {
        margin-top: 7px;
        font-size: 25px;
    }

    .fn-slider-thumbs {
        display: none;
    }

    .fn-slider-arrow {
        width: 32px;
        height: 45px;
        font-size: 25px;
    }

    .fn-module {
        margin-bottom: 31px;
    }

    .fn-heading {
        margin-bottom: 16px;
    }

    .fn-heading h2 {
        font-size: 16px;
    }

    .fn-lead-story,
    .fn-block1,
    .fn-lifestyle {
        grid-template-columns: 1fr;
    }

    .fn-lead-image,
    .fn-lead-image img {
        min-height: 230px;
    }

    .fn-lead-copy h3,
    .fn-block1 > .fn-lead-story .fn-lead-copy h3 {
        font-size: 21px;
    }

    .fn-block22-grid,
    .fn-block19-leads,
    .fn-four-grid,
    .fn-block9 {
        grid-template-columns: 1fr 1fr;
    }

    .fn-block22-grid .fn-card-image,
    .fn-four-grid .fn-card-image {
        height: 145px;
    }

    .fn-block19 {
        gap: 22px;
    }

    .fn-block19-leads .fn-card-image {
        height: 160px;
    }

    .fn-two-column-list {
        margin-top: 5px;
    }

    .fn-events-band {
        padding: 25px 0;
    }

    .fn-events-grid {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .fn-event-card {
        height: 190px;
    }

    .fn-event-1 {
        height: 300px;
        grid-column: 1 / 3;
    }

    .fn-event-1 .fn-event-copy h3 {
        font-size: 24px;
    }

    .fn-event-copy h3 {
        font-size: 15px;
    }

    .fn-footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fn-footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 430px) {
    .fn-slider-stage {
        height: 285px;
    }

    .fn-slide-copy h1 {
        font-size: 22px;
    }

    .fn-block22-grid,
    .fn-block19-leads,
    .fn-four-grid,
    .fn-block9 {
        grid-template-columns: 1fr;
    }

    .fn-card-image,
    .fn-block22-grid .fn-card-image,
    .fn-four-grid .fn-card-image,
    .fn-block19-leads .fn-card-image {
        height: 215px;
    }

    .fn-small-image {
        width: 95px;
        flex-basis: 95px;
        height: 70px;
    }

    .fn-compact-story,
    .fn-sidebar .fn-compact-story {
        grid-template-columns: 100px 1fr;
    }

    .fn-events-grid {
        grid-template-columns: 1fr;
    }

    .fn-event-1 {
        grid-column: auto;
    }

    .fn-event-card {
        height: 230px;
    }

    .fn-event-1 {
        height: 290px;
    }
}


/* ======================================================
   FREELANEWS LIVE PARITY — CANVAS / STICKY / FOOTER
   ====================================================== */

html {
    background: #ededed;
}

body {
    width: min(1220px, 100%);
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0,0,0,.02);
}


/* Keep full-width bands within the centred site canvas */

.fn-topbar,
.fn-masthead,
.fn-nav-wrap,
.fn-newsflash,
.fn-events-band,
.fn-horizontal-ad-band,
.fn-live-footer {
    width: 100%;
}


/* JNews-like sectional sticky behaviour */

@media (min-width: 821px) {

    .fn-primary-layout {
        align-items: start;
    }

    .fn-primary-layout > .fn-sidebar {
        position: sticky;
        top: 20px;
        align-self: start;
    }

    .fn-lower-layout {
        align-items: start;
    }

    .fn-lower-layout > .fn-lower-side {
        position: sticky;
        top: 20px;
        align-self: start;
    }

}


/* Remove obsolete simplified footer presentation */

.fn-footer {
    display: none !important;
}


/* Live footer */

.fn-live-footer {
    background: #202020;
    color: #c2c2c2;
}

.fn-live-footer-primary {
    padding: 58px 0 38px;
}

.fn-live-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(0, 1.15fr)
        minmax(0, 1fr)
        250px;
    gap: 28px;
    align-items: start;
}

.fn-footer-logo {
    width: 185px;
    height: auto;
    margin: 0 0 20px;
}

.fn-footer-about p {
    max-width: 300px;
    margin: 0;
    color: #bcbcbc;
    font-size: 12px;
    line-height: 1.7;
}

.fn-footer-signature {
    width: 135px;
    height: auto;
    margin: 18px 0 16px;
}

.fn-footer-socials {
    display: flex;
    align-items: center;
    gap: 13px;
}

.fn-footer-socials a {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    color: #aaa;
    font-size: 14px;
    transition: color .2s;
}

.fn-footer-socials a:hover {
    color: #fff;
}

.fn-footer-title {
    position: relative;
    margin: 0 0 20px;
    padding-bottom: 8px;
    color: #ff3540;
    font-size: 13px;
    font-weight: 700;
}

.fn-footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--fn-red);
}


/* Editor's Pick */

.fn-footer-editor-list {
    display: grid;
    gap: 14px;
}

.fn-footer-editor-lead {
    margin-bottom: 2px;
}

.fn-footer-editor-image {
    display: block;
    height: 170px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #333;
}

.fn-footer-editor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-footer-editor-copy h3 {
    margin: 0 0 6px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.3;
}

.fn-footer-editor-copy time,
.fn-footer-editor-small time {
    color: #777;
    font-size: 9px;
    text-transform: uppercase;
}

.fn-footer-editor-small {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 11px;
    align-items: start;
    padding-top: 12px;
    border-top: 1px solid #444;
}

.fn-footer-editor-small > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f2f2f2;
    color: #999;
    font-size: 11px;
    font-weight: 700;
}

.fn-footer-editor-small h4 {
    margin: 0 0 4px;
    color: #eee;
    font-size: 11px;
    line-height: 1.35;
}


/* Just Published */

.fn-footer-latest-list {
    display: grid;
    gap: 12px;
}

.fn-footer-story {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 11px;
    align-items: start;
}

.fn-footer-story-image {
    height: 56px;
    overflow: hidden;
    background: #333;
}

.fn-footer-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-footer-story h4 {
    margin: 0 0 5px;
    color: #eee;
    font-size: 11px;
    line-height: 1.35;
}

.fn-footer-story time {
    color: #777;
    font-size: 8px;
    text-transform: uppercase;
}

.fn-footer-search {
    display: grid;
    grid-template-columns: 1fr 38px;
    margin-top: 20px;
}

.fn-footer-search input {
    min-width: 0;
    height: 36px;
    padding: 0 11px;
    border: 0;
    outline: 0;
    background: #444;
    color: #fff;
    font-size: 11px;
}

.fn-footer-search input::placeholder {
    color: #ccc;
}

.fn-footer-search button {
    border: 0;
    background: var(--fn-red);
    color: #fff;
    font-size: 18px;
}


/* Footer advert */

.fn-footer-ad-column {
    padding-top: 30px;
}

.fn-footer-ad-column img {
    width: 250px;
    max-width: 100%;
    height: auto;
}


/* Bottom footer navigation */

.fn-live-footer-secondary {
    margin-top: 2px;
    border-top: 1px solid #444;
}

.fn-live-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.fn-live-footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 10px;
}

.fn-live-footer-bottom p a {
    color: #bbb;
}

.fn-live-footer-bottom nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
}

.fn-live-footer-bottom nav a {
    color: #ddd;
    font-size: 10px;
}

.fn-live-footer-bottom nav a:hover {
    color: var(--fn-red);
}

.fn-footer-empty {
    color: #888;
    font-size: 11px;
}


/* Prevent excessive white space before footer */

.fn-horizontal-ad-band {
    margin-top: 0;
}


/* Tablet */

@media (max-width: 1050px) {

    .fn-live-footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .fn-footer-ad-column {
        grid-column: 1 / -1;
        padding-top: 5px;
        text-align: center;
    }

    .fn-footer-ad-column img {
        margin: auto;
    }

}


/* Mobile footer */

@media (max-width: 820px) {

    body {
        width: 100%;
        box-shadow: none;
    }

    .fn-live-footer-primary {
        padding-top: 42px;
    }

    .fn-live-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 26px;
    }

    .fn-footer-about {
        grid-column: 1 / -1;
    }

    .fn-footer-about p {
        max-width: 520px;
    }

    .fn-footer-ad-column {
        grid-column: 1 / -1;
    }

    .fn-live-footer-bottom {
        padding-top: 18px;
        padding-bottom: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .fn-live-footer-bottom nav {
        justify-content: flex-start;
    }

}

@media (max-width: 560px) {

    .fn-live-footer-grid {
        grid-template-columns: 1fr;
    }

    .fn-footer-about,
    .fn-footer-ad-column {
        grid-column: auto;
    }

    .fn-footer-editor-image {
        height: 210px;
    }

}


/* ==================================================
   UNIVERSAL EXACT SHELL
   ================================================== */

.fn-exact-footer {
    background: #202020;
    color: #aaa;
}

.fn-exact-footer-main {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1.12fr)
        minmax(0, 1fr);
    gap: 35px;
    padding-top: 48px;
    padding-bottom: 38px;
}

.fn-exact-footer-logo {
    width: 165px;
    margin: 0 0 17px;
}

.fn-exact-footer-about p {
    max-width: 270px;
    margin: 0;
    color: #aaa;
    font-size: 11px;
    line-height: 1.65;
}

.fn-exact-signature {
    width: 125px;
    margin: 18px 0;
}

.fn-exact-socials {
    display: flex;
    gap: 13px;
    margin-bottom: 30px;
}

.fn-exact-socials a {
    color: #aaa;
    font-size: 14px;
}

.fn-exact-socials a:hover {
    color: #fff;
}

.fn-exact-firstbank {
    display: block;
    width: 165px;
    margin: 0 auto;
}

.fn-exact-firstbank img {
    width: 100%;
    height: auto;
}

.fn-exact-footer-title {
    margin: 0 0 17px;
    color: #ff3540;
    font-size: 12px;
    font-weight: 700;
}


/* Today's Popular */

.fn-live-popular-image {
    display: block;
    height: 173px;
    overflow: hidden;
    background: #333;
}

.fn-live-popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-live-popular-title {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 12px;
    align-items: start;
    padding: 10px 0 12px;
    border-bottom: 2px solid #eee;
}

.fn-live-popular-title h3 {
    margin: 0;
    color: #fff;
    font-size: 13px;
    line-height: 1.3;
}

.fn-live-popular-title strong {
    padding-left: 11px;
    border-left: 1px solid #777;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 24px;
    font-style: italic;
}

.fn-live-share-count {
    margin-top: -10px;
    padding-bottom: 11px;
    color: #777;
    font-size: 7px;
}

.fn-live-popular-secondary-list {
    display: grid;
}

.fn-live-popular-secondary {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    padding: 13px 0;
    border-bottom: 1px solid #444;
}

.fn-live-popular-secondary > span {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f2f2f2;
    color: #aaa;
    font-size: 10px;
    font-style: italic;
}

.fn-live-popular-secondary h4 {
    margin: 0 0 5px;
    color: #eee;
    font-size: 10px;
    line-height: 1.35;
}

.fn-live-popular-secondary small {
    color: #777;
    font-size: 7px;
}


/* Just Published */

.fn-exact-recent-list {
    display: grid;
    gap: 11px;
}

.fn-shell-small-post {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 10px;
    min-width: 0;
}

.fn-shell-small-image {
    height: 56px;
    overflow: hidden;
    background: #333;
}

.fn-shell-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-shell-small-post h4 {
    margin: 0 0 4px;
    color: #eee;
    font-size: 10px;
    line-height: 1.3;
}

.fn-shell-small-post span {
    color: #777;
    font-size: 7px;
    text-transform: uppercase;
}

.fn-exact-footer-search {
    display: grid;
    grid-template-columns: 1fr 32px;
    margin-top: 18px;
}

.fn-exact-footer-search input {
    height: 28px;
    padding: 0 10px;
    border: 0;
    background: #444;
    color: #fff;
    font-size: 9px;
}

.fn-exact-footer-search button {
    border: 0;
    background: var(--fn-red);
    color: #fff;
}


/* Footer bottom */

.fn-exact-footer-bottom {
    border-top: 1px solid #444;
}

.fn-exact-footer-bottom > .fn-container {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fn-exact-footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 8px;
}

.fn-exact-footer-bottom nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.fn-exact-footer-bottom nav a {
    color: #eee;
    font-size: 8px;
}


/* Exact JNews tab card behaviour */

.fn-tab-widget .fn-small-story {
    align-items: start;
}

.fn-tab-widget .fn-rank {
    display: none;
}

.fn-tab-panel .fn-small-image {
    width: 80px;
    height: 58px;
    flex: 0 0 80px;
}

.fn-tab-panel .fn-small-copy h4 {
    margin-bottom: 4px;
}

.fn-tab-panel .fn-small-copy time {
    color: #999;
    font-size: 9px;
}

.fn-no-comments {
    margin: 0;
    padding: 20px 5px;
    color: #999;
    font-size: 11px;
}


/*
 * Old generated footer is superseded by universal shell.
 */

.fn-live-footer {
    display: none !important;
}


/* Tablet/mobile */

@media (max-width: 820px) {

    .fn-exact-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .fn-exact-footer-about {
        grid-column: 1 / -1;
    }

    .fn-exact-footer-about p {
        max-width: 520px;
    }

    .fn-exact-firstbank {
        margin-left: 0;
    }

    .fn-exact-footer-bottom > .fn-container {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .fn-exact-footer-bottom nav {
        justify-content: flex-start;
    }

}

@media (max-width: 560px) {

    .fn-exact-footer-main {
        grid-template-columns: 1fr;
    }

    .fn-exact-footer-about {
        grid-column: auto;
    }

    .fn-live-popular-image {
        height: 230px;
    }

}


/* ======================================================
   LATEST POST — EXACT LOWER HOMEPAGE LOOP
   ====================================================== */

.fn-latest-post-section {
    background: #fff;
    padding: 46px 0 52px;
}

.fn-latest-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 2fr)
        minmax(270px, 1fr);
    gap: 38px;
    align-items: start;
}

.fn-live-heading {
    position: relative;
    margin-bottom: 24px;
    border-bottom: 1px solid #222;
}

.fn-live-heading h2,
.fn-live-heading h3 {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 0 0 10px;
    color: #111;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
}

.fn-live-heading h3 {
    font-size: 15px;
}

.fn-live-heading h2::after,
.fn-live-heading h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 34px;
    height: 2px;
    background: var(--fn-red);
}


/* Latest main list */

.fn-latest-main-list {
    display: grid;
    gap: 30px;
}

.fn-latest-main-story {
    display: grid;
    grid-template-columns:
        minmax(250px, 47%)
        minmax(0, 1fr);
    gap: 24px;
    padding-bottom: 28px;
    border-bottom: 1px solid #eee;
}

.fn-latest-main-image {
    position: relative;
    display: block;
    height: 215px;
    overflow: hidden;
    background: #eee;
}

.fn-latest-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-latest-category {
    position: absolute;
    left: 9px;
    bottom: 9px;
    padding: 4px 7px;
    background: var(--fn-red);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.fn-latest-main-copy h3 {
    margin: 0 0 9px;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
    font-size: 21px;
    line-height: 1.25;
}

.fn-latest-main-copy h3 a {
    color: #111;
}

.fn-latest-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 12px;
    color: #999;
    font-size: 9px;
}

.fn-latest-main-copy p {
    margin: 0 0 12px;
    color: #666;
    font-size: 12px;
    line-height: 1.65;
}

.fn-latest-readmore {
    color: #111;
    font-size: 10px;
    font-weight: 700;
}

.fn-latest-readmore::after {
    content: " ›";
}


/* Pagination */

.fn-latest-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 32px;
    font-size: 10px;
}

.fn-latest-pagination a,
.fn-latest-pagination span {
    min-width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    padding: 0 7px;
    border: 1px solid #ddd;
    color: #555;
}

.fn-latest-pagination span:first-child {
    border: 0;
    width: auto;
}

.fn-latest-pagination a.is-current {
    background: var(--fn-red);
    border-color: var(--fn-red);
    color: #fff;
}


/* Sticky lower sidebar */

.fn-sticky-latest-sidebar {
    position: sticky;
    top: 20px;
}

.fn-latest-widget {
    margin-bottom: 30px;
}

.fn-social-counter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fn-social-counter a {
    min-height: 82px;
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    padding: 12px;
    border: 1px solid #eee;
    color: #333;
}

.fn-social-counter strong {
    grid-row: 1 / 3;
    font-size: 22px;
}

.fn-social-counter span {
    font-size: 16px;
    font-weight: 700;
}

.fn-social-counter small {
    color: #999;
    font-size: 9px;
}

.fn-latest-side-list {
    display: grid;
    gap: 14px;
}

.fn-latest-side-story {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: start;
}

.fn-latest-side-image {
    height: 68px;
    overflow: hidden;
    background: #eee;
}

.fn-latest-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fn-latest-side-story h4 {
    margin: 0 0 5px;
    font-size: 12px;
    line-height: 1.35;
}

.fn-latest-side-story h4 a {
    color: #111;
}

.fn-latest-side-story time {
    color: #999;
    font-size: 8px;
}

.fn-latest-ad {
    margin: 4px 0 30px;
}

.fn-latest-ad img {
    display: block;
    width: 100%;
    height: auto;
}


/* ======================================================
   LIVE FOOTER PROPORTION CORRECTION
   Same visual scale as JNews at equal browser zoom.
   ====================================================== */

.fn-exact-footer-main {
    gap: 32px;
    padding-top: 60px;
    padding-bottom: 55px;
}

.fn-exact-footer-logo {
    width: 229px;
    max-width: 100%;
    margin-bottom: 24px;
}

.fn-exact-footer-about p {
    max-width: 325px;
    font-size: 12px;
    line-height: 1.72;
}

.fn-exact-signature {
    width: 185px;
    max-width: 70%;
    margin: 23px 0 20px;
}

.fn-exact-socials {
    gap: 17px;
    margin-bottom: 43px;
}

.fn-exact-socials a {
    font-size: 16px;
}

.fn-exact-firstbank {
    width: 250px;
    max-width: 100%;
    margin-left: 54px;
}

.fn-exact-footer-title {
    margin-bottom: 22px;
    font-size: 14px;
}

.fn-live-popular-image {
    height: 255px;
}

.fn-live-popular-title {
    grid-template-columns: 1fr 58px;
    padding-top: 14px;
    padding-bottom: 17px;
}

.fn-live-popular-title h3 {
    font-size: 16px;
    line-height: 1.3;
}

.fn-live-popular-title strong {
    font-size: 28px;
}

.fn-live-share-count {
    font-size: 8px;
}

.fn-live-popular-secondary {
    grid-template-columns: 43px 1fr;
    gap: 13px;
    padding: 16px 0;
}

.fn-live-popular-secondary > span {
    width: 39px;
    height: 39px;
    font-size: 11px;
}

.fn-live-popular-secondary h4 {
    font-size: 12px;
}

.fn-shell-small-post {
    grid-template-columns: 91px 1fr;
    gap: 12px;
}

.fn-shell-small-image {
    height: 67px;
}

.fn-shell-small-post h4 {
    font-size: 12px;
}

.fn-shell-small-post span {
    font-size: 8px;
}

.fn-exact-recent-list {
    gap: 15px;
}

.fn-exact-footer-search {
    grid-template-columns: 1fr 40px;
    margin-top: 25px;
}

.fn-exact-footer-search input {
    height: 38px;
    font-size: 10px;
}

.fn-exact-footer-bottom > .fn-container {
    min-height: 85px;
}

.fn-exact-footer-bottom p,
.fn-exact-footer-bottom nav a {
    font-size: 9px;
}


/* Mobile */

@media (max-width: 820px) {

    .fn-latest-grid {
        grid-template-columns: 1fr;
    }

    .fn-sticky-latest-sidebar {
        position: static;
    }

    .fn-latest-main-story {
        grid-template-columns:
            minmax(190px, 42%)
            minmax(0, 1fr);
    }

    .fn-exact-firstbank {
        margin-left: 0;
    }

}

@media (max-width: 560px) {

    .fn-latest-post-section {
        padding-top: 32px;
    }

    .fn-latest-main-story {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .fn-latest-main-image {
        height: 230px;
    }

    .fn-social-counter {
        grid-template-columns: 1fr 1fr;
    }

}


/* ==========================================================
   FREELANEWS — LIVE JNEWS TYPOGRAPHY PARITY
   ========================================================== */

/*
 * The current Freelanews/JNews visual language is sans-serif.
 * Remove the temporary newspaper/Georgia treatment used
 * during the first HTML reconstruction.
 */

:root {
    --fn-font-body:
        "Roboto",
        "Helvetica Neue",
        Arial,
        Helvetica,
        sans-serif;

    --fn-font-heading:
        "Roboto",
        "Helvetica Neue",
        Arial,
        Helvetica,
        sans-serif;
}


/* Global body */

html,
body,
button,
input,
select,
textarea {
    font-family: var(--fn-font-body);
}

body {
    font-size: 13px;
    line-height: 1.55;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* All headings */

h1,
h2,
h3,
h4,
h5,
h6,
.fn-hero h1,
.fn-main-story h1,
.fn-main-story h2,
.fn-main-story h3,
.fn-card h2,
.fn-card h3,
.fn-card h4,
.fn-small-story h4,
.fn-compact-story h3,
.fn-latest-main-copy h3,
.fn-latest-side-story h4,
.fn-shell-small-post h4,
.fn-live-popular-title h3,
.fn-live-popular-secondary h4,
.fn-footer-story h4,
.fn-footer-editor-copy h3,
.fn-footer-editor-small h4 {
    font-family: var(--fn-font-heading) !important;
    font-style: normal;
}


/* Main navigation */

.fn-main-nav,
.fn-main-nav a,
.fn-nav-wrap,
.fn-tabs button {
    font-family: var(--fn-font-heading);
}

.fn-main-nav a {
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}


/* Homepage hero */

.fn-hero h1,
.fn-slider-title,
.fn-main-story h1 {
    font-family: var(--fn-font-heading) !important;
    font-size: 31px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.35px;
}


/* Section headings */

.fn-section-title h2,
.fn-live-heading h2,
.fn-live-heading h3,
.fn-footer-title,
.fn-exact-footer-title {
    font-family: var(--fn-font-heading) !important;
    font-weight: 700;
    letter-spacing: 0;
}

.fn-section-title h2,
.fn-live-heading h2 {
    font-size: 17px;
    line-height: 1.25;
}

.fn-live-heading h3 {
    font-size: 15px;
}


/* Large homepage story titles */

.fn-feature-copy h2,
.fn-feature-copy h3,
.fn-large-story h2,
.fn-large-story h3,
.fn-latest-main-copy h3 {
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -.15px;
}


/* Medium cards */

.fn-card h3,
.fn-compact-copy h3,
.fn-politics-grid h3 {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
}


/* Sidebar / small lists */

.fn-small-copy h4,
.fn-small-story h4,
.fn-latest-side-story h4,
.fn-shell-small-post h4 {
    font-size: 12px;
    line-height: 1.32;
    font-weight: 700;
}


/* Meta */

.fn-meta,
.fn-small-copy time,
.fn-latest-meta,
.fn-shell-small-post span,
.fn-latest-side-story time,
.fn-footer-story time {
    font-family: var(--fn-font-body);
    font-size: 9px;
    line-height: 1.4;
    font-weight: 400;
    color: #999;
}


/* Excerpts */

.fn-excerpt,
.fn-feature-copy p,
.fn-latest-main-copy p {
    font-family: var(--fn-font-body);
    font-size: 12px;
    line-height: 1.6;
    font-weight: 400;
}


/* Newsflash */

.fn-newsflash,
.fn-newsflash a,
.fn-newsflash span {
    font-family: var(--fn-font-body);
}

.fn-newsflash-title {
    font-size: 10px;
    font-weight: 700;
}

.fn-newsflash-track {
    font-size: 12px;
    font-weight: 400;
}


/* Tabs */

.fn-tabs button {
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    text-transform: none;
}


/* Footer */

.fn-exact-footer,
.fn-exact-footer p,
.fn-exact-footer a,
.fn-exact-footer input,
.fn-exact-footer button {
    font-family: var(--fn-font-body);
}

.fn-exact-footer-title {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

.fn-live-popular-title h3 {
    font-size: 16px;
    line-height: 1.28;
    font-weight: 700;
}

.fn-live-popular-secondary h4 {
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

.fn-shell-small-post h4 {
    font-size: 12px;
    line-height: 1.32;
    font-weight: 700;
}


/* Article page */

.article-layout,
.article-layout article,
.article-body {
    font-family: var(--fn-font-body);
}

.article-header h1 {
    font-family: var(--fn-font-heading) !important;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -.45px;
}

.article-dek {
    font-family: var(--fn-font-body);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 400;
}

.article-body {
    font-size: 16px;
    line-height: 1.75;
}

.article-body p,
.article-body li {
    font-family: var(--fn-font-body);
}


/* Archive/category/search */

.archive-head h1 {
    font-family: var(--fn-font-heading) !important;
    font-size: 29px;
    line-height: 1.2;
    font-weight: 700;
}

.archive-grid h2,
.archive-grid h3 {
    font-family: var(--fn-font-heading) !important;
    font-weight: 700;
}


/* Remove all remaining forced Georgia styling */

.fn-live-popular-title strong,
.fn-live-popular-secondary > span {
    font-family: var(--fn-font-body) !important;
}


/* Desktop scale refinement */

@media (min-width: 821px) {

    .fn-main-nav a {
        font-size: 11px;
    }

    .fn-hero h1,
    .fn-slider-title {
        font-size: 30px;
    }

}


/* Mobile */

@media (max-width: 560px) {

    body {
        font-size: 14px;
    }

    .fn-hero h1,
    .fn-slider-title,
    .fn-main-story h1 {
        font-size: 25px;
    }

    .article-header h1 {
        font-size: 30px;
    }

    .article-body {
        font-size: 16px;
    }

}


/* ==========================================================
   FREELANEWS
   FINAL AUTHORITATIVE FOOTER RESPONSIVE RULES
   Keep this block LAST.
   ========================================================== */

.fn-exact-footer {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.fn-exact-footer *,
.fn-exact-footer *::before,
.fn-exact-footer *::after {
    box-sizing: border-box;
}

.fn-exact-footer-main {
    width: 100%;
}

.fn-exact-footer-main > .fn-container {
    width: 100%;
}


/* ---------- TABLET ---------- */

@media (max-width: 820px) {

    .fn-exact-footer {
        overflow: hidden;
    }

    .fn-exact-footer-main {
        display: block !important;
        width: 100% !important;
        padding: 38px 24px 30px !important;
    }

    .fn-exact-footer-main > .fn-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 36px 28px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .fn-exact-footer-about,
    .fn-exact-footer-popular,
    .fn-exact-footer-latest,
    .fn-exact-footer-ad {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .fn-exact-footer-logo {
        display: block;
        width: auto !important;
        max-width: 170px !important;
        height: auto !important;
    }

    .fn-exact-footer-about p {
        max-width: 100% !important;
    }

    .fn-live-popular-image,
    .fn-live-popular-image img {
        width: 100% !important;
        max-width: 100% !important;
    }

    .fn-live-popular-image img {
        height: auto !important;
        object-fit: cover;
    }

    .fn-shell-small-post {
        min-width: 0 !important;
    }

    .fn-shell-small-post h4,
    .fn-live-popular-secondary h4 {
        overflow-wrap: anywhere;
    }

    .fn-exact-footer-ad img {
        display: block;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 auto;
    }

    .fn-exact-footer-bottom > .fn-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .fn-exact-footer-bottom nav {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
        gap: 7px 13px !important;
        width: 100% !important;
    }
}


/* ---------- PHONE ---------- */

@media (max-width: 560px) {

    .fn-exact-footer-main {
        padding: 32px 20px 26px !important;
    }

    .fn-exact-footer-main > .fn-container {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 30px !important;
        width: 100% !important;
    }

    .fn-exact-footer-about,
    .fn-exact-footer-popular,
    .fn-exact-footer-latest,
    .fn-exact-footer-ad {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 auto !important;
    }

    .fn-exact-footer-logo {
        max-width: 150px !important;
    }

    .fn-exact-footer-about p {
        margin-top: 14px !important;
        font-size: 11px !important;
        line-height: 1.65 !important;
    }

    .fn-exact-footer-title {
        margin: 0 0 14px !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
    }

    .fn-live-popular-image {
        display: block !important;
        width: 100% !important;
        margin: 0 0 10px !important;
    }

    .fn-live-popular-image img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: cover;
    }

    .fn-live-popular-title {
        width: 100% !important;
        padding: 0 !important;
    }

    .fn-live-popular-title h3 {
        font-size: 15px !important;
        line-height: 1.3 !important;
        margin: 0 0 6px !important;
    }

    .fn-live-popular-secondary-list {
        width: 100% !important;
    }

    .fn-live-popular-secondary {
        display: grid !important;
        grid-template-columns: 34px minmax(0, 1fr) !important;
        gap: 10px !important;
        align-items: start !important;
        width: 100% !important;
    }

    .fn-live-popular-secondary > span {
        width: 34px !important;
        min-width: 34px !important;
    }

    .fn-live-popular-secondary h4 {
        min-width: 0 !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    .fn-shell-small-post {
        display: grid !important;
        grid-template-columns: 72px minmax(0, 1fr) !important;
        gap: 11px !important;
        width: 100% !important;
        align-items: start !important;
    }

    .fn-shell-small-post img {
        display: block !important;
        width: 72px !important;
        height: 54px !important;
        max-width: 72px !important;
        object-fit: cover !important;
    }

    .fn-shell-small-post h4 {
        min-width: 0 !important;
        margin: 0 0 5px !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
    }

    .fn-shell-small-post span {
        font-size: 8px !important;
    }

    .fn-exact-footer-search {
        display: flex !important;
        width: 100% !important;
    }

    .fn-exact-footer-search input {
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .fn-exact-footer-search button {
        flex: 0 0 42px !important;
        width: 42px !important;
    }

    .fn-exact-footer-ad img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .fn-exact-footer-bottom > .fn-container {
        padding: 17px 20px 20px !important;
        gap: 12px !important;
    }

    .fn-exact-footer-bottom p {
        width: 100% !important;
        margin: 0 !important;
        font-size: 8px !important;
        line-height: 1.5 !important;
    }

    .fn-exact-footer-bottom nav {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 7px 11px !important;
        width: 100% !important;
    }

    .fn-exact-footer-bottom nav a {
        font-size: 8px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
    }
}


/* ==========================================================
   UNIVERSAL ADVERTISEMENT CONTAINERS
   Actual Google units are inserted only after exact
   publisher/slot configuration has been verified.
   ========================================================== */

.fn-ad-slot {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    text-align: center;
}

.fn-ad-slot > ins.adsbygoogle {
    display: block;
    width: 100%;
}

.fn-ad-label {
    display: block;
    margin: 0 0 6px;
    color: #aaa;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 8px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.fn-ad-header {
    margin-top: 15px;
    margin-bottom: 15px;
}

.fn-ad-content {
    margin-top: 25px;
    margin-bottom: 25px;
}

.fn-ad-above-footer {
    margin-top: 30px;
    margin-bottom: 30px;
}

.fn-mobile-sticky-ad {
    display: none;
}

@media (max-width: 560px) {

    .fn-ad-header,
    .fn-ad-content,
    .fn-ad-above-footer {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .fn-mobile-sticky-ad {
        position: fixed;
        z-index: 9998;
        right: 0;
        bottom: 0;
        left: 0;
        display: none;
        width: 100%;
        max-width: 100vw;
        margin: 0;
        background: #fff;
        box-shadow: 0 -2px 8px rgba(0,0,0,.12);
        text-align: center;
    }

    .fn-mobile-sticky-ad.is-active {
        display: block;
    }
}



/* ==========================================================
   FREELANEWS — FINAL UNIVERSAL RESPONSIVE FOOTER
   This block intentionally overrides every earlier footer
   experiment and matches the actual shell markup.
   ========================================================== */

.fn-exact-footer,
.fn-exact-footer * {
    box-sizing: border-box;
}

.fn-exact-footer {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


/* Desktop — actual three-column live footer */

.fn-exact-footer-main {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;

    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 38px;
    align-items: start;
}

.fn-exact-footer-main > * {
    min-width: 0;
}


/* Universal Auto Ads wrappers */

.fn-universal-ad {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    text-align: center;
}

.fn-header-bottom-auto-ad:empty,
.fn-above-footer-auto-ad:empty,
.fn-mobile-auto-ad:empty {
    display: none;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media (max-width: 820px) {

    .fn-exact-footer-main {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr) !important;

        gap: 34px 26px !important;

        width: 100% !important;
        max-width: 100% !important;

        padding:
            38px 24px
            34px !important;
    }

    .fn-exact-footer-about {
        grid-column: 1 / -1;
    }

    .fn-exact-footer-about,
    .fn-exact-footer-popular,
    .fn-exact-footer-recent {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
    }

    .fn-exact-footer-logo {
        width: 185px !important;
        max-width: 60% !important;
        height: auto !important;
    }

    .fn-exact-footer-about p {
        width: 100%;
        max-width: 560px !important;
    }

    .fn-exact-firstbank {
        display: block;
        width: 250px !important;
        max-width: 100% !important;
        margin:
            30px 0
            0 !important;
    }

    .fn-exact-firstbank img {
        display: block;
        width: 100% !important;
        height: auto !important;
    }

    .fn-live-popular-image {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 10;
    }

    .fn-live-popular-image img {
        display: block;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    .fn-exact-footer-bottom > .fn-container {
        width: 100%;
        max-width: 100%;
        padding:
            20px 24px !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }

    .fn-exact-footer-bottom nav {
        justify-content: flex-start !important;
    }

}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media (max-width: 560px) {

    .fn-exact-footer-main {
        display: flex !important;
        flex-direction: column !important;

        width: 100% !important;
        max-width: 100% !important;

        gap: 34px !important;

        padding:
            34px 20px
            30px !important;
    }

    .fn-exact-footer-main > section {
        display: block !important;

        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        margin: 0 !important;
    }

    .fn-exact-footer-about {
        order: 1;
    }

    .fn-exact-footer-popular {
        order: 2;
    }

    .fn-exact-footer-recent {
        order: 3;
    }


    /* About */

    .fn-exact-footer-logo {
        display: block;

        width: 165px !important;
        max-width: 58% !important;

        height: auto !important;

        margin:
            0 0
            18px !important;
    }

    .fn-exact-footer-about p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        font-size: 12px !important;
        line-height: 1.65 !important;
    }

    .fn-exact-signature {
        display: block;

        width: 145px !important;
        max-width: 50% !important;

        height: auto !important;

        margin:
            20px 0
            16px !important;
    }

    .fn-exact-socials {
        margin-bottom: 26px !important;
    }

    .fn-exact-firstbank {
        display: block;

        width: 250px !important;
        max-width: 78vw !important;

        margin:
            0 auto !important;
    }

    .fn-exact-firstbank img {
        display: block;

        width: 100% !important;
        max-width: 100% !important;

        height: auto !important;
    }


    /* Titles */

    .fn-exact-footer-title {
        margin:
            0 0
            17px !important;

        font-size: 15px !important;
        line-height: 1.25 !important;
    }


    /* Today's Popular */

    .fn-live-popular-lead,
    .fn-live-popular-image,
    .fn-live-popular-title {
        width: 100% !important;
        max-width: 100% !important;
    }

    .fn-live-popular-image {
        display: block !important;

        height: auto !important;

        aspect-ratio: 16 / 10;

        overflow: hidden;
    }

    .fn-live-popular-image img {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }

    .fn-live-popular-title {
        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            46px !important;

        gap: 12px !important;

        padding:
            12px 0
            14px !important;
    }

    .fn-live-popular-title h3 {
        min-width: 0;

        margin: 0 !important;

        font-size: 16px !important;
        line-height: 1.32 !important;
    }

    .fn-live-popular-title strong {
        font-size: 24px !important;
    }

    .fn-live-popular-secondary {
        display: grid !important;

        grid-template-columns:
            38px
            minmax(0, 1fr) !important;

        gap: 12px !important;

        width: 100% !important;

        padding:
            14px 0 !important;
    }

    .fn-live-popular-secondary > span {
        width: 36px !important;
        height: 36px !important;
    }

    .fn-live-popular-secondary h4 {
        margin: 0 0 5px !important;

        font-size: 12px !important;
        line-height: 1.4 !important;

        overflow-wrap: anywhere;
    }


    /* Just Published */

    .fn-exact-recent-list {
        width: 100% !important;

        display: grid !important;
        gap: 15px !important;
    }

    .fn-shell-small-post {
        width: 100% !important;

        display: grid !important;

        grid-template-columns:
            88px
            minmax(0, 1fr) !important;

        gap: 12px !important;

        align-items: start !important;
    }

    .fn-shell-small-image {
        display: block !important;

        width: 88px !important;
        height: 64px !important;

        overflow: hidden;
    }

    .fn-shell-small-image img {
        display: block !important;

        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
    }

    .fn-shell-small-post h4 {
        min-width: 0;

        margin:
            0 0
            5px !important;

        font-size: 12px !important;
        line-height: 1.38 !important;

        overflow-wrap: anywhere;
    }

    .fn-shell-small-post span {
        font-size: 8px !important;
    }


    /* Search */

    .fn-exact-footer-search {
        width: 100% !important;

        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            42px !important;

        margin-top: 22px !important;
    }

    .fn-exact-footer-search input {
        width: 100% !important;
        min-width: 0 !important;

        height: 40px !important;
    }

    .fn-exact-footer-search button {
        width: 42px !important;
        height: 40px !important;
    }


    /* Footer bottom */

    .fn-exact-footer-bottom > .fn-container {
        width: 100% !important;
        max-width: 100% !important;

        padding:
            18px 20px
            22px !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 13px !important;
    }

    .fn-exact-footer-bottom p {
        width: 100%;

        margin: 0 !important;

        font-size: 9px !important;
        line-height: 1.5 !important;
    }

    .fn-exact-footer-bottom nav {
        width: 100%;

        display: flex !important;

        flex-wrap: wrap !important;

        justify-content: flex-start !important;

        gap:
            7px 13px !important;
    }

    .fn-exact-footer-bottom nav a {
        font-size: 9px !important;
        line-height: 1.4 !important;

        white-space: normal !important;
    }

}


/* ==========================================================
   FREELANEWS — V2 SINGLE ARTICLE
   Live JNews single-post parity foundation
   ========================================================== */

.fn-single-page {
    display: grid;
    grid-template-columns:
        minmax(0, 735px)
        minmax(270px, 1fr);
    gap: 40px;
    align-items: start;

    width: 100%;
    max-width: 1140px;

    margin: 0 auto;
    padding: 38px 15px 60px;
}


.fn-single-main,
.fn-single-sidebar {
    min-width: 0;
}


.fn-single-header {
    margin-bottom: 24px;
}


.fn-single-header h1 {
    margin: 0 0 14px;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 40px;
    line-height: 1.13;

    font-weight: 500;
    letter-spacing: -.5px;

    color: #111;
}


.fn-single-dek {
    margin: 0 0 17px;

    font-size: 16px;
    line-height: 1.55;

    color: #666;
}


.fn-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    align-items: center;

    margin-bottom: 15px;

    color: #999;

    font-size: 11px;
    line-height: 1.5;
}


.fn-single-meta strong {
    color: #333;
    font-weight: 500;
}


.fn-single-meta a {
    color: inherit;
    text-decoration: none;
}


.fn-single-meta a:hover {
    color: #dd9933;
}


.fn-single-share {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 10px;
}


.fn-single-share a {
    display: inline-flex;
    align-items: center;

    min-height: 31px;

    padding: 0 12px;

    border: 1px solid #e4e4e4;

    color: #555;

    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
}


.fn-single-share a:hover {
    border-color: #aaa;
    color: #111;
}


.fn-single-feature {
    width: 100%;

    margin: 0 0 28px;

    overflow: hidden;
}


.fn-single-feature img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 735 / 490;

    object-fit: cover;
}


.fn-single-content {
    color: #333;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.8;
}


.fn-single-content p {
    margin: 0 0 1.45em;
}


.fn-single-content h2,
.fn-single-content h3,
.fn-single-content h4 {
    margin:
        1.8em 0
        .7em;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: #111;

    font-weight: 500;
}


.fn-single-content img {
    max-width: 100%;
    height: auto;
}


.fn-single-content iframe {
    max-width: 100%;
}


.fn-single-content a {
    color: #dd9933;
}


.fn-single-content blockquote {
    margin:
        1.6em 0;

    padding:
        5px 0
        5px 22px;

    border-left: 3px solid #dd9933;

    font-size: 18px;
    line-height: 1.65;
}


.fn-article-top-ad:empty,
.fn-article-bottom-ad:empty {
    display: none;
}


.fn-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 32px;
}


.fn-single-tags a {
    display: inline-block;

    padding: 6px 10px;

    border: 1px solid #e6e6e6;

    color: #666;

    font-size: 10px;
    text-decoration: none;
}


.fn-related-posts {
    margin-top: 42px;
}


.fn-article-module-title {
    margin-bottom: 18px;

    border-bottom: 2px solid #111;

    padding-bottom: 8px;

    color: #111;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 700;
}


.fn-related-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 24px 20px;
}


.fn-related-card {
    min-width: 0;
}


.fn-related-image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    margin-bottom: 10px;
}


.fn-related-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.fn-related-category {
    color: #dd9933;

    font-size: 9px;
    font-weight: 500;

    text-transform: uppercase;
}


.fn-related-card h3 {
    margin: 4px 0 0;

    font-size: 14px;
    line-height: 1.35;

    font-weight: 500;
}


.fn-related-card h3 a {
    color: #111;
    text-decoration: none;
}


/* Sticky article sidebar */

.fn-single-sidebar {
    position: sticky;
    top: 82px;
}


.fn-article-sidebar-ad {
    display: block;

    width: 100%;

    margin-bottom: 30px;
}


.fn-article-sidebar-ad img {
    display: block;

    width: 100%;
    height: auto;
}


.fn-article-widget {
    margin-bottom: 34px;
}


.fn-article-side-story {
    display: grid;

    grid-template-columns:
        88px
        minmax(0, 1fr);

    gap: 12px;

    align-items: start;

    margin-bottom: 15px;
}


.fn-article-side-image {
    display: block;

    width: 88px;
    height: 64px;

    overflow: hidden;
}


.fn-article-side-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.fn-article-side-story h3 {
    margin: 0 0 5px;

    font-size: 12px;
    line-height: 1.35;

    font-weight: 500;
}


.fn-article-side-story h3 a {
    color: #222;
    text-decoration: none;
}


.fn-article-side-story span {
    color: #aaa;

    font-size: 8px;
    line-height: 1.4;
}


.fn-article-tabs {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    margin-bottom: 17px;

    border-bottom: 1px solid #e7e7e7;
}


.fn-article-tabs button {
    appearance: none;

    border: 0;
    border-bottom: 2px solid transparent;

    background: transparent;

    padding:
        9px 4px;

    color: #888;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 10px;

    cursor: pointer;
}


.fn-article-tabs button.is-active {
    border-bottom-color: #111;

    color: #111;

    font-weight: 700;
}


.fn-article-search {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;
}


.fn-article-search input {
    min-width: 0;

    height: 39px;

    border: 1px solid #ddd;
    border-right: 0;

    padding: 0 11px;

    font-family: inherit;
}


.fn-article-search button {
    height: 39px;

    border: 0;

    padding: 0 14px;

    background: #222;

    color: #fff;

    font-family: inherit;

    cursor: pointer;
}


/* Tablet */

@media (max-width: 820px) {

    .fn-single-page {
        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            28px 24px
            48px;
    }

    .fn-single-sidebar {
        position: static;
    }

}


/* Mobile */

@media (max-width: 560px) {

    .fn-single-page {
        display: block;

        width: 100%;

        padding:
            24px 20px
            42px;
    }

    .fn-single-header h1 {
        font-size: 30px;
        line-height: 1.15;

        letter-spacing: -.25px;
    }

    .fn-single-dek {
        font-size: 14px;
        line-height: 1.55;
    }

    .fn-single-meta {
        font-size: 9px;
    }

    .fn-single-feature {
        margin-left: -20px;
        margin-right: -20px;

        width: calc(100% + 40px);
    }

    .fn-single-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .fn-related-grid {
        grid-template-columns: 1fr;
    }

    .fn-single-sidebar {
        margin-top: 42px;
    }

}


/* ==========================================================
   FREELANEWS — V2 SINGLE ARTICLE
   Live JNews single-post parity foundation
   ========================================================== */

.fn-single-page {
    display: grid;
    grid-template-columns:
        minmax(0, 735px)
        minmax(270px, 1fr);
    gap: 40px;
    align-items: start;

    width: 100%;
    max-width: 1140px;

    margin: 0 auto;
    padding: 38px 15px 60px;
}


.fn-single-main,
.fn-single-sidebar {
    min-width: 0;
}


.fn-single-header {
    margin-bottom: 24px;
}


.fn-single-header h1 {
    margin: 0 0 14px;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 40px;
    line-height: 1.13;

    font-weight: 500;
    letter-spacing: -.5px;

    color: #111;
}


.fn-single-dek {
    margin: 0 0 17px;

    font-size: 16px;
    line-height: 1.55;

    color: #666;
}


.fn-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    align-items: center;

    margin-bottom: 15px;

    color: #999;

    font-size: 11px;
    line-height: 1.5;
}


.fn-single-meta strong {
    color: #333;
    font-weight: 500;
}


.fn-single-meta a {
    color: inherit;
    text-decoration: none;
}


.fn-single-meta a:hover {
    color: #dd9933;
}


.fn-single-share {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;

    margin-top: 10px;
}


.fn-single-share a {
    display: inline-flex;
    align-items: center;

    min-height: 31px;

    padding: 0 12px;

    border: 1px solid #e4e4e4;

    color: #555;

    font-size: 10px;
    font-weight: 500;
    text-decoration: none;
}


.fn-single-share a:hover {
    border-color: #aaa;
    color: #111;
}


.fn-single-feature {
    width: 100%;

    margin: 0 0 28px;

    overflow: hidden;
}


.fn-single-feature img {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 735 / 490;

    object-fit: cover;
}


.fn-single-content {
    color: #333;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 16px;
    line-height: 1.8;
}


.fn-single-content p {
    margin: 0 0 1.45em;
}


.fn-single-content h2,
.fn-single-content h3,
.fn-single-content h4 {
    margin:
        1.8em 0
        .7em;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: #111;

    font-weight: 500;
}


.fn-single-content img {
    max-width: 100%;
    height: auto;
}


.fn-single-content iframe {
    max-width: 100%;
}


.fn-single-content a {
    color: #dd9933;
}


.fn-single-content blockquote {
    margin:
        1.6em 0;

    padding:
        5px 0
        5px 22px;

    border-left: 3px solid #dd9933;

    font-size: 18px;
    line-height: 1.65;
}


.fn-article-top-ad:empty,
.fn-article-bottom-ad:empty {
    display: none;
}


.fn-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;

    margin-top: 32px;
}


.fn-single-tags a {
    display: inline-block;

    padding: 6px 10px;

    border: 1px solid #e6e6e6;

    color: #666;

    font-size: 10px;
    text-decoration: none;
}


.fn-related-posts {
    margin-top: 42px;
}


.fn-article-module-title {
    margin-bottom: 18px;

    border-bottom: 2px solid #111;

    padding-bottom: 8px;

    color: #111;

    font-size: 14px;
    line-height: 1.2;

    font-weight: 700;
}


.fn-related-grid {
    display: grid;
    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 24px 20px;
}


.fn-related-card {
    min-width: 0;
}


.fn-related-image {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    margin-bottom: 10px;
}


.fn-related-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.fn-related-category {
    color: #dd9933;

    font-size: 9px;
    font-weight: 500;

    text-transform: uppercase;
}


.fn-related-card h3 {
    margin: 4px 0 0;

    font-size: 14px;
    line-height: 1.35;

    font-weight: 500;
}


.fn-related-card h3 a {
    color: #111;
    text-decoration: none;
}


/* Sticky article sidebar */

.fn-single-sidebar {
    position: sticky;
    top: 82px;
}


.fn-article-sidebar-ad {
    display: block;

    width: 100%;

    margin-bottom: 30px;
}


.fn-article-sidebar-ad img {
    display: block;

    width: 100%;
    height: auto;
}


.fn-article-widget {
    margin-bottom: 34px;
}


.fn-article-side-story {
    display: grid;

    grid-template-columns:
        88px
        minmax(0, 1fr);

    gap: 12px;

    align-items: start;

    margin-bottom: 15px;
}


.fn-article-side-image {
    display: block;

    width: 88px;
    height: 64px;

    overflow: hidden;
}


.fn-article-side-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.fn-article-side-story h3 {
    margin: 0 0 5px;

    font-size: 12px;
    line-height: 1.35;

    font-weight: 500;
}


.fn-article-side-story h3 a {
    color: #222;
    text-decoration: none;
}


.fn-article-side-story span {
    color: #aaa;

    font-size: 8px;
    line-height: 1.4;
}


.fn-article-tabs {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    margin-bottom: 17px;

    border-bottom: 1px solid #e7e7e7;
}


.fn-article-tabs button {
    appearance: none;

    border: 0;
    border-bottom: 2px solid transparent;

    background: transparent;

    padding:
        9px 4px;

    color: #888;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 10px;

    cursor: pointer;
}


.fn-article-tabs button.is-active {
    border-bottom-color: #111;

    color: #111;

    font-weight: 700;
}


.fn-article-search {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;
}


.fn-article-search input {
    min-width: 0;

    height: 39px;

    border: 1px solid #ddd;
    border-right: 0;

    padding: 0 11px;

    font-family: inherit;
}


.fn-article-search button {
    height: 39px;

    border: 0;

    padding: 0 14px;

    background: #222;

    color: #fff;

    font-family: inherit;

    cursor: pointer;
}


/* Tablet */

@media (max-width: 820px) {

    .fn-single-page {
        grid-template-columns: 1fr;

        gap: 35px;

        padding:
            28px 24px
            48px;
    }

    .fn-single-sidebar {
        position: static;
    }

}


/* Mobile */

@media (max-width: 560px) {

    .fn-single-page {
        display: block;

        width: 100%;

        padding:
            24px 20px
            42px;
    }

    .fn-single-header h1 {
        font-size: 30px;
        line-height: 1.15;

        letter-spacing: -.25px;
    }

    .fn-single-dek {
        font-size: 14px;
        line-height: 1.55;
    }

    .fn-single-meta {
        font-size: 9px;
    }

    .fn-single-feature {
        margin-left: -20px;
        margin-right: -20px;

        width: calc(100% + 40px);
    }

    .fn-single-content {
        font-size: 16px;
        line-height: 1.75;
    }

    .fn-related-grid {
        grid-template-columns: 1fr;
    }

    .fn-single-sidebar {
        margin-top: 42px;
    }

}


/* ==========================================================
   V2 ARTICLE — CRITICAL LOADING STATE
   ========================================================== */

.fn-article-loading {
    width: 100%;
    max-width: 1140px;
    min-height: 420px;
    margin: 0 auto;
    padding: 45px 15px;

    color: #aaa;

    font-family:
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size: 12px;
}

@media (max-width: 560px) {

    .fn-article-loading {
        min-height: 300px;
        padding: 28px 20px;
    }

}
