/*
Theme Name: Euro News Agency Premium
Theme URI: https://euronewsagency.uk/
Description: Premium cinematic child theme for Euro News Agency.
Author: Euro News Agency
Template: generatepress
Version: 1.0.0
Text Domain: ena-premium
*/

:root {
    --ena-black: #050607;
    --ena-charcoal: #101317;
    --ena-panel: #171b20;
    --ena-line: rgba(255, 255, 255, 0.12);
    --ena-line-strong: rgba(255, 255, 255, 0.22);
    --ena-white: #f7f4ed;
    --ena-muted: #b8b0a5;
    --ena-soft: #dad4c8;
    --ena-gold: #c49a57;
    --ena-gold-soft: #e2c58b;
    --ena-blue: #08182a;
    --ena-blue-2: #12304c;
    --ena-max: 1180px;
    --ena-radius: 8px;
    --ena-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ena-black);
    color: var(--ena-white);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body.admin-bar .ena-header {
    top: 0;
}

img,
video {
    max-width: 100%;
    height: auto;
}

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

p {
    margin: 0 0 1.25rem;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 10000;
    top: 14px;
    left: 14px;
    width: auto;
    height: auto;
    clip: auto;
    padding: 10px 14px;
    background: var(--ena-white);
    color: var(--ena-black);
}

.ena-shell {
    width: min(calc(100% - 40px), var(--ena-max));
    margin: 0 auto;
}

.ena-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 6, 7, 0.78);
    backdrop-filter: blur(18px);
}

.ena-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 24px;
}

.ena-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
}

.ena-brand__mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(226, 197, 139, 0.42);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(226, 197, 139, 0.28), rgba(18, 48, 76, 0.16) 42%, rgba(5, 6, 7, 0.72));
    color: var(--ena-gold-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 700;
}

.ena-brand__text {
    display: grid;
    line-height: 1.15;
}

.ena-brand__name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 700;
}

.ena-brand__strap {
    color: var(--ena-muted);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.ena-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: rgba(247, 244, 237, 0.86);
    font-size: 0.88rem;
}

.ena-nav ul {
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ena-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
}

.ena-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 1px;
    background: var(--ena-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.ena-nav a:hover::after,
.ena-nav .current-menu-item a::after {
    transform: scaleX(1);
}

.ena-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ena-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--ena-white);
    cursor: pointer;
}

.ena-menu-toggle span,
.ena-menu-toggle span::before,
.ena-menu-toggle span::after {
    display: block;
    width: 18px;
    height: 1px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.ena-menu-toggle span::before,
.ena-menu-toggle span::after {
    content: "";
    position: relative;
}

.ena-menu-toggle span::before {
    top: -6px;
}

.ena-menu-toggle span::after {
    top: 5px;
}

.ena-menu-toggle.is-open span {
    transform: rotate(45deg);
}

.ena-menu-toggle.is-open span::before {
    transform: translateY(6px) rotate(90deg);
}

.ena-menu-toggle.is-open span::after {
    opacity: 0;
}

.ena-main {
    background:
        linear-gradient(180deg, rgba(8, 24, 42, 0.42), rgba(5, 6, 7, 0) 36rem),
        var(--ena-black);
}

.ena-hero {
    position: relative;
    min-height: 92svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    isolation: isolate;
}

.ena-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.ena-hero__media video,
.ena-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ena-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 6, 7, 0.92) 0%, rgba(5, 6, 7, 0.62) 44%, rgba(5, 6, 7, 0.2) 100%),
        linear-gradient(0deg, var(--ena-black) 0%, rgba(5, 6, 7, 0.04) 52%, rgba(5, 6, 7, 0.58) 100%);
}

.ena-hero__content {
    width: min(calc(100% - 40px), var(--ena-max));
    margin: 0 auto;
    padding: 0 0 8.5rem;
}

.ena-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ena-gold-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ena-kicker::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 1px;
    background: var(--ena-gold);
}

.ena-hero h1,
.page-hero h1 {
    max-width: 850px;
    margin: 1.2rem 0 1.4rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 0.98;
}

