/* Homepage reader shell â The Hinduâstyle chrome (site branding kept) */
:root {
    --hr-bg: #e6e6e6;
    --hr-header: #ffffff;
    --hr-toolbar: #ffffff;
    --hr-nav: #D2D2D2;
    --hr-nav-text: #333333;
    --hr-nav-active: #c4c4c4;
    --hr-cta: #e31e24;
    --hr-cta-text: #ffffff;
    --hr-cta-link: #1a4db3;
    --hr-cta-banner: #f3f3f3;
    --hr-border: #d4d4d4;
    --hr-sep: #c8c8c8;
    --hr-muted: #6b6b6b;
    --hr-ink: #111111;
    --hr-serif: "Libre Baskerville", "Times New Roman", Georgia, serif;
    --hr-sans: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
    --hr-top-h: 64px;
    --hr-tools-h: 54px;
}

* { box-sizing: border-box; }

body.hr-home {
    margin: 0;
    font-family: var(--hr-sans);
    background: var(--hr-bg);
    color: var(--hr-ink);
    min-height: 100vh;
}

.hr-home a { text-decoration: none; color: inherit; }

/* ââ Top header (exact Hindu-style chrome) ââ */
.hr-top {
    background: var(--hr-toolbar);
    border-bottom: none;
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 6px 18px;
    gap: 14px;
    position: sticky;
    top: 0;
    z-index: 4601;
}

.hr-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hr-brand-logo,
.hr-brand img {
    height: 52px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    object-position: left center;
    display: block;
    image-rendering: auto;
    -webkit-font-smoothing: antialiased;
    backface-visibility: hidden;
    transform: translateZ(0);
    filter: none !important;
    opacity: 1 !important;
}

.hr-brand-name {
    font-family: var(--hr-serif);
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: 0.01em;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
}

.hr-epaper-badge {
    display: inline-flex;
    align-items: baseline;
    background: #000;
    color: #fff;
    font-family: var(--hr-sans);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    padding: 5px 7px 4px;
    border-radius: 2px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.hr-epaper-badge .hr-e {
    font-size: 0.58rem;
    font-weight: 600;
    margin-right: 1px;
    position: relative;
    top: -3px;
}

.hr-cta-wrap {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 6px;
    padding: 6px 8px 6px 14px;
    background: var(--hr-cta-banner);
    border-radius: 2px;
    flex-shrink: 1;
    min-width: 0;
}

.hr-cta-msg {
    font-family: var(--hr-sans);
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--hr-cta-link);
    white-space: nowrap;
}

.hr-cta-btn {
    display: inline-block;
    background: var(--hr-cta);
    color: #fff !important;
    border: none;
    border-radius: 3px;
    padding: 7px 14px;
    font-family: var(--hr-sans);
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.1;
    text-decoration: none !important;
}

.hr-cta-wrap .hr-cta-btn {
    animation: hr-cta-btn-pulse 1.2s ease-in-out infinite;
}

.hr-cta-btn:hover,
.hr-cta-wrap .hr-cta-btn:hover {
    background: #c4191f;
    color: #fff !important;
    animation: none;
}

@keyframes hr-cta-btn-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(134, 0, 0, 0.55);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 0 0 8px rgba(134, 0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hr-cta-wrap .hr-cta-btn {
        animation: none;
    }
}

.hr-top-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
    gap: 0;
}

.hr-icon-btn {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    color: #111;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.05rem;
    padding: 0;
}

.hr-icon-btn:hover { background: transparent; opacity: 0.7; }

.hr-sep {
    width: 1px;
    height: 18px;
    background: var(--hr-sep);
    margin: 0 10px;
    flex-shrink: 0;
}

.hr-dd {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.hr-dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: transparent;
    padding: 4px 2px;
    font-family: var(--hr-sans);
    font-size: 0.84rem;
    font-weight: 500;
    color: #111;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.2;
}

.hr-dd-btn .hr-dd-label {
    color: #111;
}

.hr-dd-btn .hr-chevron {
    font-size: 0.65rem;
    color: #444;
    margin-top: 1px;
}

.hr-dd-btn:hover { opacity: 0.75; }

.hr-dd-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    max-height: 280px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 130;
    padding: 4px 0;
}

.hr-dd.is-open .hr-dd-menu { display: block; }

.hr-dd-menu button,
.hr-dd-menu a {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    padding: 8px 14px;
    font-size: 0.84rem;
    color: #222;
    cursor: pointer;
    font-family: var(--hr-sans);
}

.hr-dd-menu button:hover,
.hr-dd-menu a:hover { background: #f5f5f5; }

.hr-dd-menu button.is-active {
    font-weight: 700;
    background: #f0f0f0;
}

.hr-dd-menu--edition {
    min-width: 260px;
    max-height: min(70vh, 420px);
    overflow-y: auto;
}

.hr-dd-group {
    padding: 8px 14px 4px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    pointer-events: none;
}

.hr-dd--edition.is-single .hr-dd-btn {
    cursor: default;
    opacity: 0.9;
}

.hr-nav-drawer-section-label {
    padding: 14px 20px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
}

.hr-nav-edition-link {
    font-size: 0.92rem !important;
    font-weight: 500 !important;
}

.hr-top .reader-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 4px;
    padding: 2px 6px;
    border: none;
    background: transparent;
    color: #0d6efd;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hr-top .reader-location-chip:hover { text-decoration: underline; opacity: 0.85; }

.hr-date-btn,
.hr-date-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: none;
    background: transparent;
    padding: 4px 2px;
    font-family: var(--hr-sans);
    font-size: 0.84rem;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}

.hr-date-btn {
    cursor: pointer;
}

.hr-date-label {
    cursor: default;
    color: #333;
}

.hr-date-btn i.bi-calendar3,
.hr-date-label i.bi-calendar3 {
    font-size: 1rem;
}

.hr-date-btn .hr-chevron {
    font-size: 0.65rem;
    color: #444;
}

/* legacy select hidden â kept for JS hooks if needed */
.hr-select { display: none; }

/* ââ Secondary toolbar ââ */
.hr-tools {
    background: var(--hr-toolbar);
    border-bottom: 1px solid var(--hr-border);
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    position: sticky;
    top: var(--hr-top-h, 64px);
    z-index: 4600;
}

