.news-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/* =========================================================
   HEADER
   ========================================================= */

.news-header {
    min-height: 90px;

    padding:
        20px
        clamp(22px, 5vw, 80px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    background:
        rgba(7, 7, 9, 0.92);
}


.news-brand {
    display: flex;
    align-items: end;
    gap: 3px;
}


.news-brand-main {
    color: #f2f2f3;

    font-size: 29px;
    font-weight: 950;

    letter-spacing: -0.055em;
}


.news-brand-dot {
    color: var(--red-bright);

    font-size: 20px;
    font-weight: 950;
}


.news-back {
    min-height: 38px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    gap: 9px;

    border: 1px solid var(--border);
    border-radius: 4px;

    color: #9999a1;

    font-size: 8px;
    font-weight: 900;
}


.news-back span {
    color: var(--red-bright);
}


/* =========================================================
   MAIN
   ========================================================= */

.news-main {
    width: 100%;
    max-width: 1450px;

    margin: 0 auto;

    padding:
        36px
        clamp(22px, 5vw, 80px)
        75px;

    flex: 1;
}


.breadcrumb {
    margin-bottom: 30px;

    display: flex;
    gap: 9px;

    color: #66666e;

    font-size: 8px;
    font-weight: 800;
}


.breadcrumb span:last-child {
    color: #9999a0;
}


/* =========================================================
   TITLE
   ========================================================= */

.news-title {
    position: relative;

    margin-bottom: 38px;
    padding-bottom: 28px;
}


.news-title::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--red-bright),
            rgba(227, 38, 46, 0.25) 28%,
            var(--border) 60%
        );
}


.news-kicker {
    color: var(--red-bright);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.22em;
}


.news-title h1 {
    margin:
        5px
        0
        7px;

    color: #f1f1f3;

    font-size:
        clamp(38px, 5vw, 58px);

    font-weight: 950;

    letter-spacing: -0.05em;
}


.news-title p {
    margin: 0;

    color: #777780;

    font-size: 11px;
}


/* =========================================================
   META / CATEGORIES
   ========================================================= */

.story-meta {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #606068;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 0.1em;
}


.story-category {
    padding:
        5px
        7px;

    border-radius: 3px;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 0.08em;
}


.story-category.website {
    color: #ff656c;

    border:
        1px solid rgba(227, 38, 46, 0.25);

    background:
        rgba(227, 38, 46, 0.07);
}


.story-category.update {
    color: #e9a53f;

    border:
        1px solid rgba(233, 165, 63, 0.22);

    background:
        rgba(233, 165, 63, 0.06);
}


.story-category.feature {
    color: #56d982;

    border:
        1px solid rgba(86, 217, 130, 0.22);

    background:
        rgba(86, 217, 130, 0.06);
}


.story-category.development {
    color: #9a8cff;

    border:
        1px solid rgba(154, 140, 255, 0.22);

    background:
        rgba(154, 140, 255, 0.06);
}


/* =========================================================
   FEATURED STORY
   ========================================================= */

.featured-story {
    position: relative;

    min-height: 330px;

    margin-bottom: 18px;

    overflow: hidden;

    display: grid;

    grid-template-columns:
        125px
        1fr;

    border: 1px solid var(--border);
    border-radius: 7px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(227, 38, 46, 0.12),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #101013,
            #09090b
        );

    transition:
        border-color 180ms ease,
        transform 180ms ease;
}


.featured-story:hover {
    transform: translateY(-2px);

    border-color:
        rgba(227, 38, 46, 0.38);
}


.featured-story::after {
    content: "";

    position: absolute;

    right: -100px;
    top: -210px;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(227, 38, 46, 0.08);

    transform: rotate(45deg);

    pointer-events: none;
}


.featured-number {
    padding-top: 38px;

    border-right:
        1px solid var(--border);

    color:
        rgba(255, 255, 255, 0.055);

    text-align: center;

    font-size: 58px;
    font-weight: 950;

    letter-spacing: -0.07em;
}