.ena-hero__lead,
.page-hero__lead {
    max-width: 700px;
    color: rgba(247, 244, 237, 0.84);
    font-size: 1.2rem;
    line-height: 1.72;
}

.ena-hero__actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 2.1rem;
}

.ena-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    max-width: 100%;
    padding: 0 18px;
    border: 1px solid rgba(226, 197, 139, 0.45);
    border-radius: 999px;
    background: rgba(226, 197, 139, 0.12);
    color: var(--ena-white);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.ena-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.ena-button:hover {
    transform: translateY(-1px);
    background: rgba(226, 197, 139, 0.2);
    border-color: rgba(226, 197, 139, 0.82);
}

.ena-button--ghost {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.04);
}

.ena-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin-top: 3.3rem;
    border-top: 1px solid var(--ena-line);
}

.ena-hero__metric {
    padding: 20px 20px 0 0;
}

.ena-hero__metric strong {
    display: block;
    color: var(--ena-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    line-height: 1.1;
}

.ena-hero__metric span {
    display: block;
    margin-top: 7px;
    color: var(--ena-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.section {
    padding: 6.5rem 0;
    position: relative;
}

.section--tight {
    padding: 4.8rem 0;
}

.section--panel {
    background:
        linear-gradient(180deg, rgba(18, 48, 76, 0.14), rgba(5, 6, 7, 0)),
        var(--ena-charcoal);
}

.section--light {
    background: var(--ena-white);
    color: var(--ena-black);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.62fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 3rem;
}

.section-head h2,
.split-copy h2,
.service-band h2,
.team-feature h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.08;
}

.section-head p,
.split-copy p,
.service-band p {
    color: var(--ena-muted);
    font-size: 1.02rem;
}

.section--light .section-head p,
.section--light .split-copy p {
    color: #514a43;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 54px;
    align-items: center;
}

.split--reverse {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.split--reverse .split-copy {
    order: 2;
}

.split-media {
    position: relative;
    overflow: hidden;
    border-radius: var(--ena-radius);
    box-shadow: var(--ena-shadow);
    background: var(--ena-panel);
}

.split-media img,
.split-media video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transform: scale(1.001);
}

.split-media--portrait img {
    aspect-ratio: 4 / 5;
}

.split-media::after,
.story-card__media::after,
.team-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 6, 7, 0.02), rgba(5, 6, 7, 0.42));
    pointer-events: none;
}

.split-copy {
    max-width: 600px;
}

.split-copy h2 {
    margin: 0.8rem 0 1.2rem;
}

.split-copy .lede {
    color: rgba(247, 244, 237, 0.88);
    font-size: 1.12rem;
}

.section--light .split-copy .lede {
    color: #24211f;
}

.detail-list {
    display: grid;
    gap: 12px;
    margin: 1.7rem 0 0;
    padding: 0;
    list-style: none;
}

.detail-list li {
    display: flex;
    gap: 12px;
    color: rgba(247, 244, 237, 0.78);
}

.section--light .detail-list li {
    color: #38322e;
}

.detail-list li::before {
    content: "";
    flex: 0 0 7px;
    width: 7px;
    height: 7px;
    margin-top: 10px;
    border-radius: 50%;
    background: var(--ena-gold);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--ena-line);
    border: 1px solid var(--ena-line);
}

.capability-card {
    display: grid;
    align-content: space-between;
    min-height: 280px;
    padding: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
        var(--ena-charcoal);
}

.capability-card span {
    color: var(--ena-gold-soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.capability-card h3 {
    margin: 1.3rem 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.18;
}

.capability-card p {
    color: var(--ena-muted);
    font-size: 0.96rem;
}

.capability-card a {
    margin-top: 1.4rem;
    color: var(--ena-white);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.story-card {
    min-width: 0;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--ena-line);
    border-radius: var(--ena-radius);
    overflow: hidden;
}

.story-card__media {
    position: relative;
    overflow: hidden;
}

.story-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 260ms ease;
}

.story-card:hover .story-card__media img {
    transform: scale(1.035);
}

.story-card__body {
    padding: 22px;
}

.story-card__meta {
    color: var(--ena-gold-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.story-card h3 {
    margin: 0.8rem 0 0.7rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
}

.story-card p {
    color: var(--ena-muted);
    font-size: 0.94rem;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(140px, 1fr));
    gap: 14px;
}

.short-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    border: 1px solid var(--ena-line);
    border-radius: var(--ena-radius);
    background: #050607;
}

.short-card video {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    display: block;
}

.short-card__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 44px 15px 15px;
    background: linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.86));
}