.hr-tools-left,
.hr-tools-right {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.hr-tools-flyout {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.hr-tools-flyout-toggle .hr-vbars {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 3.5px;
    width: 18px;
    height: 14px;
}

.hr-tools-flyout-toggle .hr-vbars span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: currentColor;
    border-radius: 1px;
}

.hr-tools-center {
    display: none;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.hr-tool-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #1f1f1f;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.28rem;
    font-weight: 700;
    line-height: 1;
    transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.hr-tool-btn i {
    font-weight: 700 !important;
    -webkit-text-stroke: 0.35px currentColor;
    paint-order: stroke fill;
    line-height: 1;
}

.hr-tool-btn .hr-tool-icon-svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.2;
}

.hr-tool-btn:hover {
    background: #e8e8e8;
    color: #000;
}

.hr-tool-btn.is-active {
    background: #dedede;
    color: #000;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.hr-tool-btn.is-on {
    color: #c4004a;
}

.hr-tool-btn:disabled {
    opacity: 0.32;
    cursor: default;
    box-shadow: none;
}

/* ââ Section nav + edition column (flush, same width) ââ */
.hr-edition-column {
    position: relative;
    width: min(100%, 88vw);
    max-width: 88%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    z-index: 1;
}

@media (min-width: 992px) {
    .hr-edition-column {
        width: 88%;
        max-width: 88%;
        min-width: 88%;
    }
}

.hr-sections {
    background: #d4d4d4;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    margin: 0;
    border: none;
    border-bottom: 2px solid #8a8a8a;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: sticky;
    top: calc(var(--hr-top-h, 64px) + var(--hr-tools-h, 54px));
    z-index: 4599;
}

.hr-sections-inner {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    min-height: 40px;
    padding: 0 8px;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
}

.hr-section-link {
    color: #111;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding: 10px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-right: none;
    border-bottom: none;
    transition: color 0.15s, background 0.15s;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    flex: 0 0 auto;
}

.hr-section-link:hover {
    color: #111;
    background: rgba(0, 0, 0, 0.06);
}

.hr-section-link.is-active {
    color: #fff !important;
    background: #000 !important;
    border-bottom: none;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .hr-section-link {
        padding: 10px 18px;
        font-size: 0.88rem;
    }
}

/* Story strip â sides black; white panel = edition image width */
.hr-story-strip-rail {
    display: flex;
    justify-content: center;
    width: 100%;
    background: #000;
    padding: 0;
    box-sizing: border-box;
}

.hr-story-strip-rail[hidden] {
    display: none !important;
}

.hr-story-strip-rail .hr-story-strip {
    width: min(100%, 88vw);
    max-width: 88%;
    background: #ffffff;
    border-bottom: 1px solid #1a1a1a;
}

@media (min-width: 992px) {
    .hr-story-strip-rail .hr-story-strip {
        width: 84.5%;
        max-width: 88%;
        min-width: 80%;
    }
}

.hr-edition-column > .hr-story-strip {
    width: 100%;
    flex: 0 0 auto;
    margin: 0;
}

.hr-story-strip {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    background: #292929;
    border-bottom: 1px solid #1a1a1a;
    padding: 0;
    z-index: 50;
    line-height: normal;
}

.hr-story-strip[hidden] {
    display: none !important;
}

.hr-story-strip-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 3px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    max-width: 100%;
    padding-right: 36px;
}

.hr-story-card {
    position: relative;
    flex: 0 0 auto;
    width: min(220px, 42vw);
    height: 132px;
    scroll-snap-align: start;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    overflow: hidden;
    background: #2a2a2a;
    text-align: left;
    color: #fff;
}

.hr-story-card.is-featured {
    width: min(340px, 70vw);
}

.hr-story-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hr-story-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.hr-story-card-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 8px 10px 10px;
}

.hr-story-card-kicker {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffb4b4;
    margin-bottom: 3px;
}

.hr-story-card-title {
    display: block;
    font-family: var(--hr-serif);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    max-height: 3.4em;
    overflow: hidden;
}

.hr-story-card-page {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

.hr-story-strip-next {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 36px;
    border: none;
    background: rgba(90, 90, 90, 0.55);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 2;
}

.hr-story-strip-next:hover {
    background: rgba(60, 60, 60, 0.75);
}

@media (min-width: 992px) {
    .hr-story-card {
        width: 240px;
        height: 150px;
    }
    .hr-story-card.is-featured {
        width: 380px;
    }
    .hr-story-card-title {
        font-size: 0.98rem;
    }
}

/* ââ Reader stage ââ */
.hr-stage {
    position: relative;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 24px 40px;
    margin: 0;
    background: #6e6e6e;
}

.hr-page-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    background: #fff;
    box-shadow: none;
    transform-origin: top center;
    transition: transform 0.15s ease;
}

@media (min-width: 992px) {
    .hr-stage {
        padding-left: 32px;
        padding-right: 32px;
        padding-top: 0;
        background: #6e6e6e;
    }
}

.hr-page-wrap img {
    display: block;
    width: 100%;
    height: auto;
    user-select: none;
    -webkit-user-drag: none;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
}

.hr-page-frame {
    position: relative;
    display: block;
    width: 100%;
    line-height: 0;
}

.hr-area-map-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.hr-area-zone {
    position: absolute;
    box-sizing: border-box;
    border: 2px solid transparent;
    background: transparent;
    cursor: pointer;
    pointer-events: auto;
    z-index: 6;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.hr-area-zone:hover,
.hr-area-zone:focus {
    border-color: rgba(170, 170, 170, 0.7);
    background: rgba(245, 245, 245, 0.4);
    outline: none;
}

/* —— Hindu-style article (image + serif text) —— */
.hr-article-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(12, 14, 18, 0.72);
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

.hr-article-modal[hidden] {
    display: none !important;
}

.hr-article-dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(760px, 100vw);
    height: 100%;
    max-height: 100vh;
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
    .hr-article-modal {
        align-items: center;
        padding: 24px 16px;
    }
    .hr-article-dialog {
        height: min(92vh, 940px);
        border-radius: 4px;
        overflow: hidden;
    }
}

