:root {
    --ep-bg: #f4f5f7;
    --ep-surface: #ffffff;
    --ep-surface-muted: #f8f9fa;
    --ep-text: #16191d;
    --ep-text-soft: #5f6670;
    --ep-text-faint: #858c95;
    --ep-border: #e1e4e8;
    --ep-border-strong: #cfd4da;
    --ep-red: #c91522;
    --ep-red-dark: #a90f19;
    --ep-green: #14804a;
    --ep-dark: #181d23;
    --ep-dark-soft: #232a31;
    --ep-shadow: 0 6px 20px rgba(22, 25, 29, .06);
    --ep-radius: 6px;
    --ep-shell: 1320px;
    --ep-font: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --ep-z-header: 50;
    --ep-z-overlay: 90;
    --ep-z-modal: 100;
}

:root[data-theme="dark"] {
    --ep-bg: #20252b;
    --ep-surface: #282e35;
    --ep-surface-muted: #30373f;
    --ep-text: #f4f6f8;
    --ep-text-soft: #c3c9cf;
    --ep-text-faint: #949da7;
    --ep-border: #3b434c;
    --ep-border-strong: #4c5661;
    --ep-dark: #1b2026;
    --ep-dark-soft: #262d34;
    --ep-shadow: 0 8px 24px rgba(8, 10, 12, .16);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

html[data-theme="dark"] {
    color-scheme: dark;
}

body.editorial-portal {
    min-width: 320px;
    margin: 0;
    background: var(--ep-bg);
    color: var(--ep-text);
    font-family: var(--ep-font);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.editorial-portal button,
.editorial-portal input,
.editorial-portal select {
    font: inherit;
    letter-spacing: 0;
}

.editorial-portal button,
.editorial-portal a {
    -webkit-tap-highlight-color: transparent;
}

.editorial-portal a {
    color: inherit;
    text-decoration: none;
}

.editorial-portal img {
    display: block;
    max-width: 100%;
}

.editorial-portal [hidden] {
    display: none !important;
}

.editorial-portal .wrapper,
.editorial-portal .np-site-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
}

.editorial-portal .news-shell {
    width: min(calc(100% - 32px), var(--ep-shell));
    margin-inline: auto;
}

.editorial-portal .news-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.hh-desktop-only {
    display: none !important;
}

.hh-mobile-only {
    display: inline-flex !important;
}

.hh-icon-button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.hh-icon-button:hover,
.hh-icon-button:focus-visible {
    background: var(--ep-surface-muted);
    outline: none;
}

/* Header */
.hh-site-header {
    position: relative;
    z-index: var(--ep-z-header);
    width: 100%;
    background: var(--ep-surface);
    color: var(--ep-text);
    border-bottom: 1px solid var(--ep-border);
}

.hh-header-main {
    position: sticky;
    top: 0;
    z-index: calc(var(--ep-z-header) + 1);
    height: calc(62px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
    background: color-mix(in srgb, var(--ep-surface) 96%, transparent);
    border-bottom: 1px solid var(--ep-border);
    backdrop-filter: saturate(150%) blur(10px);
}

.hh-header-main__inner {
    display: grid;
    grid-template-columns: 44px minmax(120px, 1fr) 88px;
    align-items: center;
    height: 62px;
    gap: 6px;
}

.hh-header-brand {
    display: flex;
    min-width: 0;
    justify-self: center;
    align-items: center;
}

.hazar-brand {
    display: inline-flex;
    align-items: center;
    color: var(--ep-text);
}

.hazar-brand__mark {
    display: block;
    width: 112px;
    height: auto;
}

.hh-header-actions {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
}

.hh-notification-wrap {
    position: relative;
}

.hh-header-action,
.hh-account-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--ep-radius);
    background: transparent;
    color: var(--ep-text);
    cursor: pointer;
}

.hh-notification-button {
    position: relative;
    width: 42px;
    padding: 0;
}

.hh-notification-button b {
    position: absolute;
    top: 2px;
    right: 0;
    display: grid;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    place-items: center;
    border: 2px solid var(--ep-surface);
    border-radius: 10px;
    background: var(--ep-red);
    color: #fff;
    font-size: 9px;
    line-height: 1;
}

.hh-notification-panel {
    position: fixed;
    top: calc(66px + env(safe-area-inset-top));
    right: 16px;
    z-index: var(--ep-z-modal);
    width: min(360px, calc(100vw - 32px));
    overflow: hidden;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    background: var(--ep-surface);
    box-shadow: var(--ep-shadow);
}

.hh-notification-panel header,
.hh-notification-panel a {
    display: flex;
    padding: 14px 16px;
    border-bottom: 1px solid var(--ep-border);
}

.hh-notification-panel header {
    align-items: center;
    justify-content: space-between;
}

.hh-notification-panel header button {
    border: 0;
    background: none;
    color: var(--ep-text-soft);
}

.hh-notification-panel a {
    flex-direction: column;
    gap: 3px;
}

.hh-notification-panel a strong {
    font-size: 14px;
    font-weight: 650;
}

.hh-notification-panel a small,
.hh-notification-panel p {
    color: var(--ep-text-soft);
    font-size: 12px;
}

.hh-notification-panel p {
    margin: 0;
    padding: 18px;
}

.hh-category-nav {
    width: 100%;
    background: var(--ep-surface);
    border-bottom: 1px solid var(--ep-border);
}

.hh-category-nav__inner {
    display: flex;
    height: 44px;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.hh-category-nav__inner::-webkit-scrollbar {
    display: none;
}

.hh-category-nav__inner > a,
.hh-category-nav__local > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    padding: 0 13px;
    border-bottom: 2px solid transparent;
    color: var(--ep-text);
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
    scroll-snap-align: start;
}

