/* ==========================================================================
   News & Press + Single Post — modern redesign
   All styles are scoped under `.np-modern` so nothing here leaks into other
   templates. Shares the brand tokens used by the Disaster Relief redesign.
   ========================================================================== */

.np-modern {
    --np-red: #A41D21;
    --np-red-dark: #7d1518;
    --np-ink: #14171a;
    --np-muted: #5c6670;
    --np-line: #e6e8ec;
    --np-soft: #f5f6f8;
    --np-radius: 18px;
    --np-shadow: 0 24px 60px rgba(20, 23, 26, 0.12);
    --np-shadow-sm: 0 16px 40px rgba(20, 23, 26, 0.10);
    color: var(--np-ink);
    font-family: 'Azo Sans', sans-serif;
    overflow-x: hidden;
}

.np-modern *,
.np-modern *::before,
.np-modern *::after {
    box-sizing: border-box;
}

.np-modern .np-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.np-modern .np-container--narrow {
    max-width: 820px;
}

/* --- Shared bits --------------------------------------------------------- */
.np-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--np-red);
    margin: 0 0 18px;
}

.np-kicker--light {
    color: #fff;
}

.np-kicker--pill {
    background: rgba(164, 29, 33, 0.08);
    padding: 8px 16px;
    border-radius: 999px;
}

.np-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 999px;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    line-height: 1;
    cursor: pointer;
    border: none;
}

.np-btn svg {
    width: 16px;
    height: 16px;
    transition: transform .25s ease;
}

.np-btn:hover svg {
    transform: translateX(4px);
}

.np-btn--primary {
    background: var(--np-red);
    color: #fff;
    box-shadow: 0 14px 30px rgba(164, 29, 33, 0.32);
}

.np-btn--primary:hover {
    background: var(--np-red-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(164, 29, 33, 0.42);
}

.np-btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.np-btn--ghost:hover {
    background: #fff;
    color: var(--np-ink);
    transform: translateY(-3px);
}

.np-btn--outline {
    background: transparent;
    color: var(--np-red);
    border: 2px solid rgba(164, 29, 33, 0.35);
    box-shadow: none;
}

.np-btn--outline:hover {
    background: var(--np-red);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--np-red);
}

/* --- Hero ---------------------------------------------------------------- */
.np-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: #1a1d21;
    color: #fff;
    text-align: center;
}

.np-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 12, 14, 0.55) 0%, rgba(10, 12, 14, 0.4) 45%, rgba(10, 12, 14, 0.85) 100%);
}

.np-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 150px 24px 110px;
}

.np-hero__title {
    /* reduced ~25% from clamp(40px,6.5vw,76px) per request */
    font-size: clamp(30px, 4.9vw, 57px);
    font-weight: 900;
    line-height: 1.04;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
}

.np-hero__subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.5;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 auto;
    max-width: 680px;
}

/* --- Section heading ----------------------------------------------------- */
.np-section {
    padding: 90px 0;
}

.np-section--soft {
    background: var(--np-soft);
}

.np-section__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.np-section__title {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.12;
    margin: 0;
}

.np-section__title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: var(--np-red);
    border-radius: 4px;
    margin: 20px auto 0;
}

/* --- Featured (latest) article ------------------------------------------- */
.np-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--np-radius);
    overflow: hidden;
    box-shadow: var(--np-shadow);
    margin-bottom: 64px;
}

.np-featured__media {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.np-featured__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.np-featured:hover .np-featured__media img {
    transform: scale(1.05);
}

.np-featured__badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    background: var(--np-red);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(164, 29, 33, 0.4);
}

.np-featured__body {
    padding: 54px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.np-featured__meta {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--np-red);
    margin: 0 0 16px;
}

.np-featured__title {
    font-size: clamp(26px, 2.6vw, 36px);
    font-weight: 900;
    line-height: 1.18;
    margin: 0 0 20px;
}

.np-featured__title a {
    color: var(--np-ink);
    text-decoration: none;
    transition: color .2s ease;
}

.np-featured__title a:hover {
    color: var(--np-red);
}

.np-featured__excerpt {
    font-size: 17px;
    line-height: 1.75;
    color: var(--np-muted);
    margin: 0 0 28px;
}

.np-featured__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* --- Card grid ----------------------------------------------------------- */
.np-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.np-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--np-radius);
    overflow: hidden;
    box-shadow: var(--np-shadow-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}

.np-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--np-shadow);
}

.np-card__media {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    display: block;
}

.np-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.np-card:hover .np-card__media img {
    transform: scale(1.07);
}

.np-card__date {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(20, 23, 26, 0.82);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
}

.np-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 26px 26px 28px;
}

.np-card__title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    margin: 0 0 14px;
}

.np-card__title a {
    color: var(--np-ink);
    text-decoration: none;
    transition: color .2s ease;
}

.np-card__title a:hover {
    color: var(--np-red);
}

.np-card__excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--np-muted);
    margin: 0 0 22px;
}

.np-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--np-line);
}

.np-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--np-red);
    transition: gap .2s ease;
}

.np-card__link svg {
    width: 14px;
    height: 14px;
}

.np-card__link:hover {
    gap: 12px;
    color: var(--np-red-dark);
}

.np-card__link--muted {
    color: var(--np-muted);
}

