/* =========================================================
   FULL NEWS ARTICLE
   All classes are prefixed with nf-
   ========================================================= */

.nf-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.nf-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 18px;

    font-size: 12px;
    line-height: 1.4;

    opacity: .6;
}

.nf-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.nf-breadcrumb a:hover {
    opacity: 1;
}

.nf-breadcrumb span {
    opacity: .45;
}

.nf-breadcrumb strong {
    font-weight: 600;
    opacity: .9;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.nf-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        300px;

    gap: 22px;

    align-items: start;
}

.nf-main {
    min-width: 0;
}

.nf-sidebar {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   ARTICLE HEADER
   ========================================================= */

.nf-header {
    margin-bottom: 15px;
}

.nf-header h1 {
    margin: 0;

    max-width: 950px;

    font-size: 34px;
    line-height: 1.18;

    font-weight: 750;

    letter-spacing: -.5px;
}

.nf-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px 15px;

    margin-top: 11px;

    font-size: 10px;

    opacity: .52;
}

.nf-meta span {
    display: inline-flex;
    align-items: center;

    white-space: nowrap;
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.nf-hero {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 8.2;

    overflow: hidden;

    border-radius: 10px;

    background: #111820;

    border: 1px solid rgba(255,255,255,.06);

    margin-bottom: 20px;
}

.nf-hero img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: cover !important;

    object-position: center;

    transition: transform .35s ease;
}

.nf-hero:hover img {
    transform: scale(1.012);
}


/* =========================================================
   ARTICLE CONTENT
   ========================================================= */

.nf-content {
    padding: 0 2px;

    font-size: 14px;

    line-height: 1.85;

    color: inherit;
}

.nf-content > *:first-child {
    margin-top: 0;
}

.nf-content > *:last-child {
    margin-bottom: 0;
}

.nf-content p {
    margin: 0 0 18px;
}

.nf-content h2 {
    margin: 30px 0 12px;

    font-size: 23px;
    line-height: 1.3;

    font-weight: 700;
}

.nf-content h3 {
    margin: 25px 0 10px;

    font-size: 18px;
    line-height: 1.35;

    font-weight: 700;
}

.nf-content h4 {
    margin: 22px 0 9px;

    font-size: 16px;
}

.nf-content a {
    text-decoration: underline;
}

.nf-content img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 22px auto;

    border-radius: 8px;
}

.nf-content ul,
.nf-content ol {
    margin: 0 0 20px;

    padding-left: 24px;
}

.nf-content li {
    margin-bottom: 7px;
}

.nf-content blockquote {
    margin: 24px 0;

    padding: 15px 18px;

    border-left: 3px solid #e50914;

    border-radius: 0 7px 7px 0;

    background: rgba(255,255,255,.035);

    font-size: 14px;

    line-height: 1.7;

    opacity: .85;
}

.nf-content table {
    width: 100%;

    border-collapse: collapse;

    margin: 22px 0;

    font-size: 12px;
}

.nf-content th,
.nf-content td {
    padding: 10px 12px;

    border: 1px solid rgba(255,255,255,.07);

    text-align: left;
}

.nf-content th {
    background: rgba(255,255,255,.05);
}


/* =========================================================
   SHARE
   ========================================================= */

.nf-share {
    margin-top: 28px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.07);
}

.nf-share h2 {
    margin: 0 0 11px;

    font-size: 15px;

    font-weight: 700;
}

.nf-share-buttons {
    display: flex;

    align-items: center;

    gap: 8px;
}

.nf-share-buttons a {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    border-radius: 50%;

    background: rgba(255,255,255,.075);

    color: inherit;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .16s ease,
        background .16s ease;
}

.nf-share-buttons a:hover {
    transform: translateY(-2px);

    background: rgba(255,255,255,.14);
}


/* =========================================================
   ARTICLE NAVIGATION
   ========================================================= */

.nf-navigation {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 10px;

    margin-top: 24px;
}

.nf-prev,
.nf-next {
    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 14px 15px;

    border-radius: 8px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.05);

    color: inherit;

    text-decoration: none;

    transition:
        background .16s ease,
        transform .16s ease;
}

.nf-prev:hover,
.nf-next:hover {
    background: rgba(255,255,255,.055);

    transform: translateY(-1px);
}

.nf-next {
    text-align: right;
}

.nf-prev span,
.nf-next span {
    margin-bottom: 5px;

    font-size: 9px;

    opacity: .45;
}

.nf-prev strong,
.nf-next strong {
    overflow: hidden;

    font-size: 11px;

    line-height: 1.45;

    white-space: nowrap;
    text-overflow: ellipsis;
}


/* =========================================================
   SIDEBAR BOX
   ========================================================= */

.nf-box {
    padding: 14px 15px;

    border-radius: 9px;

    background: rgba(255,255,255,.035);

    border: 1px solid rgba(255,255,255,.05);

    box-sizing: border-box;
}

.nf-box h2 {
    margin: 0 0 12px;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 700;
}