.hh-category-nav__inner > a:hover,
.hh-category-nav__inner > a:focus-visible,
.hh-category-nav__local > a:hover,
.hh-category-nav__local > a:focus-visible {
    color: var(--ep-red);
    outline: none;
}

.hh-category-nav__inner > a.is-breaking {
    color: var(--ep-red);
    border-bottom-color: var(--ep-red);
}

.hh-category-nav__local,
.hh-category-nav__more {
    position: relative;
    display: flex;
    flex: 0 0 auto;
}

.hh-local-nav-panel,
.hh-category-nav__more {
    display: none;
}

.hh-breaking {
    height: 37px;
    background: var(--ep-red);
    color: #fff;
}

.hh-breaking__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 34px;
    height: 37px;
    align-items: center;
    padding-inline: 0;
}

.hh-breaking__label {
    display: inline-flex;
    height: 100%;
    align-items: center;
    gap: 7px;
    padding-right: 12px;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.hh-breaking__viewport {
    position: relative;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.hh-breaking__item {
    position: absolute;
    inset: 0;
    display: none;
    min-width: 0;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
}

.hh-breaking__item.is-active {
    display: flex;
}

.hh-breaking__item time {
    flex: 0 0 auto;
    padding: 2px 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .16);
    font-size: 10px;
    font-weight: 700;
}

.hh-breaking__item span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hh-breaking__all {
    display: grid;
    width: 34px;
    height: 100%;
    place-items: center;
    color: #fff;
}

/* Homepage */
.news-main {
    display: block;
    width: 100%;
}

.hh-home {
    padding: 16px 0 42px;
}

.hh-home-shell {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.hh-lead-grid {
    display: grid;
    min-width: 0;
    gap: 14px;
}

.hh-main-story {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--ep-radius);
    background: var(--ep-dark-soft);
    box-shadow: var(--ep-shadow);
    touch-action: pan-y;
}

.hh-main-story__slide {
    position: absolute;
    inset: 0;
    display: none;
}

.hh-main-story__slide.is-active {
    display: block;
}

.hh-main-story__slide > a,
.hh-lead-card > a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hh-main-story__image,
.hh-main-story__slide img,
.hh-lead-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 14, 18, .86) 0%, rgba(10, 14, 18, .22) 58%, rgba(10, 14, 18, .03) 100%);
    pointer-events: none;
}

.hh-main-story__content {
    position: absolute;
    right: 20px;
    bottom: 24px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
}

.hh-story-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.hh-category-badge,
.hh-status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 7px;
    border-radius: 3px;
    background: var(--ep-red);
    color: #fff;
    font-size: 10px;
    font-style: normal;
    font-weight: 750;
    line-height: 1;
}

.hh-status-badge {
    background: rgba(19, 24, 29, .82);
}

.hh-main-story__content h1,
.hh-main-story__content h2 {
    display: -webkit-box;
    max-width: 780px;
    margin: 10px 0 0;
    overflow: hidden;
    font-size: clamp(25px, 7vw, 31px);
    font-weight: 730;
    line-height: 1.12;
    letter-spacing: 0;
    text-wrap: balance;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.hh-main-story__spot {
    display: none;
}

.hh-story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
    font-size: 11px;
}

.hh-story-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hh-story-meta--light {
    color: rgba(255, 255, 255, .88);
}

.hh-save-button {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 4;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(15, 19, 24, .58);
    color: #fff;
    cursor: pointer;
}

.hh-main-story__content + .hh-save-button {
    bottom: 16px;
}

.hh-main-story__dots {
    position: absolute;
    right: 16px;
    top: 14px;
    z-index: 5;
    display: flex;
    gap: 5px;
}

.hh-main-story__dots button {
    width: 19px;
    height: 3px;
    padding: 0;
    border: 0;
    border-radius: 2px;
    background: rgba(255, 255, 255, .52);
    cursor: pointer;
}

.hh-main-story__dots button.is-active {
    background: var(--ep-red);
}

.hh-lead-stack,
.hh-context-column {
    display: none;
}

.hh-section {
    min-width: 0;
}

.hh-section-heading,
.hh-media-panel > header,
.editorial-aside-panel > header {
    display: flex;
    min-height: 36px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--ep-border);
}

.hh-section-heading h2,
.hh-media-panel > header h2,
.editorial-aside-panel > header h2 {
    margin: 0;
    padding-bottom: 10px;
    color: var(--ep-text);
    font-size: 18px;
    font-weight: 730;
    line-height: 1.2;
}

.hh-section-heading a,
.hh-media-panel > header a,
.editorial-aside-panel > header a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 5px;
    padding-bottom: 10px;
    color: var(--ep-text-soft);
    font-size: 12px;
    font-weight: 600;
}

.hh-section-heading a:hover,
.hh-section-heading a:focus-visible {
    color: var(--ep-red);
}

.hh-agenda {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 1px solid var(--ep-border);
    border-bottom: 1px solid var(--ep-border);
    background: var(--ep-surface);
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.hh-agenda::-webkit-scrollbar,
.hh-hot-grid::-webkit-scrollbar {
    display: none;
}

.hh-agenda > a {
    position: relative;
    display: grid;
    grid-template-columns: 8px minmax(0, 1fr);
    flex: 0 0 78%;
    min-width: 0;
    min-height: 74px;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-right: 1px solid var(--ep-border);
    scroll-snap-align: start;
}

.hh-agenda__marker {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ep-red);
}