.np-card__link--muted:hover {
    color: var(--np-ink);
}

/* --- Empty state --------------------------------------------------------- */
.np-empty {
    text-align: center;
    color: var(--np-muted);
    font-size: 18px;
    padding: 40px 0;
}

/* --- YouTube section ----------------------------------------------------- */
.np-youtube {
    padding: 90px 0;
}

.np-youtube .np-section__head {
    margin-bottom: 44px;
}

/* =========================================================================
   SINGLE POST
   ========================================================================= */
.np-single .np-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 0 22px;
}

.np-single .np-hero__pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 999px;
}

.np-single .np-hero__pill--cat {
    background: var(--np-red);
    color: #fff;
}

.np-single .np-hero__pill--date {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Article body -------------------------------------------------------- */
.np-article {
    padding: 76px 0 60px;
}

.np-article__body {
    font-size: 18px;
    line-height: 1.85;
    color: #2b3138;
}

.np-article__body > p:first-of-type {
    font-size: 21px;
    line-height: 1.7;
    color: var(--np-ink);
    font-weight: 500;
}

.np-article__body p {
    margin: 0 0 26px;
}

.np-article__body h2,
.np-article__body h3,
.np-article__body h4 {
    font-weight: 900;
    line-height: 1.25;
    color: var(--np-ink);
    margin: 46px 0 18px;
}

.np-article__body h2 {
    font-size: clamp(24px, 3vw, 32px);
    padding-top: 6px;
}

.np-article__body h2::before {
    content: "";
    display: block;
    width: 54px;
    height: 4px;
    background: var(--np-red);
    border-radius: 4px;
    margin-bottom: 22px;
}

.np-article__body h3 {
    font-size: clamp(21px, 2.4vw, 26px);
}

.np-article__body h4 {
    font-size: 19px;
}

.np-article__body a {
    color: var(--np-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

.np-article__body a:hover {
    color: var(--np-red-dark);
}

.np-article__body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--np-radius);
    box-shadow: var(--np-shadow-sm);
    margin: 12px 0 30px;
    display: block;
}

.np-article__body ul,
.np-article__body ol {
    margin: 0 0 26px;
    padding-left: 24px;
}

.np-article__body li {
    margin-bottom: 10px;
}

.np-article__body blockquote {
    margin: 34px 0;
    padding: 8px 0 8px 30px;
    border-left: 4px solid var(--np-red);
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
    color: var(--np-ink);
}

.np-article__body strong {
    font-weight: 900;
    color: var(--np-ink);
}

/* --- PDF download card --------------------------------------------------- */
.np-pdf {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--np-soft);
    border: 1px solid var(--np-line);
    border-radius: var(--np-radius);
    padding: 26px 30px;
    margin: 44px 0 0;
}

.np-pdf__icon {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--np-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.np-pdf__icon svg {
    width: 28px;
    height: 28px;
}

.np-pdf__info {
    flex: 1;
    min-width: 0;
}

.np-pdf__label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--np-red);
    margin: 0 0 4px;
}

.np-pdf__name {
    font-size: 17px;
    font-weight: 900;
    color: var(--np-ink);
    margin: 0;
}

.np-pdf .np-btn {
    flex-shrink: 0;
}

/* --- Article footer / back nav ------------------------------------------- */
.np-article__nav {
    margin-top: 56px;
    padding-top: 34px;
    border-top: 1px solid var(--np-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.np-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--np-ink);
    transition: gap .2s ease, color .2s ease;
}

.np-back svg {
    width: 16px;
    height: 16px;
    transition: transform .2s ease;
}

.np-back:hover {
    color: var(--np-red);
}

.np-back:hover svg {
    transform: translateX(-4px);
}

/* --- More news band ------------------------------------------------------ */
.np-more {
    padding: 84px 0;
    background: var(--np-soft);
}

/* --- Closing CTA --------------------------------------------------------- */
.np-cta {
    padding: 84px 0;
    background: linear-gradient(135deg, var(--np-red) 0%, var(--np-red-dark) 100%);
    text-align: center;
    color: #fff;
}

.np-cta__title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 auto 16px;
    max-width: 700px;
    color: #fff;
}

.np-cta__text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.np-cta .np-btn--primary {
    background: #fff;
    color: var(--np-red);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.np-cta .np-btn--primary:hover {
    background: var(--np-ink);
    color: #fff;
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 991px) {
    .np-featured {
        grid-template-columns: 1fr;
    }

    .np-featured__media {
        min-height: 300px;
    }

    .np-featured__body {
        padding: 40px 34px;
    }

    .np-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .np-hero {
        min-height: 380px;
    }

    .np-hero__inner {
        padding: 120px 22px 80px;
    }

    .np-section,
    .np-youtube,
    .np-more {
        padding: 60px 0;
    }

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

    .np-featured__body {
        padding: 34px 26px;
    }

    .np-article {
        padding: 54px 0 40px;
    }

    .np-article__body {
        font-size: 17px;
    }

    .np-article__body > p:first-of-type {
        font-size: 19px;
    }

    .np-pdf {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .np-pdf .np-btn {
        width: 100%;
        justify-content: center;
    }

    .np-cta {
        padding: 60px 0;
    }
}

/* deploy hannabrothersw-golive */