.short-card__caption strong,
.short-card__caption span {
    display: block;
}

.short-card__caption strong {
    font-size: 0.92rem;
    line-height: 1.25;
}

.short-card__caption span {
    margin-top: 4px;
    color: var(--ena-gold-soft);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.team-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--ena-line);
    border-radius: var(--ena-radius);
    background: rgba(255, 255, 255, 0.045);
}

.team-card__image {
    position: relative;
    overflow: hidden;
}

.team-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.team-card__body {
    padding: 23px;
}

.team-card h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.18;
}

.team-card__role {
    display: block;
    margin: 8px 0 12px;
    color: var(--ena-gold-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.team-card p {
    color: var(--ena-muted);
    font-size: 0.94rem;
}

.team-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(247, 244, 237, 0.78);
    font-size: 0.9rem;
}

.team-card li + li {
    margin-top: 8px;
}

.team-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 44px;
    align-items: center;
    margin-bottom: 4rem;
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 48px;
    align-items: stretch;
}

.contact-panel,
.service-band {
    border: 1px solid var(--ena-line);
    border-radius: var(--ena-radius);
    background:
        linear-gradient(145deg, rgba(226, 197, 139, 0.08), rgba(255, 255, 255, 0.02)),
        var(--ena-charcoal);
    padding: 34px;
}

.contact-panel dl {
    margin: 0;
}

.contact-panel dt {
    color: var(--ena-gold-soft);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-panel dd {
    margin: 8px 0 22px;
    color: rgba(247, 244, 237, 0.86);
}

.ena-footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--ena-line);
    background: #040506;
}

.ena-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.45fr) minmax(240px, 0.55fr);
    gap: 42px;
}

.ena-footer h2,
.ena-footer h3 {
    margin: 0 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.ena-footer p,
.ena-footer li,
.ena-footer address {
    color: var(--ena-muted);
    font-size: 0.94rem;
    font-style: normal;
}

.ena-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ena-footer li + li {
    margin-top: 9px;
}

.ena-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ena-line);
    color: rgba(184, 176, 165, 0.72);
    font-size: 0.84rem;
}

.page-hero {
    padding: 7.2rem 0 4.8rem;
    background:
        linear-gradient(90deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.58)),
        var(--ena-blue);
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.72fr);
    gap: 52px;
    align-items: end;
}

.page-hero__image {
    overflow: hidden;
    border-radius: var(--ena-radius);
    box-shadow: var(--ena-shadow);
}

.page-hero__image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.page-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.page-content-card {
    border: 1px solid var(--ena-line);
    border-radius: var(--ena-radius);
    background: rgba(255, 255, 255, 0.045);
    padding: 28px;
}

.page-content-card h2 {
    margin: 0 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 500;
    line-height: 1.18;
}

.page-content-card p {
    color: var(--ena-muted);
    white-space: pre-line;
}

.single-article {
    padding: 6.2rem 0;
}

.single-article__header {
    max-width: 860px;
    margin: 0 auto 3rem;
}

.single-article__header h1 {
    margin: 1rem 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.06;
}