.hr-article-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
}

.hr-article-kicker {
    margin: 0;
    font-family: "Source Sans 3", "Noto Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #222;
}

.hr-article-head-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hr-article-icon-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #444;
    font-size: 1.15rem;
    cursor: pointer;
    border-radius: 4px;
}

.hr-article-icon-btn.is-active,
.hr-article-icon-btn:hover {
    background: #f3f3f3;
    color: #111;
}

.hr-article-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    background: transparent;
    color: #222;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.hr-article-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    padding: 6px 10px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.hr-article-tool {
    border: none;
    background: transparent;
    color: #333;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.hr-article-tool:hover {
    background: #eee;
}

.hr-article-tool.is-active {
    background: #1a1a1a;
    color: #fff;
}

.hr-article-body {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
}

.hr-article-story {
    max-width: 640px;
    margin: 0 auto;
    padding: 16px 22px 40px;
}

.hr-article-headline {
    margin: 0 0 10px;
    font-family: "Noto Serif Telugu", "Libre Baskerville", Georgia, serif;
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
}

.hr-article-lead-photos {
    margin: 0 0 14px;
}

.hr-article-lead-photos:empty {
    display: none;
}

.hr-article-lead-photos .hr-article-figure {
    margin: 0 0 12px;
}

.hr-article-photo,
.hr-area-zoom-stack {
    display: none;
    margin: 0;
    padding: 0;
}

.hr-article-photo img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 8px;
}

.hr-article-caption {
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    font-family: "Source Sans 3", "Noto Sans", sans-serif;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #6b6b6b;
}

.hr-article-deck {
    margin: 0 0 12px;
    font-family: "Noto Serif Telugu", "Libre Baskerville", Georgia, serif;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.45;
    color: #333;
}

.hr-article-byline {
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
    font-family: "Source Sans 3", "Noto Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #222;
}

.hr-article-text {
    font-family: "Noto Serif Telugu", "Libre Baskerville", Georgia, "Times New Roman", serif;
    font-size: 1.12rem;
    line-height: 1.75;
    color: #1c1c1c;
    word-break: break-word;
    outline: none;
}

.hr-article-text p {
    margin: 0 0 1em;
}

.hr-article-text h2 {
    margin: 1.1em 0 0.55em;
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1.35;
}

.hr-article-text blockquote {
    margin: 0 0 1em;
    padding: 0 0 0 0.85em;
    border-left: 3px solid #c9c9c9;
    color: #333;
    font-style: italic;
}

.hr-article-figure {
    margin: 1.15em 0 1.35em;
    padding: 0;
}

.hr-article-figure img {
    display: block;
    width: 100%;
    height: auto;
    background: #f4f4f4;
}

.hr-article-figure figcaption {
    margin: 8px 0 0;
    font-family: "Source Sans 3", "Noto Sans", sans-serif;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #5c5c5c;
}