/* =========================================================
   ARTICLE INFO
   ========================================================= */

.nf-info-row {
    display: grid;

    grid-template-columns:
        80px
        minmax(0,1fr);

    gap: 8px;

    padding: 8px 0;

    border-bottom: 1px solid rgba(255,255,255,.05);

    font-size: 10px;
}

.nf-info-row:last-child {
    border-bottom: 0;
}

.nf-info-row span {
    opacity: .45;
}

.nf-info-row strong {
    min-width: 0;

    font-weight: 500;

    line-height: 1.4;
}


/* =========================================================
   RECENT NEWS
   ========================================================= */

.nf-recent-list {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.nf-recent-item {
    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;

    color: inherit;

    text-decoration: none;
}

.nf-recent-image {
    position: relative;

    flex: 0 0 76px;

    width: 76px;
    height: 52px;

    overflow: hidden;

    border-radius: 6px;

    background: #111820;

    border: 1px solid rgba(255,255,255,.05);
}

.nf-recent-image img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: none !important;

    object-fit: cover !important;
}

.nf-recent-content {
    display: flex;

    flex-direction: column;

    min-width: 0;
}

.nf-recent-content strong {
    display: -webkit-box;

    overflow: hidden;

    font-size: 10px;

    line-height: 1.4;

    font-weight: 600;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nf-recent-content span {
    margin-top: 4px;

    font-size: 8px;

    opacity: .42;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.nf-categories a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 8px 0;

    border-bottom: 1px solid rgba(255,255,255,.05);

    color: inherit;

    text-decoration: none;

    font-size: 10px;
}

.nf-categories a:last-child {
    border-bottom: 0;
}

.nf-categories a span {
    opacity: .7;
}

.nf-categories a strong {
    min-width: 22px;

    padding: 3px 5px;

    border-radius: 4px;

    background: rgba(255,255,255,.06);

    text-align: center;

    font-size: 8px;

    font-weight: 500;

    opacity: .65;
}

.nf-categories a:hover span {
    opacity: 1;
}


/* =========================================================
   TAGS
   ========================================================= */

.nf-tag-list {
    display: flex;

    flex-wrap: wrap;

    gap: 6px;
}

.nf-tag-list a {
    display: inline-flex;

    align-items: center;

    min-height: 25px;

    padding: 0 8px;

    border-radius: 5px;

    background: rgba(255,255,255,.055);

    color: inherit;

    text-decoration: none;

    font-size: 9px;

    transition:
        background .16s ease,
        transform .16s ease;
}

.nf-tag-list a:hover {
    background: rgba(255,255,255,.10);

    transform: translateY(-1px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.nf-footer {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 22px;

    padding-top: 13px;

    border-top: 1px solid rgba(255,255,255,.06);

    font-size: 9px;

    opacity: .42;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .nf-layout {
        grid-template-columns:
            minmax(0,1fr)
            270px;

        gap: 17px;
    }

    .nf-header h1 {
        font-size: 30px;
    }

}


/* =========================================================
   SMALL LAPTOP / TABLET
   ========================================================= */

@media (max-width: 900px) {

    .nf-layout {
        grid-template-columns: 1fr;
    }

    .nf-sidebar {
        display: grid;

        grid-template-columns:
            repeat(2,minmax(0,1fr));

        gap: 10px;
    }

    .nf-box {
        min-width: 0;
    }

    .nf-info {
        grid-column: span 1;
    }

    .nf-recent {
        grid-column: span 1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .nf-page {
        width: 100%;
    }

    .nf-breadcrumb {
        margin-bottom: 12px;

        font-size: 10px;

        gap: 6px;
    }

    .nf-header {
        margin-bottom: 12px;
    }

    .nf-header h1 {
        font-size: 25px;

        letter-spacing: -.3px;
    }

    .nf-meta {
        gap: 6px 11px;

        margin-top: 8px;

        font-size: 9px;
    }

    .nf-hero {
        aspect-ratio: 16 / 9;

        margin-bottom: 16px;

        border-radius: 8px;
    }

    .nf-content {
        padding: 0;

        font-size: 13px;

        line-height: 1.75;
    }

    .nf-content h2 {
        font-size: 20px;
    }

    .nf-content h3 {
        font-size: 17px;
    }

    .nf-share {
        margin-top: 22px;
    }

    .nf-navigation {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .nf-next {
        text-align: left;
    }

    .nf-sidebar {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .nf-header h1 {
        font-size: 21px;
    }

    .nf-meta {
        font-size: 8px;
    }

    .nf-hero {
        border-radius: 7px;
    }

    .nf-content {
        font-size: 12px;

        line-height: 1.72;
    }

    .nf-content h2 {
        font-size: 18px;

        margin-top: 24px;
    }

    .nf-content h3 {
        font-size: 16px;
    }

    .nf-box {
        padding: 13px;
    }

    .nf-share-buttons a {
        width: 33px;
        height: 33px;
    }

    .nf-footer {
        flex-direction: column;

        gap: 5px;
    }

}