/*
==========================================
TM Pizza Newsroom
==========================================
*/

.newsroom-page,
.newsroom-single-page {
    min-height: 100vh;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 72, 20, 0.13),
            transparent 38rem
        ),
        #070707;
    color: #ffffff;
}

.newsroom-container,
.newsroom-single-container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}


/*
Archive hero
*/

.newsroom-hero {
    position: relative;
    overflow: hidden;
    padding: 160px 0 80px;
    text-align: center;
}

.newsroom-hero-glow,
.newsroom-single-glow {
    position: absolute;
    top: -280px;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(255, 76, 20, 0.18);
    filter: blur(120px);
    pointer-events: none;
}

.newsroom-hero .newsroom-container,
.newsroom-single-header .newsroom-single-container {
    position: relative;
    z-index: 1;
}

.newsroom-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 120, 60, 0.25);
    border-radius: 999px;
    background: rgba(255, 95, 30, 0.08);
    color: #ff8a52;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.newsroom-hero h1 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
}

.newsroom-hero p {
    max-width: 680px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
}


/*
Archive cards
*/

.newsroom-content {
    padding: 30px 0 120px;
}

.newsroom-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.newsroom-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.28);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.newsroom-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 103, 45, 0.35);
    box-shadow:
        0 34px 90px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(255, 72, 20, 0.07);
}

.newsroom-card-image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #111111;
}

.newsroom-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.newsroom-card:hover .newsroom-card-image img {
    transform: scale(1.045);
}

.newsroom-card-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    background:
        radial-gradient(
            circle at center,
            rgba(255, 82, 25, 0.25),
            transparent 58%
        ),
        linear-gradient(
            145deg,
            #17100e,
            #090909
        );
}

.newsroom-card-placeholder span {
    color: rgba(255, 255, 255, 0.9);
    font-family: "Space Grotesk", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.08em;
}

.newsroom-card-body {
    padding: 28px;
}

.newsroom-card-meta,
.newsroom-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.82rem;
    font-weight: 500;
}

.newsroom-card h2 {
    margin: 17px 0 13px;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.newsroom-card h2 a {
    color: #ffffff;
    text-decoration: none;
}

.newsroom-card-excerpt {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}

.newsroom-card-excerpt p {
    margin: 0;
}

.newsroom-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #ff8650;
    font-weight: 700;
    text-decoration: none;
}

.newsroom-read-more span {
    transition: transform 180ms ease;
}

.newsroom-read-more:hover span {
    transform: translateX(5px);
}


/*
Pagination
*/

.newsroom-pagination {
    margin-top: 60px;
}

.newsroom-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.newsroom-pagination .page-numbers {
    display: grid;
    min-width: 46px;
    min-height: 46px;
    padding: 8px 14px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    text-decoration: none;
}

.newsroom-pagination .page-numbers.current {
    border-color: rgba(255, 91, 30, 0.5);
    background: rgba(255, 91, 30, 0.15);
}


/*
Empty state
*/

.newsroom-empty {
    padding: 90px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
}

.newsroom-empty-icon {
    color: #ff7135;
    font-size: 4rem;
}

.newsroom-empty h2 {
    margin: 18px 0 8px;
    font-family: "Space Grotesk", sans-serif;
}

.newsroom-empty p {
    color: rgba(255, 255, 255, 0.58);
}


/*
Single Newsroom
*/

.newsroom-single-header {
    position: relative;
    overflow: hidden;
    padding: 150px 0 70px;
}

.newsroom-back-link {
    display: inline-flex;
    margin-bottom: 42px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-decoration: none;
}

.newsroom-back-link:hover {
    color: #ff8750;
}

.newsroom-single-header h1 {
    max-width: 980px;
    margin: 20px 0 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.newsroom-single-intro {
    max-width: 760px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.7;
}

.newsroom-single-image {
    overflow: hidden;
    margin: 0 0 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.4);
}

.newsroom-single-image img {
    display: block;
    width: 100%;
    height: auto;
}

.newsroom-single-content {
    max-width: 820px;
    margin-inline: auto;
    padding-bottom: 50px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    line-height: 1.85;
}

.newsroom-single-content h2,
.newsroom-single-content h3 {
    margin-top: 2.2em;
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.2;
}

.newsroom-single-content a {
    color: #ff8550;
}

.newsroom-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.newsroom-single-content blockquote {
    margin: 32px 0;
    padding: 18px 24px;
    border-left: 3px solid #ff632e;
    background: rgba(255, 96, 35, 0.06);
    color: rgba(255, 255, 255, 0.86);
}

.newsroom-single-footer {
    max-width: 820px;
    margin: 0 auto;
    padding: 30px 0 110px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.newsroom-back-button {
    display: inline-flex;
    padding: 13px 19px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #ffffff;
    font-weight: 650;
    text-decoration: none;
}


/*
Responsive
*/

@media (max-width: 760px) {

    .newsroom-container,
    .newsroom-single-container {
        width: min(100% - 24px, 1180px);
    }

    .newsroom-hero {
        padding: 125px 0 60px;
    }

    .newsroom-grid {
        grid-template-columns: 1fr;
    }

    .newsroom-card {
        border-radius: 22px;
    }

    .newsroom-card-body {
        padding: 22px;
    }

    .newsroom-single-header {
        padding: 120px 0 50px;
    }

    .newsroom-back-link {
        margin-bottom: 30px;
    }

    .newsroom-single-image {
        margin-bottom: 40px;
        border-radius: 22px;
    }

    .newsroom-single-content {
        font-size: 1rem;
    }
}