.single-article__meta {
    color: var(--ena-gold-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-article__image {
    overflow: hidden;
    border-radius: var(--ena-radius);
    margin-bottom: 3rem;
}

.single-article__image img {
    display: block;
    width: 100%;
    max-height: 640px;
    object-fit: cover;
}

.single-article__body {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(247, 244, 237, 0.84);
    font-size: 1.08rem;
}

.single-article__body h2 {
    margin: 2.2rem 0 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .story-card__media img,
    .ena-button {
        transition: none;
    }
}

@media (max-width: 1120px) {
    .shorts-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .ena-menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .ena-nav {
        position: fixed;
        inset: 76px 0 auto;
        display: none;
        padding: 18px 20px 26px;
        border-bottom: 1px solid var(--ena-line);
        background: rgba(5, 6, 7, 0.96);
        backdrop-filter: blur(16px);
    }

    .ena-nav.is-open {
        display: block;
    }

    .ena-nav ul {
        display: grid;
        gap: 8px;
    }

    .ena-nav a {
        width: 100%;
        min-height: 46px;
    }

    .ena-hero h1,
    .page-hero h1 {
        font-size: 3.1rem;
        line-height: 1.02;
    }

    .ena-hero__content {
        padding-bottom: 5.5rem;
    }

    .ena-hero__metrics,
    .section-head,
    .split,
    .split--reverse,
    .team-feature,
    .contact-band,
    .page-hero__grid,
    .ena-footer__grid {
        grid-template-columns: 1fr;
    }

    .split--reverse .split-copy {
        order: 0;
    }

    .section {
        padding: 4.6rem 0;
    }

    .section-head h2,
    .split-copy h2,
    .service-band h2,
    .team-feature h2 {
        font-size: 2.35rem;
    }

    .capability-grid,
    .story-grid,
    .team-grid,
    .page-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .ena-shell,
    .ena-hero__content {
        width: min(calc(100% - 28px), 330px);
        margin-left: 14px;
        margin-right: auto;
    }

    .ena-header__inner {
        position: relative;
        min-height: 68px;
        gap: 10px;
        flex-wrap: wrap;
        padding-top: 10px;
        padding-right: 0;
    }

    .ena-brand {
        min-width: 0;
    }

    .ena-brand__text {
        min-width: 0;
    }

    .ena-brand__mark {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .ena-brand__name {
        font-size: 0.98rem;
    }

    .ena-brand__strap {
        max-width: 210px;
        overflow: hidden;
        font-size: 0.58rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .ena-menu-toggle {
        display: none !important;
    }

    .ena-kicker {
        display: block;
        max-width: 100%;
        font-size: 0.64rem;
        letter-spacing: 0.1em;
        overflow-wrap: break-word;
    }

    .ena-kicker::before {
        display: block;
        margin-bottom: 12px;
    }

    .ena-nav {
        position: static;
        display: block !important;
        flex: 0 0 calc(100% + 28px);
        margin: 8px -14px 0;
        padding: 0 14px 10px;
        overflow-x: auto;
        border-top: 1px solid var(--ena-line);
        border-bottom: 0;
        background: rgba(5, 6, 7, 0.96);
        scrollbar-width: none;
    }

    .ena-nav::-webkit-scrollbar {
        display: none;
    }

    .ena-nav ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 18px;
        width: max-content;
    }

    .ena-nav a {
        min-height: 38px;
        white-space: nowrap;
        font-size: 0.78rem;
    }

    .ena-hero {
        min-height: 88svh;
    }

    .ena-hero h1,
    .page-hero h1,
    .single-article__header h1 {
        font-size: 2.45rem;
    }

    .ena-hero__lead,
    .page-hero__lead {
        font-size: 1rem;
        overflow-wrap: break-word;
    }

    .ena-hero__actions,
    .section-actions {
        align-items: stretch;
    }

    .ena-button {
        width: 100%;
        min-height: 48px;
        padding: 0 14px;
        font-size: 0.76rem;
    }

    .ena-hero__metrics,
    .capability-grid,
    .story-grid,
    .team-grid,
    .page-content-grid,
    .shorts-grid {
        grid-template-columns: 1fr;
    }

    .ena-hero__metric {
        padding-top: 16px;
    }

    .capability-card {
        min-height: 220px;
        padding: 24px;
    }

    .short-card,
    .short-card video {
        min-height: 440px;
    }

    .page-hero {
        padding: 4.8rem 0 3.6rem;
    }

    .ena-footer__bottom {
        display: grid;
    }
}