.hh-agenda > a span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.hh-agenda > a strong {
    overflow: hidden;
    color: var(--ep-text);
    font-size: 14px;
    font-weight: 670;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hh-agenda > a small {
    overflow: hidden;
    color: var(--ep-text-soft);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hh-agenda > a em {
    position: absolute;
    top: 8px;
    right: 9px;
    color: var(--ep-red);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.hh-hot-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 5px;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.hh-hot-card {
    flex: 0 0 72%;
    min-width: 0;
    scroll-snap-align: start;
}

.hh-hot-card > a {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hh-hot-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--ep-radius);
    background: var(--ep-surface-muted);
}

.hh-hot-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}

.hh-hot-card a:hover img {
    transform: scale(1.025);
}

.hh-hot-card__category {
    position: absolute;
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    padding: 3px 6px;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(21, 25, 30, .82);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hh-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(16, 20, 25, .78);
    color: #fff;
    font-size: 12px;
    transform: translate(-50%, -50%);
}

.hh-hot-card h3 {
    display: -webkit-box;
    margin: 9px 0 0;
    overflow: hidden;
    color: var(--ep-text);
    font-size: 16px;
    font-weight: 660;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hh-hot-card small,
.hh-category-card__meta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 7px;
    color: var(--ep-text-faint);
    font-size: 11px;
}

.hh-mobile-popular {
    display: block;
    padding: 16px;
    border-top: 1px solid var(--ep-border);
    border-bottom: 1px solid var(--ep-border);
    background: var(--ep-surface);
}

.hh-mobile-popular ol,
.hh-editorial-list ol,
.hh-most-read-panel ol,
.editorial-aside-panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hh-mobile-popular li a,
.hh-editorial-list li a,
.hh-most-read-panel li a,
.editorial-aside-panel li a {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ep-border);
}

.hh-mobile-popular li:last-child a,
.hh-editorial-list li:last-child a,
.hh-most-read-panel li:last-child a,
.editorial-aside-panel li:last-child a {
    border-bottom: 0;
}

.hh-mobile-popular li b,
.hh-editorial-list li b,
.hh-most-read-panel li b,
.editorial-aside-panel li b {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 3px;
    background: var(--ep-red);
    color: #fff;
    font-size: 11px;
}

.hh-mobile-popular li span,
.hh-editorial-list li span,
.hh-most-read-panel li span,
.editorial-aside-panel li span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.hh-mobile-popular li strong,
.hh-editorial-list li strong,
.hh-most-read-panel li strong,
.editorial-aside-panel li strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-weight: 640;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hh-mobile-popular li small,
.hh-editorial-list li small,
.hh-most-read-panel li small,
.editorial-aside-panel li small {
    color: var(--ep-text-faint);
    font-size: 10px;
}

.news-ad-slot {
    display: grid;
    width: 100%;
    min-height: 72px;
    place-items: center;
    overflow: hidden;
    border: 1px dashed var(--ep-border-strong);
    background: var(--ep-surface);
    color: var(--ep-text-faint);
}

.news-ad-slot img,
.news-ad-slot iframe {
    max-width: 100%;
}

.hh-category-section,
.hh-local-section {
    padding-top: 4px;
}

.hh-category-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.hh-category-card {
    min-width: 0;
}

.hh-category-card > a {
    display: grid;
    min-width: 0;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 12px;
}

.hh-category-card__media {
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: var(--ep-radius);
    background: var(--ep-surface-muted);
}

.hh-category-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-category-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.hh-category-card__eyebrow,
.editorial-feed-card__eyebrow {
    color: var(--ep-red);
    font-size: 10px;
    font-weight: 700;
}

.hh-category-card h3 {
    display: -webkit-box;
    margin: 4px 0 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 660;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.hh-category-card p {
    display: none;
}

.hh-category-card.is-lead > a {
    display: block;
}

.hh-category-card.is-lead .hh-category-card__media {
    aspect-ratio: 16 / 9;
}

.hh-category-card.is-lead .hh-category-card__body {
    padding-top: 10px;
}

.hh-category-card.is-lead h3 {
    font-size: 20px;
    line-height: 1.28;
    -webkit-line-clamp: 2;
}

.hh-local-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.hh-local-grid article a {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 12px;
}

.hh-local-grid article img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--ep-radius);
    object-fit: cover;
}

.hh-local-grid article span {
    min-width: 0;
}

.hh-local-grid article small {
    color: var(--ep-red);
    font-size: 10px;
    font-weight: 700;
}