.hr-article-text .hr-article-empty {
    font-family: "Source Sans 3", sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.hr-article-dialog.is-clip-only .hr-article-caption,
.hr-article-dialog.is-clip-only .hr-article-headline,
.hr-article-dialog.is-clip-only .hr-article-deck,
.hr-article-dialog.is-clip-only .hr-article-byline,
.hr-article-dialog.is-clip-only .hr-article-text,
.hr-article-dialog.is-clip-only .hr-article-lead-photos {
    display: none;
}

.hr-article-dialog.is-clip-only .hr-article-photo,
.hr-article-dialog.is-clip-only .hr-area-zoom-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.hr-article-dialog.is-clip-only .hr-article-photo img,
.hr-article-dialog.is-clip-only .hr-area-zoom-stack img {
    width: 100%;
    height: auto;
    background: #fff;
}

.hr-article-dialog.is-clip-only .hr-article-story {
    max-width: none;
    padding: 12px;
}

@media (max-width: 767px) {
    .hr-article-story {
        padding: 12px 14px 28px;
    }

    .hr-article-lead-photos img,
    .hr-article-figure img {
        width: 100%;
        max-height: 210px;
        object-fit: contain;
        background: #f3f3f3;
    }

    .hr-article-dialog.is-clip-only .hr-article-story {
        padding: 8px;
    }

    .hr-article-dialog.is-clip-only .hr-article-photo,
    .hr-article-dialog.is-clip-only .hr-area-zoom-stack {
        align-items: center;
    }

    .hr-article-dialog.is-clip-only .hr-article-photo img,
    .hr-article-dialog.is-clip-only .hr-area-zoom-stack img {
        width: auto;
        max-width: 100%;
        max-height: calc(100vh - 128px);
        max-height: calc(100dvh - 128px);
        height: auto;
        object-fit: contain;
        margin: 0 auto;
    }
}

.hr-article-side-nav {
    position: absolute;
    top: 46%;
    z-index: 3;
    width: 36px;
    height: 64px;
    border: none;
    background: rgba(90, 90, 90, 0.32);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hr-article-side-nav[hidden] {
    display: none !important;
}

.hr-article-side-nav--prev {
    left: 0;
    border-radius: 0 6px 6px 0;
}

.hr-article-side-nav--next {
    right: 0;
    border-radius: 6px 0 0 6px;
}

.hr-article-linked {
    display: none;
    margin: 0 16px 12px auto;
}

.hr-article-linked:not([hidden]) {
    display: inline-block;
}

.hr-article-store {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.hr-area-zoom-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.hr-area-zoom-modal[hidden] {
    display: none !important;
}

.hr-area-zoom-dialog {
    position: relative;
    width: min(720px, 96vw);
    max-height: 90vh;
    overflow: auto;
    background: #111;
    border-radius: 8px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    padding: 12px;
}

.hr-area-zoom-close {
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.hr-area-zoom-dialog .hr-area-zoom-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.hr-area-zoom-stack img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    background: #fff;
    transition: width 0.15s ease;
}

.hr-area-zoom-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.hr-area-zoom-actions button {
    border: none;
    background: #fff;
    color: #111;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.9rem;
    cursor: pointer;
}

.hr-area-zoom-actions button[hidden] {
    display: none !important;
}

.hr-page-empty {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--hr-muted);
    background: #fafafa;
    border: 1px solid var(--hr-border);
}

.hr-page-empty i { font-size: 3rem; }

.hr-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 72px;
    border: none;
    background: rgba(80, 80, 80, 0.45);
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 5;
    transition: background 0.15s;
}

.hr-nav-arrow:hover { background: rgba(50, 50, 50, 0.7); }
.hr-nav-arrow:disabled { opacity: 0.25; cursor: default; }
.hr-nav-arrow--prev { left: 10px; }
.hr-nav-arrow--next { right: 10px; }

.hr-page-meta {
    text-align: center;
    padding: 8px 12px 0;
    font-size: 0.8rem;
    color: #c8c8c8;
    background: #2a2a2a;
}

.hr-thumbs {
    display: none;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 16px 20px;
    background: #dcdcdc;
    border-top: 1px solid var(--hr-border);
}

.hr-thumbs.is-open { display: flex; }

.hr-thumb {
    flex: 0 0 64px;
    height: 88px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    background: #fff;
    opacity: 0.85;
}

.hr-thumb.is-active {
    border-color: #111;
    opacity: 1;
}

.hr-menu-panel {
    display: none;
    position: absolute;
    right: 12px;
    top: 56px;
    background: #fff;
    border: 1px solid var(--hr-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    min-width: 200px;
    z-index: 120;
    padding: 6px 0;
}

.hr-menu-panel.is-open { display: block; }

.hr-menu-panel a,
.hr-menu-panel button {
    display: block;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: #222;
    cursor: pointer;
}

.hr-menu-panel a:hover,
.hr-menu-panel button:hover { background: #f5f5f5; }

.hr-search-bar {
    display: none;
    background: #fff;
    border-bottom: 1px solid var(--hr-border);
    padding: 10px 16px;
}

.hr-search-bar.is-open { display: block; }

.hr-search-bar input {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: block;
    border: 1px solid var(--hr-border);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
}

.hr-fullscreen .hr-top,
.hr-fullscreen .hr-tools,
.hr-fullscreen .hr-sections,
.hr-fullscreen .hr-site-footer,
.hr-fullscreen .announcement-bar {
    display: none !important;
}

.hr-fullscreen .hr-stage {
    min-height: 100vh;
    padding: 12px;
}

.hr-fs-exit {
    display: none;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 4900;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    background: rgba(17, 17, 17, 0.88);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
}

.hr-fs-exit i {
    font-size: 1rem;
}

.hr-fs-exit:hover {
    background: #111;
}

.hr-fullscreen .hr-fs-exit {
    display: inline-flex;
}

@media (max-width: 1100px) {
    .hr-cta-msg { display: none; }
    .hr-dd .hr-dd-label { max-width: 140px; overflow: hidden; text-overflow: ellipsis; }
}

/* ââ Visibility helpers ââ */
.hr-mobile-only { display: none !important; }

@media (max-width: 991.98px) {
    .hr-desktop-only { display: none !important; }
    .hr-tools-center.hr-mobile-only { display: flex !important; }
    .hr-tool-btn.hr-mobile-only { display: inline-flex !important; }
    .hr-dd.hr-mobile-only { display: inline-flex !important; }

    /* Hindu-style compact header: brand | profile + menu */
    .hr-top {
        flex-wrap: nowrap;
        padding: 8px 12px;
        gap: 10px;
        min-height: 56px;
    }
    body.hr-home {
        --hr-top-h: 56px;
        --hr-tools-h: 48px;
    }
    .hr-brand {
        gap: 8px;
        min-width: 0;
        flex: 1 1 auto;
    }
    .hr-brand-logo,
    .hr-brand img {
        height: 36px;
        max-width: 150px;
    }
    .hr-brand-name {
        font-size: 1.05rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .hr-epaper-badge {
        font-size: 0.62rem;
        padding: 4px 6px 3px;
        flex-shrink: 0;
    }
    .hr-top-actions {
        margin-left: 0;
        gap: 2px;
        flex-shrink: 0;
    }
    .hr-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .hr-loc-chip-wrap {
        display: inline-flex !important;
        align-items: center;
        max-width: 96px;
        min-width: 0;
        flex-shrink: 1;
    }
    .hr-top .reader-location-chip {
        margin-left: 0;
        padding: 4px 4px;
        font-size: 0.72rem;
        max-width: 96px;
    }
    .hr-top .reader-location-chip .bi {
        font-size: 0.9rem;
        flex-shrink: 0;
    }

    /* Tools: area-map | edition | ||| flyout (clip / fit / archive / grid) */
    .hr-tools {
        min-height: 48px;
        padding: 0 8px;
        gap: 6px;
        top: var(--hr-top-h, 56px);
    }
    .hr-tools-left,
    .hr-tools-right {
        gap: 0;
        flex-shrink: 0;
    }
    .hr-tools-flyout-toggle.hr-mobile-only {
        display: inline-flex !important;
    }
    .hr-tools-flyout {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-width: 46px;
        padding: 4px 0;
        background: #fff;
        border: 1px solid #1a1a1a;
        z-index: 4800;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    }
    .hr-tools-flyout.is-open {
        display: flex;
    }
    .hr-tools-flyout .hr-tool-btn {
        width: 46px;
        height: 46px;
        border-radius: 0;
        font-size: 1.2rem;
    }
    .hr-tools-flyout .hr-tool-btn:hover,
    .hr-tools-flyout .hr-tool-btn.is-active {
        background: #f2f2f2;
        box-shadow: none;
    }
    .hr-tools-flyout-toggle.is-active {
        background: #e8e8e8;
    }
    .hr-tools-center {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        align-items: center;
    }
    .hr-dd--edition-mobile {
        width: 100%;
        max-width: 220px;
        display: inline-flex !important;
    }
    .hr-dd--edition-mobile .hr-dd-btn {
        width: 100%;
        justify-content: space-between;
        padding: 6px 8px;
        border: 1px solid #ddd;
        background: #fafafa;
        border-radius: 3px;
        font-size: 0.78rem;
    }
    .hr-dd--edition-mobile .hr-dd-label {
        max-width: none;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .hr-dd--edition-mobile .hr-dd-menu {
        left: 0;
        right: 0;
        min-width: 0;
        width: 100%;
        max-height: min(50vh, 320px);
        overflow-y: auto;
    }
    .hr-tool-btn {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
        border-radius: 4px;
    }

    /* Sections bar â Hindu grey strip */
    .hr-sections {
        top: calc(var(--hr-top-h, 56px) + var(--hr-tools-h, 48px));
        background: #d2d2d2;
        border-bottom: 1px solid #b5b5b5;
    }
    .hr-sections-inner {
        min-height: 38px;
        padding: 0 4px 0 0;
        position: relative;
    }
    .hr-sections-inner::before {
        content: "";
        position: sticky;
        left: 0;
        flex: 0 0 8px;
        width: 8px;
        align-self: stretch;
        background: #111;
        z-index: 2;
        margin-right: 0;
    }
    .hr-section-link {
        padding: 9px 16px;
        font-size: 0.86rem;
        font-weight: 500;
    }
    .hr-section-link.is-active {
        background: #111 !important;
        color: #fff !important;
    }

    .hr-edition-column {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    .hr-stage {
        padding: 8px 6px 88px;
    }
    .hr-nav-arrow {
        width: 34px;
        height: 52px;
        font-size: 1.2rem;
    }
    .hr-nav-arrow--prev { left: 2px; }
    .hr-nav-arrow--next { right: 2px; }
    .hr-page-meta {
        font-size: 0.78rem;
        padding: 6px 8px;
    }
}

@media (max-width: 768px) {
    .hr-top {
        padding: 6px 10px;
        min-height: 52px;
    }
    body.hr-home {
        --hr-top-h: 52px;
        --hr-tools-h: 44px;
    }
    .hr-brand-logo,
    .hr-brand img {
        height: 32px;
        max-width: 130px;
    }
    .hr-brand-name { font-size: 0.98rem; }
    .hr-epaper-badge {
        font-size: 0.58rem;
        padding: 3px 5px 2px;
    }
    .hr-tools {
        min-height: 44px;
        top: var(--hr-top-h, 52px);
        padding: 0 4px;
    }
    .hr-dd--edition-mobile { max-width: 150px; }
    .hr-dd--edition-mobile .hr-dd-btn { font-size: 0.72rem; padding: 5px 6px; }
    .hr-tool-btn { width: 36px; height: 36px; font-size: 1.05rem; }
    .hr-tools-flyout .hr-tool-btn {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
    .hr-sections {
        top: calc(var(--hr-top-h, 52px) + var(--hr-tools-h, 44px));
    }
    .hr-section-link { padding: 8px 12px; font-size: 0.8rem; }
    .hr-stage { padding: 6px 4px 80px; }
}

/* Tablet refinement */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hr-brand-logo,
    .hr-brand img {
        height: 40px;
        max-width: 180px;
    }
    .hr-dd--edition-mobile { max-width: 260px; }
    .hr-tool-btn { width: 42px; height: 42px; }
    .hr-edition-column {
        width: min(100%, 92vw);
        max-width: 92%;
    }
    .hr-stage { padding: 12px 10px 90px; }
}

/* Profile avatar in header */
.hr-profile-avatar-sm {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Profile sidebar */
.hr-profile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 4000;
}

.hr-profile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 92vw);
    height: 100vh;
    background: #fff;
    z-index: 4001;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 28px rgba(0,0,0,0.2);
}

.hr-profile-sidebar.is-open {
    transform: translateX(0);
}

.hr-profile-head {
    background: #2b2b2b;
    color: #fff;
    text-align: center;
    padding: 28px 20px 24px;
    position: relative;
}

.hr-profile-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.hr-profile-avatar {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    margin: 8px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    overflow: hidden;
}

.hr-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hr-profile-name {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hr-profile-email {
    font-size: 0.88rem;
    opacity: 0.9;
    margin-top: 4px;
    word-break: break-all;
}

.hr-profile-pass-btn {
    margin-top: 16px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.hr-profile-pass-btn:hover {
    background: rgba(255,255,255,0.1);
}

.hr-profile-menu {
    background: #fff;
    flex: 1;
}

.hr-profile-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    color: #6b6b6b;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    font-family: var(--hr-sans);
}

.hr-profile-item:hover {
    background: #fafafa;
    color: #333;
}

.hr-profile-item i {
    color: #c0c0c0;
    font-size: 0.9rem;
}

/* Login modal — Hindu e-Paper style (centered) */
body.hr-login-open { overflow: hidden; }

.hr-g-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    pointer-events: auto;
}

.hr-g-overlay[hidden] {
    display: none !important;
}

.hr-g-modal {
    position: relative;
    width: min(400px, calc(100vw - 2rem));
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
    overflow: visible;
    font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
    pointer-events: auto;
    padding: 2rem 1.75rem 1.5rem;
    text-align: center;
    animation: hr-g-slide-in 0.22s ease-out;
}

@keyframes hr-g-slide-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hr-g-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #d0d0d0;
    background: #fff;
    font-size: 1.35rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.hr-g-brand {
    display: inline-flex;
    align-items: stretch;
    border: 1.5px solid #111;
    margin: 0 auto 1.35rem;
    max-width: 100%;
    overflow: hidden;
}

.hr-g-brand-logo {
    display: block;
    height: 42px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    padding: 0.35rem 0.55rem;
    background: #fff;
}

.hr-g-brand-name {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.7rem;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111;
    background: #fff;
    white-space: nowrap;
}

.hr-g-brand-epaper {
    display: flex;
    align-items: center;
    padding: 0.45rem 0.75rem;
    background: #111;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hr-g-heading {
    margin: 0 0 0.55rem;
    font-size: 1.55rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.hr-g-signup {
    margin: 0 0 1.15rem;
    font-size: 0.98rem;
    color: #222;
}

.hr-g-signup a {
    color: #111;
    text-decoration: underline;
    font-weight: 600;
}

.hr-g-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.hr-g-social-label {
    font-size: 0.95rem;
    color: #555;
}

.hr-g-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d8d8d8;
    background: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
}

.hr-g-social-btn:hover {
    border-color: #aaa;
    background: #fafafa;
}

.hr-g-or {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1rem;
    color: #888;
    font-size: 0.9rem;
}

.hr-g-or::before,
.hr-g-or::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.hr-g-email-field {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    border: 1px solid #cfcfcf;
    padding: 0.7rem 0.85rem;
    margin-bottom: 0.85rem;
    background: #fff;
    text-align: left;
}

.hr-g-email-field .bi {
    color: #999;
    font-size: 1rem;
}

.hr-g-email-field input {
    border: 0;
    outline: none;
    width: 100%;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    color: #111;
}

.hr-g-email-field input::placeholder {
    color: #aaa;
}

.hr-g-next {
    width: 100%;
    border: 0;
    background: #111;
    color: #fff;
    font-family: "DM Sans", system-ui, sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    padding: 0.85rem 1rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.hr-g-next:hover {
    background: #000;
}

.hr-g-btn-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
    min-height: 0;
}

.hr-g-btn-wrap[hidden] {
    display: none !important;
}

.hr-g-legal {
    margin: 0;
    font-size: 0.78rem;
    color: #666;
    line-height: 1.45;
}

.hr-g-legal a {
    color: #333;
    text-decoration: underline;
}

.hr-g-setup-hint {
    margin: 10px 0 0;
    font-size: 0.75rem;
    color: #b06000;
    background: #fff8e8;
    border: 1px solid #ffe0a3;
    border-radius: 6px;
    padding: 8px 10px;
    text-align: left;
    font-family: "DM Sans", system-ui, sans-serif;
}

@media (max-width: 576px) {
    .hr-g-modal {
        width: min(100%, calc(100vw - 1.5rem));
        padding: 1.65rem 1.25rem 1.25rem;
    }
    .hr-g-close {
        top: -12px;
        right: -8px;
    }
    .hr-g-heading {
        font-size: 1.35rem;
    }
}

/* Main nav drawer (hamburger) — left slide, bold uppercase list */
.hr-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 4800;
}

.hr-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(360px, 92vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 4801;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 28px rgba(0, 0, 0, 0.14);
}

.hr-nav-drawer.is-open {
    transform: translateX(0);
}

.hr-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    flex-shrink: 0;
}

.hr-nav-drawer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
}

.hr-nav-drawer-logo {
    height: 36px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    display: block;
    image-rendering: auto;
}

.hr-nav-drawer-title {
    font-family: var(--hr-sans);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: none;
    color: #5b2d8e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42vw;
}

.hr-nav-drawer-close {
    border: none;
    background: transparent;
    color: #111;
    font-size: 1.85rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
    flex-shrink: 0;
}

.hr-nav-drawer-close:hover {
    color: #000;
}

.hr-nav-drawer-list {
    overflow-y: auto;
    flex: 1;
    padding: 0;
    -webkit-overflow-scrolling: touch;
}

.hr-nav-drawer-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    border: none;
    border-bottom: 1px solid #eee;
    background: #fff;
    color: #111;
    font-family: var(--hr-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.hr-nav-drawer-link:hover,
.hr-nav-drawer-link.is-active {
    background: #f3f3f3;
    color: #000;
}

.hr-nav-drawer .hr-epaper-badge {
    flex-shrink: 0;
}

.hr-fullscreen .hr-nav-drawer,
.hr-fullscreen .hr-nav-overlay {
    display: none !important;
}

/* Pages / Area Map index drawer (second toolbar left) */
.hr-pages-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 4700;
}

.hr-pages-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(420px, 94vw);
    height: 100vh;
    background: #fff;
    z-index: 4701;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 28px rgba(0, 0, 0, 0.14);
}