.featured-content {
    max-width: 900px;

    padding:
        40px
        clamp(30px, 5vw, 65px);

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.featured-content h2 {
    max-width: 800px;

    margin:
        19px
        0
        13px;

    color: #f3f3f5;

    font-size:
        clamp(30px, 4vw, 48px);

    line-height: 0.98;

    font-weight: 950;

    letter-spacing: -0.045em;
}


.featured-content p {
    max-width: 700px;

    margin:
        0
        0
        29px;

    color: #85858d;

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


.featured-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.featured-bottom > span {
    color: #55555d;

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 0.15em;
}


.featured-bottom a {
    display: flex;
    align-items: center;
    gap: 17px;

    color: #a6a6ad;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.07em;

    transition: color 180ms ease;
}


.featured-bottom a:hover {
    color: #fff;
}


.featured-bottom b {
    color: var(--red-bright);
}


/* =========================================================
   NEWS FEED
   ========================================================= */

.news-feed {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 7px;

    background:
        rgba(12, 12, 15, 0.72);
}


.news-story {
    min-height: 210px;

    display: grid;

    grid-template-columns:
        72px
        115px
        1fr;

    transition:
        background 180ms ease;
}


.news-story:not(:last-child) {
    border-bottom:
        1px solid var(--border);
}


.news-story:hover {
    background:
        rgba(255, 255, 255, 0.014);
}


.story-index {
    padding-top: 29px;

    border-right:
        1px solid var(--border);

    color: #46464e;

    text-align: center;

    font-size: 9px;
    font-weight: 900;
}


.story-date {
    padding-top: 29px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border-right:
        1px solid var(--border);
}


.story-date span {
    color: var(--red-bright);

    font-size: 7px;
    font-weight: 900;

    letter-spacing: 0.15em;
}


.story-date strong {
    margin:
        3px
        0;

    color: #d7d7db;

    font-size: 30px;
    font-weight: 950;

    line-height: 1;
}


.story-date small {
    color: #56565e;

    font-size: 7px;
    font-weight: 800;
}


.story-body {
    padding:
        28px
        clamp(24px, 4vw, 50px);
}


.story-body h2 {
    margin:
        13px
        0
        9px;

    color: #e7e7ea;

    font-size:
        clamp(20px, 2.2vw, 28px);

    font-weight: 950;

    letter-spacing: -0.025em;
}


.story-body p {
    max-width: 760px;

    margin:
        0
        0
        18px;

    color: #777780;

    font-size: 10px;
    line-height: 1.7;
}


.story-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color: #9898a0;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 0.07em;

    transition:
        color 180ms ease,
        gap 180ms ease;
}


.story-link span {
    color: var(--red-bright);
}


.story-link:hover {
    color: #fff;
    gap: 19px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.news-footer {
    min-height: 80px;

    padding:
        20px
        clamp(22px, 5vw, 80px);

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    border-top:
        1px solid var(--border);

    color: #6e6e76;

    font-size: 9px;
}


.news-footer strong {
    color: #a0a0a7;
}


.news-footer a {
    justify-self: end;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .news-header {
        padding:
            15px
            16px;
    }


    .news-brand-main {
        font-size: 23px;
    }


    .news-brand-dot {
        font-size: 16px;
    }


    .news-main {
        padding:
            25px
            13px
            45px;
    }


    .news-title {
        margin-bottom: 24px;
    }


    .featured-story {
        grid-template-columns:
            1fr;

        min-height: 0;
    }


    .featured-number {
        display: none;
    }


    .featured-content {
        padding:
            30px
            21px;
    }


    .featured-content h2 {
        font-size: 31px;
    }


    .featured-bottom {
        align-items: flex-start;
        flex-direction: column;
    }


    .news-story {
        grid-template-columns:
            55px
            1fr;
    }


    .story-index {
        display: none;
    }


    .story-date {
        padding-top: 26px;
    }


    .story-date strong {
        font-size: 24px;
    }


    .story-body {
        padding:
            25px
            18px;
    }


    .story-body h2 {
        font-size: 20px;
    }


    .news-footer {
        grid-template-columns:
            1fr;

        gap: 9px;

        text-align: center;
    }


    .news-footer a {
        justify-self: center;
    }

}