.hh-local-grid article h3 {
    display: -webkit-box;
    margin: 4px 0;
    overflow: hidden;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.hh-local-grid article em {
    color: var(--ep-text-faint);
    font-size: 10px;
    font-style: normal;
}

.hh-media-deck {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    margin-inline: calc((100vw - 100%) / -2);
    padding: 26px max(16px, calc((100vw - min(100vw - 32px, var(--ep-shell))) / 2));
    background: var(--ep-dark);
    color: #f5f7f9;
}

.hh-media-panel {
    min-width: 0;
}

.hh-media-panel > header {
    border-bottom-color: rgba(255, 255, 255, .12);
}

.hh-media-panel > header h2,
.hh-media-panel > header a {
    color: #f5f7f9;
}

.hh-most-read-panel li a {
    border-bottom-color: rgba(255, 255, 255, .1);
}

.hh-most-read-panel li small,
.hh-media-panel small {
    color: #aab2bb;
}

.hh-video-panel > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hh-video-panel a > span {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
}

.hh-video-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hh-video-panel i {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(14, 18, 22, .76);
    color: #fff;
    transform: translate(-50%, -50%);
}

.hh-video-panel a > strong {
    display: -webkit-box;
    margin-top: 8px;
    overflow: hidden;
    font-size: 13px;
    font-weight: 620;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.hh-gallery-panel > div,
.hh-authors-panel > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hh-gallery-panel a,
.hh-authors-panel a {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.hh-gallery-panel img {
    width: 76px;
    height: 54px;
    border-radius: 4px;
    object-fit: cover;
}

.hh-authors-panel img,
.hh-authors-panel .news-avatar,
.hh-authors-panel .cms-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.hh-gallery-panel span,
.hh-authors-panel span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.hh-gallery-panel strong,
.hh-authors-panel strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-weight: 620;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* Category page */
.editorial-category {
    padding: 14px 0 44px;
}

.news-breadcrumb {
    display: flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    color: var(--ep-text-soft);
    font-size: 11px;
    white-space: nowrap;
}

.news-breadcrumb a,
.news-breadcrumb span {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.editorial-category__header {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 0 20px;
    border-top: 1px solid var(--ep-border);
    border-bottom: 1px solid var(--ep-border);
}

.editorial-category__kicker {
    color: var(--ep-red);
    font-size: 11px;
    font-weight: 700;
}

.editorial-category__header h1 {
    margin: 3px 0 0;
    font-size: 31px;
    font-weight: 750;
    line-height: 1.1;
}

.editorial-category__header p {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--ep-text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.editorial-category__tools {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ep-text-soft);
    font-size: 11px;
}

.editorial-category__tools a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface);
}

.editorial-category__subnav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.editorial-category__subnav::-webkit-scrollbar {
    display: none;
}

.editorial-category__subnav a {
    display: inline-flex;
    min-height: 32px;
    flex: 0 0 auto;
    align-items: center;
    padding: 0 11px;
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface);
    font-size: 12px;
    white-space: nowrap;
}

.editorial-category-feature {
    display: grid;
    margin: 20px 0 26px;
    overflow: hidden;
    border-bottom: 1px solid var(--ep-border);
    background: var(--ep-surface);
}

.editorial-category-feature__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.editorial-category-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-category-feature__media .hh-status-badge,
.editorial-feed-card__media .hh-status-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: var(--ep-red);
}

.editorial-category-feature__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 2px 22px;
}

.editorial-category-feature__body > small {
    color: var(--ep-red);
    font-size: 10px;
    font-weight: 700;
}

.editorial-category-feature__body h2 {
    margin: 7px 0 0;
    font-size: 24px;
    font-weight: 720;
    line-height: 1.2;
}

.editorial-category-feature__body p {
    margin: 10px 0 0;
    color: var(--ep-text-soft);
    font-size: 14px;
}

.editorial-category-feature__body > div,
.editorial-feed-card__body > div {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 14px;
    color: var(--ep-text-faint);
    font-size: 11px;
}

.editorial-category-feature__body > div span,
.editorial-feed-card__body > div span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.editorial-category__layout {
    display: grid;
    min-width: 0;
    gap: 28px;
}

.editorial-category__feed,
.editorial-category__grid {
    min-width: 0;
}

.editorial-category__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
}

.editorial-feed-card {
    min-width: 0;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--ep-border);
}

.editorial-feed-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--ep-radius);
    background: var(--ep-surface-muted);
}

.editorial-feed-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-feed-card__body {
    padding-top: 11px;
}

.editorial-feed-card__body h2 {
    display: -webkit-box;
    margin: 5px 0 0;
    overflow: hidden;
    font-size: 18px;
    font-weight: 670;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.editorial-feed-card__body p {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    color: var(--ep-text-soft);
    font-size: 13px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.editorial-category__aside {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 22px;
}

.editorial-aside-panel {
    padding: 16px;
    border: 1px solid var(--ep-border);
    background: var(--ep-surface);
}

.editorial-aside-panel--topics > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.editorial-aside-panel--topics a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 9px;
    border: 1px solid var(--ep-border);
    border-radius: 3px;
    color: var(--ep-text-soft);
    font-size: 11px;
}

.news-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 26px;
}

.news-pagination a,
.news-pagination span {
    display: grid;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    place-items: center;
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface);
    font-size: 13px;
}

.news-pagination .is-active {
    border-color: var(--ep-red);
    background: var(--ep-red);
    color: #fff;
}

.news-empty-state {
    padding: 40px 20px;
    border: 1px solid var(--ep-border);
    background: var(--ep-surface);
    text-align: center;
}

.news-empty-state h1,
.news-empty-state h2 {
    margin: 0;
    font-size: 24px;
}

.news-empty-state p {
    margin: 8px 0 16px;
    color: var(--ep-text-soft);
}

.news-empty-state a {
    color: var(--ep-red);
    font-weight: 650;
}

/* Footer */
.news-footer {
    border-top: 3px solid var(--ep-red);
    background: var(--ep-dark);
    color: #eef1f4;
}

.news-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 34px;
}

.news-footer .hazar-brand {
    color: #fff;
}

.news-footer .hazar-brand__mark {
    width: 116px;
}

.news-footer__brand p {
    max-width: 390px;
    margin: 14px 0 0;
    color: #aeb6bf;
    font-size: 12px;
}

.news-footer__links,
.news-footer__social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.news-footer__links strong,
.news-footer__social > strong {
    margin-bottom: 3px;
    font-size: 13px;
}

.news-footer__links a {
    color: #b7bec7;
    font-size: 12px;
}