.hr-pages-drawer.is-open {
    transform: translateX(0);
}

.hr-pages-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 12px;
    border-bottom: 1px solid #e8e8e8;
}

.hr-pages-drawer-title {
    margin: 0;
    font-family: var(--hr-sans);
    font-size: 1.45rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
}

.hr-pages-drawer-close {
    border: none;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    color: #555;
    cursor: pointer;
}

.hr-pages-drawer-list {
    overflow-y: auto;
    flex: 1;
}

.hr-pages-section-head {
    padding: 14px 16px 8px;
    font-family: var(--hr-sans);
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #eee;
}

.hr-pages-empty {
    padding: 24px 16px;
    color: #888;
    font-size: 0.9rem;
}

.hr-pages-item {
    width: 100%;
    display: grid;
    grid-template-columns: 64px 1fr 56px;
    gap: 12px;
    align-items: center;
    padding: 14px 14px 14px 16px;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.hr-pages-item:hover {
    background: #efefef;
}

.hr-pages-item.is-active {
    background: #f3f3f3;
}

.hr-pages-item.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #111;
}

.hr-pages-item-meta {
    font-size: 0.8rem;
    color: #555;
    font-weight: 600;
    white-space: nowrap;
}

.hr-pages-item-title {
    font-size: 0.95rem;
    color: #111;
    line-height: 1.35;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hr-pages-item-thumb {
    width: 52px;
    height: 52px;
    border-radius: 2px;
    overflow: hidden;
    background: #f0f0f0;
    border: 1px solid #e5e5e5;
    justify-self: end;
}

.hr-pages-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hr-fullscreen .hr-pages-drawer,
.hr-fullscreen .hr-pages-overlay {
    display: none !important;
}

/* Thumbnails overview modal â normal popup below second toolbar */
.hr-thumbs-modal {
    position: fixed;
    top: var(--hr-thumbs-top, 118px);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4500;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    box-sizing: border-box;
}

.hr-thumbs-modal[hidden] {
    display: none !important;
}

.hr-thumbs-modal-inner {
    position: relative;
    width: min(920px, 94vw);
    max-height: min(78vh, 680px);
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    background: #cfcfcf;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    padding: 28px 24px 24px;
    margin: 0;
    box-sizing: border-box;
}

.hr-thumbs-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hr-thumbs-modal-close:hover {
    background: #fff;
    color: #000;
}

.hr-thumbs-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 4px auto 22px;
}