.news-footer__social > div {
    display: flex;
    gap: 8px;
}

.news-footer__social a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 3px;
    color: #fff;
}

.news-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #151a1f;
}

.news-footer__bottom .news-shell {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 14px;
    padding-bottom: calc(82px + env(safe-area-inset-bottom));
    color: #8f98a2;
    font-size: 10px;
}

.news-footer__bottom p {
    margin: 0;
}

/* Drawer, search, location and fixed tools */
.news-drawer-backdrop,
.hh-location-backdrop {
    position: fixed;
    inset: 0;
    z-index: var(--ep-z-overlay);
    background: rgba(16, 20, 24, .52);
}

.news-mobile-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: var(--ep-z-modal);
    display: flex;
    width: min(88vw, 380px);
    padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
    flex-direction: column;
    overflow-y: auto;
    background: var(--ep-surface);
    color: var(--ep-text);
    box-shadow: 12px 0 28px rgba(10, 14, 18, .2);
    transform: translateX(-105%);
    transition: transform .22s ease;
}

.news-mobile-drawer.is-open {
    transform: translateX(0);
}

.hh-mobile-drawer__head {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid var(--ep-border);
}

.hh-mobile-drawer__head .hazar-brand__mark {
    width: 110px;
}

.hh-mobile-drawer__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px 16px;
    gap: 0 16px;
}

.hh-mobile-drawer__nav > strong {
    grid-column: 1 / -1;
    padding: 12px 0 7px;
    border-bottom: 1px solid var(--ep-border);
    color: var(--ep-text-soft);
    font-size: 10px;
    font-weight: 700;
}

.hh-mobile-drawer__nav > a {
    display: flex;
    min-height: 42px;
    align-items: center;
    border-bottom: 1px solid var(--ep-border);
    font-size: 13px;
    font-weight: 600;
}

.hh-mobile-drawer__regions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
}

.hh-mobile-drawer__regions a {
    display: flex;
    min-height: 38px;
    align-items: center;
    color: var(--ep-text-soft);
    font-size: 12px;
}

.hh-mobile-drawer__preferences {
    display: flex;
    margin-top: auto;
    padding: 16px;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--ep-border);
}

.hh-mobile-drawer__preferences label {
    color: var(--ep-text-soft);
    font-size: 10px;
    font-weight: 700;
}

.hh-drawer-location-button,
.hh-mobile-drawer__preferences select,
.hh-mobile-drawer__account {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface-muted);
    color: var(--ep-text);
}

.hh-drawer-location-button span {
    flex: 1;
    text-align: left;
}

.hh-mobile-drawer__account {
    margin: 0 16px 16px;
    width: calc(100% - 32px);
    justify-content: center;
    color: var(--ep-red);
    font-weight: 650;
}

.hh-search-panel {
    position: fixed;
    inset: 0;
    z-index: var(--ep-z-modal);
    padding: calc(18px + env(safe-area-inset-top)) 16px;
    background: var(--ep-surface);
}

.hh-search-panel form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
}

.hh-search-panel input {
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--ep-border-strong);
    border-radius: 4px;
    background: var(--ep-surface-muted);
    color: var(--ep-text);
}

.hh-search-panel form > button[type="submit"] {
    min-width: 70px;
    border: 0;
    border-radius: 4px;
    background: var(--ep-red);
    color: #fff;
}

.hh-location-modal {
    position: fixed;
    inset: auto 0 0;
    z-index: var(--ep-z-modal);
    max-height: 88vh;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-y: auto;
    border-radius: 8px 8px 0 0;
    background: var(--ep-surface);
    color: var(--ep-text);
    box-shadow: 0 -12px 32px rgba(10, 14, 18, .2);
}

.hh-location-modal > header,
.hh-location-modal > footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    border-bottom: 1px solid var(--ep-border);
}

.hh-location-modal > header small {
    color: var(--ep-red);
    font-size: 9px;
    font-weight: 700;
}

.hh-location-modal > header h2 {
    margin: 2px 0 0;
    font-size: 20px;
}

.hh-location-search {
    display: flex;
    margin: 14px 16px;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface-muted);
}

.hh-location-search input {
    width: 100%;
    height: 42px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ep-text);
}

.hh-location-current {
    padding: 0 16px 10px;
}

.hh-location-current > button {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: var(--ep-text);
    text-align: left;
}

.hh-location-current span {
    display: flex;
    flex-direction: column;
}

.hh-location-current small {
    color: var(--ep-text-soft);
    font-size: 10px;
}

.hh-location-city-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 0 16px 16px;
}

.hh-location-city-list button {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface-muted);
    color: var(--ep-text);
}

.hh-location-city-list button i {
    visibility: hidden;
    color: var(--ep-green);
}

.hh-location-city-list button.is-selected i {
    visibility: visible;
}

.hh-location-modal > footer {
    border-top: 1px solid var(--ep-border);
    border-bottom: 0;
}

.hh-location-modal > footer > div {
    display: flex;
    gap: 7px;
}

.hh-location-modal > footer button {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface-muted);
    color: var(--ep-text);
}

.hh-location-modal > footer .hh-location-save {
    border-color: var(--ep-red);
    background: var(--ep-red);
    color: #fff;
}

.np-mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: calc(60px + env(safe-area-inset-bottom));
    padding: 6px 4px env(safe-area-inset-bottom);
    border-top: 1px solid var(--ep-border);
    background: color-mix(in srgb, var(--ep-surface) 97%, transparent);
    box-shadow: 0 -5px 16px rgba(16, 20, 24, .07);
    backdrop-filter: blur(12px);
}

.np-mobile-bottom-nav__item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 50px;
    padding: 3px 1px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    border: 0;
    background: transparent;
    color: var(--ep-text-soft);
    font-size: 9px;
}

.np-mobile-bottom-nav__item:first-child {
    color: var(--ep-red);
}

.np-mobile-bottom-nav__item i {
    font-size: 19px;
}

.np-mobile-bottom-nav__icon-wrap {
    position: relative;
}

.np-mobile-bottom-nav__icon-wrap b {
    position: absolute;
    top: -8px;
    right: -10px;
    display: grid;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    place-items: center;
    border-radius: 9px;
    background: var(--ep-red);
    color: #fff;
    font-size: 9px;
}

.news-contact-hub {
    display: none;
}

.news-saved-panel {
    position: fixed;
    inset: auto 10px calc(70px + env(safe-area-inset-bottom)) 10px;
    z-index: 80;
    max-height: 70vh;
    padding: 16px;
    overflow-y: auto;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    background: var(--ep-surface);
    color: var(--ep-text);
    box-shadow: var(--ep-shadow);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 100px));
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.news-saved-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.news-saved-panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-saved-panel > header button,
.news-saved-panel__clear {
    border: 1px solid var(--ep-border);
    border-radius: 4px;
    background: var(--ep-surface-muted);
    color: var(--ep-text);
}

#backToTop {
    position: fixed;
    right: 14px;
    bottom: calc(72px + env(safe-area-inset-bottom));
    z-index: 60;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

#backToTop.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

#backToTop a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: var(--ep-red);
    color: #fff;
    box-shadow: var(--ep-shadow);
}