.hr-thumbs-action-btn {
    appearance: none;
    border: none;
    background: #555;
    color: #fff;
    font-family: var(--hr-sans);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 9px 22px;
    min-width: 108px;
    cursor: pointer;
    line-height: 1.2;
}

.hr-thumbs-action-btn + .hr-thumbs-action-btn {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hr-thumbs-action-btn:hover {
    background: #444;
}

.hr-thumbs-action-btn:active {
    background: #333;
}

.hr-thumbs-modal-empty {
    color: #333;
    text-align: center;
    margin: 60px 0;
    font-size: 1rem;
}

.hr-thumbs-groups {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 18px 28px;
}

.hr-thumbs-group {
    margin: 0;
    flex: 0 0 auto;
    max-width: 100%;
}

.hr-thumbs-group-title {
    margin: 0 0 8px;
    font-family: var(--hr-sans);
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.hr-thumbs-group-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.hr-thumbs-card {
    width: 88px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: center;
    flex: 0 0 auto;
}

.hr-thumbs-card-img {
    display: block;
    width: 88px;
    height: 118px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.hr-thumbs-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hr-thumbs-card-label {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    color: #666;
    font-weight: 500;
}

.hr-thumbs-card.is-active .hr-thumbs-card-img {
    outline: 2px solid #111;
    outline-offset: 1px;
}

.hr-thumbs-card:hover .hr-thumbs-card-img {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 900px) {
    .hr-thumbs-modal-inner {
        width: 80%;
        height: 80%;
        max-height: 80%;
        padding: 32px 28px 28px;
    }
    .hr-thumbs-groups {
        gap: 22px 36px;
    }
    .hr-thumbs-card {
        width: 100px;
    }
    .hr-thumbs-card-img {
        width: 100px;
        height: 134px;
    }
}

@media (max-width: 576px) {
    .hr-thumbs-modal {
        padding: 12px;
        align-items: flex-start;
    }
    .hr-thumbs-modal-inner {
        width: 100%;
        max-height: calc(100% - 8px);
        padding: 40px 14px 20px;
        overflow-x: auto;
    }
    .hr-thumbs-groups {
        flex-wrap: nowrap;
        width: max-content;
        min-width: 100%;
        gap: 16px 22px;
        padding-bottom: 8px;
    }
    .hr-thumbs-card {
        width: 76px;
    }
    .hr-thumbs-card-img {
        width: 76px;
        height: 102px;
    }
}

/* Clip selection on page — Mandalam brand chrome */
.hr-clip-dim {
    display: none;
}

.hr-clip-box {
    position: absolute;
    z-index: 25;
    border: 2px solid #D4AF37;
    background: transparent;
    box-sizing: border-box;
    cursor: move;
    touch-action: none;
    box-shadow: 0 0 0 9999px rgba(3, 27, 40, 0.45);
}

.hr-clip-actions {
    position: absolute;
    top: -52px;
    left: 0;
    display: flex;
    gap: 8px;
    z-index: 26;
}

.hr-clip-actions button {
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 10px 18px;
    min-height: 40px;
    min-width: 92px;
    font-family: "Noto Sans", "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(3, 27, 40, 0.28);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.hr-clip-share {
    background: #031B28;
    color: #D4AF37;
    border-color: #D4AF37;
}

.hr-clip-share:hover {
    background: #D4AF37;
    color: #031B28;
    border-color: #D4AF37;
}

.hr-clip-cancel {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.hr-clip-cancel:hover {
    background: #860000;
    border-color: #860000;
    color: #fff;
}

@media (max-width: 576px) {
    .hr-clip-actions {
        top: -48px;
        gap: 8px;
    }
    .hr-clip-actions button {
        padding: 9px 14px;
        min-height: 38px;
        min-width: 80px;
        font-size: 0.84rem;
    }
}

.hr-clip-handle {
    position: absolute;
    width: 11px;
    height: 11px;
    background: #D4AF37;
    border: 1px solid #031B28;
    z-index: 27;
    box-sizing: border-box;
}

.hr-clip-handle--nw { top: -6px; left: -6px; cursor: nwse-resize; }
.hr-clip-handle--ne { top: -6px; right: -6px; cursor: nesw-resize; }
.hr-clip-handle--sw { bottom: -6px; left: -6px; cursor: nesw-resize; }
.hr-clip-handle--se { bottom: -6px; right: -6px; cursor: nwse-resize; }
.hr-clip-handle--n { top: -6px; left: 50%; transform: translateX(-50%); cursor: ns-resize; }
.hr-clip-handle--s { bottom: -6px; left: 50%; transform: translateX(-50%); cursor: ns-resize; }
.hr-clip-handle--e { right: -6px; top: 50%; transform: translateY(-50%); cursor: ew-resize; }
.hr-clip-handle--w { left: -6px; top: 50%; transform: translateY(-50%); cursor: ew-resize; }

.hr-clip-share-modal {
    position: fixed;
    inset: 0;
    z-index: 5200;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.hr-clip-share-modal[hidden] {
    display: none !important;
}

.hr-clip-share-dialog {
    position: relative;
    width: min(480px, 96vw);
    max-height: 92vh;
    overflow: auto;
    background: #fff;
    border-radius: 10px;
    padding: 28px 20px 20px;
    box-sizing: border-box;
}

.hr-clip-share-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #444;
}

.hr-clip-share-title {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.hr-clip-share-preview {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 320px;
    margin: 0 auto 14px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #f5f5f5;
}

.hr-clip-share-label {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 4px;
}

.hr-clip-share-link {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    box-sizing: border-box;
}

.hr-clip-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hr-clip-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 2px;
    background: #031B28;
    color: #D4AF37;
    font-family: "Noto Sans", "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.hr-clip-share-btn:hover {
    background: #D4AF37;
    color: #031B28;
}

.hr-clip-share-btn--dl {
    background: #0f766e;
    color: #ffffff !important;
    border-color: #0f766e;
}
.hr-clip-share-btn--dl:hover {
    background: #0d9488;
    color: #ffffff !important;
    border-color: #0d9488;
}
.hr-clip-share-btn--wa { background: #128C7E; color: #fff; }
.hr-clip-share-btn--fb { background: #1877f2; color: #fff; }

/* Bottom thumbnails strip (all pages, no sections) */
.hr-tool-icon-svg {
    display: block;
}

.hr-bottom-thumbs {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2600;
    display: flex;
    align-items: stretch;
    background: #d4d4d4;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
    min-height: 148px;
    padding: 12px 44px 14px 16px;
    box-sizing: border-box;
}

.hr-bottom-thumbs[hidden] {
    display: none !important;
}

.hr-bottom-thumbs-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    width: 100%;
    padding: 4px 4px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.hr-bottom-thumbs-empty {
    margin: 24px auto;
    color: #666;
    font-size: 0.9rem;
}

.hr-bottom-thumb {
    flex: 0 0 auto;
    width: 78px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-align: center;
}

.hr-bottom-thumb-img {
    display: block;
    width: 78px;
    height: 104px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.14);
    overflow: hidden;
}

.hr-bottom-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hr-bottom-thumb-label {
    display: block;
    margin-top: 5px;
    font-size: 0.75rem;
    color: #555;
    font-weight: 500;
}

.hr-bottom-thumb.is-active .hr-bottom-thumb-img {
    outline: 2px solid #111;
    outline-offset: 1px;
}

.hr-bottom-thumb:hover .hr-bottom-thumb-img {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hr-bottom-thumbs-next {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hr-bottom-thumbs-next[hidden] {
    display: none !important;
}

.hr-bottom-thumbs-next:hover {
    background: #fff;
}

body.hr-bottom-thumbs-open .hr-stage {
    padding-bottom: 170px;
}

body.hr-bottom-thumbs-open .hr-page-meta {
    margin-bottom: 160px;
}

@media (min-width: 900px) {
    .hr-bottom-thumb {
        width: 90px;
    }
    .hr-bottom-thumb-img {
        width: 90px;
        height: 120px;
    }
    .hr-bottom-thumbs {
        min-height: 164px;
    }
}

/* ââ Archive modal (reader) ââ */
.hr-archive-modal {
    position: fixed;
    inset: 0;
    z-index: 5200;
    background: rgba(12, 14, 18, 0.55);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}
.hr-archive-modal[hidden] { display: none !important; }
.hr-archive-dialog {
    width: min(920px, 100vw);
    max-height: min(94vh, 860px);
    overflow: auto;
    background: #f4f1ea;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}
@media (min-width: 768px) {
    .hr-archive-modal { align-items: center; padding: 20px; }
    .hr-archive-dialog { border-radius: 12px; }
}
.hr-archive-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 8px;
    background: #fff;
    border-bottom: 1px solid #e4e0d8;
    position: sticky;
    top: 0;
    z-index: 2;
}
.hr-archive-head h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.hr-archive-sub { margin: 4px 0 0; color: #777; font-size: 0.85rem; }
.hr-archive-close {
    width: 36px; height: 36px; border: none; border-radius: 50%;
    background: #eee; font-size: 1.4rem; cursor: pointer; line-height: 1;
}
.hr-archive-layout { padding: 14px; }
.hr-archive-layout .archive-hint a { color: #0d6efd; font-weight: 600; text-decoration: none; }

/*  Homepage category browse (3 categories + pagination)  */
.hr-category-browse-title {
    font-family: var(--hr-serif);
    color: var(--hr-ink);
}
.hr-category-browse-archive {
    color: var(--hr-cta-link, #1a4db3);
    text-decoration: none;
}
.hr-category-browse-archive:hover { text-decoration: underline; }
.hr-category-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--hr-border);
}
.hr-category-section:last-of-type { border-bottom: none; }
.hr-category-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.85rem;
}
.hr-category-section-title {
    margin: 0;
    font-family: var(--hr-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hr-ink);
}
.hr-category-section-count {
    font-family: var(--hr-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--hr-muted);
}
.hr-category-section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hr-cta-link, #1a4db3);
    text-decoration: none;
    white-space: nowrap;
}
.hr-category-section-link:hover { text-decoration: underline; }
.hr-category-edition-card {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
}
.hr-category-edition-card:hover .hr-category-edition-name {
    color: var(--hr-cta-link, #1a4db3);
}
.hr-category-edition-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    background: #fff;
    border: 1px solid var(--hr-border);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.hr-category-edition-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border: 1px solid var(--hr-border);
    color: var(--hr-muted);
    font-size: 2.4rem;
}
.hr-category-edition-name {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hr-category-edition-date {
    display: block;
    font-size: 0.75rem;
    color: var(--hr-muted);
}
.hr-category-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--hr-border);
}
.hr-category-page-btn,
.hr-category-page-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.7rem;
    border: 1px solid var(--hr-border);
    background: #fff;
    color: var(--hr-ink);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
}
.hr-category-page-btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}
.hr-category-page-num.is-active {
    background: var(--hr-ink);
    border-color: var(--hr-ink);
    color: #fff;
}
.hr-category-page-numbers {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}
.hr-category-page-meta {
    margin: 0.5rem 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--hr-muted);
}
body.hr-theme-navy .hr-category-edition-img,
body.hr-theme-navy .hr-category-edition-placeholder,
body.hr-theme-navy .hr-category-page-btn,
body.hr-theme-navy .hr-category-page-num {
    border-color: rgba(255,255,255,0.12);
}
body.hr-theme-navy .hr-category-page-btn,
body.hr-theme-navy .hr-category-page-num {
    background: rgba(255,255,255,0.06);
    color: inherit;
}
body.hr-theme-navy .hr-category-page-num.is-active {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #031B28;
}

/* In-page “Allow notifications?” ask — then native browser prompt on Allow */
.epaper-push-ask {
    position: fixed;
    z-index: 12050;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: 22.5rem;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1rem 1.05rem 0.95rem;
    color: #111;
    font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
}
.epaper-push-ask-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}
.epaper-push-ask-body {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #4b5563;
}
.epaper-push-ask-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}
.epaper-push-ask-actions button {
    border: 0;
    border-radius: 8px;
    padding: 0.45rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
}
.epaper-push-ask-later {
    background: #f3f4f6;
    color: #374151;
}
.epaper-push-ask-allow {
    background: #c4004a;
    color: #fff;
}