.hh-weather-icon {
    display: block;
    flex: 0 0 auto;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hh-weather-icon__sun {
    stroke: #e5a415;
    stroke-width: 1.7;
}

.hh-weather-icon__cloud {
    stroke: #68819a;
    stroke-width: 1.7;
}

.hh-weather-icon__rain {
    stroke: #3f85bd;
    stroke-width: 1.7;
}

@media (min-width: 560px) {
    .hh-agenda > a {
        flex-basis: 46%;
    }

    .hh-hot-card {
        flex-basis: 42%;
    }

    .hh-category-grid,
    .hh-local-grid,
    .editorial-category__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .editorial-portal .news-shell {
        width: min(calc(100% - 48px), var(--ep-shell));
    }

    .hh-mobile-only {
        display: none !important;
    }

    .hh-desktop-only {
        display: flex !important;
    }

    .hh-header-main {
        position: relative;
        height: 76px;
        padding: 0;
        backdrop-filter: none;
    }

    .hh-header-main__inner {
        grid-template-columns: 126px minmax(340px, 1fr) minmax(210px, 300px) auto;
        height: 76px;
        gap: 20px;
    }

    .hh-header-brand {
        justify-self: start;
    }

    .hazar-brand__mark {
        width: 124px;
    }

    .hh-header-context {
        min-width: 0;
        align-items: center;
        gap: 18px;
    }

    .hh-header-weather {
        display: flex;
        min-width: 112px;
        align-items: center;
        gap: 7px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--ep-text);
        text-align: left;
        cursor: pointer;
    }

    .hh-weather-icon--header {
        width: 34px;
        height: 34px;
    }

    .hh-header-weather > span {
        display: flex;
        min-width: 0;
        flex-direction: column;
    }

    .hh-header-weather strong {
        font-size: 12px;
        font-weight: 680;
        white-space: nowrap;
    }

    .hh-header-weather small {
        max-width: 92px;
        overflow: hidden;
        color: var(--ep-text-soft);
        font-size: 10px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hh-markets {
        display: flex;
        min-width: 0;
        align-items: center;
        gap: 15px;
    }

    .hh-market {
        display: grid;
        grid-template-columns: auto auto;
        align-items: baseline;
        gap: 1px 6px;
        white-space: nowrap;
    }

    .hh-market small {
        color: var(--ep-text-soft);
        font-size: 9px;
        font-weight: 600;
    }

    .hh-market strong {
        font-size: 11px;
        font-weight: 700;
    }

    .hh-market em {
        grid-column: 1 / -1;
        color: var(--ep-green);
        font-size: 9px;
        font-style: normal;
    }

    .hh-market em.is-down {
        color: var(--ep-red);
    }

    .hh-market.is-unavailable {
        opacity: .55;
    }

    .hh-header-search {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) 42px;
        min-width: 0;
        height: 40px;
        overflow: hidden;
        border: 1px solid var(--ep-border);
        border-radius: 20px;
        background: var(--ep-surface-muted);
    }

    .hh-header-search input {
        min-width: 0;
        padding: 0 0 0 16px;
        border: 0;
        outline: 0;
        background: transparent;
        color: var(--ep-text);
        font-size: 12px;
    }

    .hh-header-search button {
        border: 0;
        background: transparent;
        color: var(--ep-text);
        cursor: pointer;
    }

    .hh-header-actions {
        gap: 7px;
    }

    .hh-notification-button {
        width: auto;
        padding: 0 9px;
    }

    .hh-notification-button b {
        top: -2px;
        right: -2px;
    }

    .hh-account-button {
        padding: 0 12px;
        border-color: var(--ep-border);
        font-size: 12px;
    }

    .hh-notification-panel {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
    }

    .hh-category-nav__inner {
        height: 46px;
        overflow: visible;
    }

    .hh-category-nav__inner > a,
    .hh-category-nav__local > a {
        padding: 0 9px;
        font-size: 11px;
    }

    .hh-category-nav__more {
        display: flex;
        margin-left: auto;
    }

    .hh-category-nav__menu {
        display: inline-flex;
        min-width: 128px;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        padding: 0 3px 0 12px;
        border: 0;
        background: transparent;
        color: var(--ep-text);
        font-size: 11px;
        font-weight: 650;
        cursor: pointer;
    }

    .hh-local-nav-panel,
    .hh-more-categories {
        position: absolute;
        top: calc(100% - 1px);
        z-index: 20;
        display: none;
        min-width: 250px;
        padding: 12px;
        border: 1px solid var(--ep-border);
        background: var(--ep-surface);
        box-shadow: var(--ep-shadow);
    }

    .hh-local-nav-panel {
        left: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2px 12px;
    }

    .hh-local-nav-panel > strong {
        grid-column: 1 / -1;
        padding: 4px 7px 9px;
        border-bottom: 1px solid var(--ep-border);
        font-size: 12px;
    }

    .hh-local-nav-panel a,
    .hh-more-categories a {
        display: flex;
        min-height: 36px;
        align-items: center;
        gap: 8px;
        padding: 0 7px;
        color: var(--ep-text-soft);
        font-size: 11px;
    }

    .hh-local-nav-panel a:hover,
    .hh-more-categories a:hover {
        color: var(--ep-red);
        background: var(--ep-surface-muted);
    }

    .hh-more-categories {
        right: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(440px, calc(100vw - 32px));
        max-height: min(70vh, 560px);
        overflow-y: auto;
    }

    .hh-category-nav__local:hover .hh-local-nav-panel,
    .hh-category-nav__local:focus-within .hh-local-nav-panel,
    .hh-category-nav__more:hover .hh-more-categories,
    .hh-category-nav__more:focus-within .hh-more-categories,
    .hh-category-nav__more.is-open .hh-more-categories {
        display: grid;
    }

    .hh-breaking,
    .hh-breaking__inner {
        height: 38px;
    }

    .hh-breaking__inner {
        grid-template-columns: 125px minmax(0, 1fr) 40px;
    }

    .hh-breaking__label {
        padding: 0 16px 0 0;
        border-right: 1px solid rgba(255, 255, 255, .24);
        font-size: 11px;
    }

    .hh-breaking__item {
        padding-left: 14px;
        font-size: 12px;
    }

    .hh-home {
        padding-top: 22px;
        padding-bottom: 56px;
    }

    .hh-home-shell {
        gap: 32px;
    }

    .hh-main-story {
        aspect-ratio: 16 / 9;
    }

    .hh-main-story__content {
        right: 30px;
        bottom: 30px;
        left: 30px;
    }

    .hh-main-story__content h1,
    .hh-main-story__content h2 {
        font-size: clamp(31px, 3.1vw, 41px);
        -webkit-line-clamp: 2;
    }

    .hh-main-story__spot {
        display: -webkit-box;
        max-width: 690px;
        margin-top: 10px;
        overflow: hidden;
        color: rgba(255, 255, 255, .88);
        font-size: 13px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .hh-agenda {
        overflow: visible;
    }

    .hh-agenda > a {
        flex: 1 1 20%;
        min-height: 76px;
    }

    .hh-hot-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .hh-hot-card {
        min-width: 0;
    }

    .hh-mobile-popular {
        display: none;
    }

    .hh-category-grid,
    .hh-local-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .hh-category-card > a,
    .hh-category-card.is-lead > a,
    .hh-local-grid article a {
        display: block;
    }

    .hh-category-card__media,
    .hh-local-grid article img {
        aspect-ratio: 16 / 9;
    }

    .hh-category-card__body,
    .hh-local-grid article span {
        padding-top: 10px;
    }

    .hh-category-card h3,
    .hh-local-grid article h3 {
        font-size: 16px;
        -webkit-line-clamp: 2;
    }

    .hh-category-card.is-lead h3 {
        font-size: 21px;
    }

    .hh-category-card.is-lead p {
        display: -webkit-box;
        margin: 8px 0 0;
        overflow: hidden;
        color: var(--ep-text-soft);
        font-size: 12px;
        line-height: 1.45;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .hh-category-grid.is-count-1 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hh-category-grid.is-count-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hh-category-grid.is-count-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hh-category-section.is-model-a .hh-category-grid,
    .hh-category-section.is-model-c .hh-category-grid {
        grid-template-columns: 1.55fr repeat(3, minmax(0, 1fr));
    }

    .hh-media-deck {
        grid-template-columns: 1.2fr 1fr .9fr .9fr;
        gap: 22px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .hh-media-panel + .hh-media-panel {
        padding-left: 20px;
        border-left: 1px solid rgba(255, 255, 255, .1);
    }

    .editorial-category {
        padding-top: 18px;
        padding-bottom: 58px;
    }

    .editorial-category__header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        padding: 24px 0;
    }

    .editorial-category__header h1 {
        font-size: 42px;
    }

    .editorial-category-feature {
        grid-template-columns: minmax(0, 1.45fr) minmax(280px, .8fr);
        align-items: stretch;
        border: 1px solid var(--ep-border);
    }

    .editorial-category-feature__body {
        justify-content: center;
        padding: 28px;
    }

    .editorial-category-feature__body h2 {
        font-size: 27px;
    }

    .editorial-category__layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        align-items: start;
    }

    .editorial-category__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .editorial-category__aside {
        position: sticky;
        top: 18px;
    }

    .news-footer__grid {
        grid-template-columns: minmax(280px, 1.5fr) .75fr .75fr .8fr;
        gap: 42px;
        padding-top: 46px;
        padding-bottom: 42px;
    }

    .news-footer__bottom .news-shell {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .np-mobile-bottom-nav {
        display: none;
    }

    .news-contact-hub {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 60;
        display: block;
    }

    .news-contact-hub > button {
        display: inline-flex;
        min-height: 42px;
        align-items: center;
        gap: 7px;
        padding: 0 14px;
        border: 0;
        border-radius: 21px;
        background: var(--ep-red);
        color: #fff;
        box-shadow: var(--ep-shadow);
    }

    .news-contact-hub__menu {
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        display: flex;
        min-width: 150px;
        padding: 8px;
        flex-direction: column;
        border: 1px solid var(--ep-border);
        background: var(--ep-surface);
        box-shadow: var(--ep-shadow);
    }

    .news-contact-hub__menu a {
        display: flex;
        min-height: 36px;
        align-items: center;
        gap: 7px;
        color: var(--ep-text);
        font-size: 12px;
    }

    .news-saved-panel {
        inset: 90px 18px auto auto;
        width: 380px;
        transform: translateX(calc(100% + 40px));
    }

    #backToTop {
        display: none;
    }

    .hh-location-modal {
        inset: 50% auto auto 50%;
        width: min(620px, calc(100vw - 40px));
        max-height: 80vh;
        border-radius: 7px;
        transform: translate(-50%, -50%);
    }

    .hh-location-city-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .hh-lead-grid {
        grid-template-columns: minmax(0, 1.72fr) minmax(250px, .76fr) minmax(280px, .84fr);
        height: 482px;
    }

    .hh-main-story {
        height: 482px;
        aspect-ratio: auto;
    }

    .hh-lead-stack {
        display: grid;
        min-width: 0;
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .hh-lead-card {
        min-width: 0;
        overflow: hidden;
        border-radius: var(--ep-radius);
        background: var(--ep-dark-soft);
    }

    .hh-lead-card__content {
        position: absolute;
        inset: auto 14px 13px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: #fff;
    }

    .hh-lead-card h2 {
        display: -webkit-box;
        margin: 6px 0 0;
        overflow: hidden;
        font-size: 17px;
        font-weight: 690;
        line-height: 1.25;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .hh-lead-card small {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
        font-size: 10px;
    }

    .hh-context-column {
        display: grid;
        min-width: 0;
        grid-template-rows: 148px minmax(0, 1fr);
        gap: 12px;
    }

    .hh-weather-card,
    .hh-editorial-list {
        min-width: 0;
        border: 1px solid var(--ep-border);
        background: var(--ep-surface);
    }

    .hh-weather-card {
        padding: 14px;
    }

    .hh-weather-card > header,
    .hh-editorial-list > header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .hh-weather-card > header strong,
    .hh-editorial-list > header h2 {
        margin: 0;
        font-size: 11px;
        font-weight: 720;
    }

    .hh-weather-card > header button,
    .hh-editorial-list > header a {
        padding: 0;
        border: 0;
        background: none;
        color: var(--ep-text-soft);
        font-size: 10px;
    }

    .hh-weather-card__body {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
    }

    .hh-weather-card__body > div {
        display: flex;
        flex-direction: column;
    }

    .hh-weather-card__body > div strong {
        font-size: 31px;
        font-weight: 690;
        line-height: 1;
    }

    .hh-weather-card__body > div span {
        margin-top: 5px;
        color: var(--ep-text-soft);
        font-size: 11px;
    }

    .hh-weather-icon--card {
        width: 54px;
        height: 54px;
    }

    .hh-weather-card__details {
        display: flex;
        gap: 12px;
        margin-top: 9px;
        color: var(--ep-text-faint);
        font-size: 9px;
    }

    .hh-editorial-list {
        padding: 13px 14px 8px;
        overflow: hidden;
    }

    .hh-editorial-list > header {
        padding-bottom: 8px;
        border-bottom: 1px solid var(--ep-border);
    }

    .hh-editorial-list li a {
        grid-template-columns: 22px minmax(0, 1fr);
        gap: 8px;
        padding: 7px 0;
    }

    .hh-editorial-list li b {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }

    .hh-editorial-list li strong {
        font-size: 11px;
        line-height: 1.25;
    }

    .hh-editorial-list li small {
        font-size: 9px;
    }

    .hh-hot-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (min-width: 1440px) {
    .hh-header-main__inner {
        grid-template-columns: 132px minmax(470px, 1fr) 300px auto;
        gap: 24px;
    }

    .hh-category-nav__inner > a,
    .hh-category-nav__local > a {
        padding-inline: 11px;
        font-size: 11px;
    }
}

@media (max-width: 1079px) and (min-width: 768px) {
    .hh-header-main__inner {
        grid-template-columns: 118px minmax(300px, 1fr) 220px auto;
        gap: 12px;
    }

    .hh-markets .hh-market:nth-child(n + 3) {
        display: none;
    }

    .hh-category-nav__inner > a:nth-of-type(9),
    .hh-category-nav__inner > a:nth-of-type(10) {
        display: none;
    }
}

@media (max-width: 767px) {
    body.editorial-portal {
        padding-bottom: calc(60px + env(safe-area-inset-bottom));
    }

    .hh-main-story__content {
        padding-right: 42px;
    }

    .hh-save-button {
        right: 12px;
        bottom: 12px;
    }

    .hh-agenda .is-mobile-hidden {
        display: none;
    }

    .news-ad-slot {
        min-height: 60px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.editorial-portal .news-contact-hub {
    display: none;
}
