/* =========================================================
   Broadsheet / newspaper edition theme
   (no side-wrinkle gutters)
   ========================================================= */

:root {
    --ink: #121212;
    --ink-soft: #1c1c1c;
    --paper: #e8dcc6;
    --paper-deep: #d9c9a8;
    --surface: #f6efe0;
    --surface-lift: #fff8ea;
    --muted: #4a453c;
    --line: #1a1a1a;
    --line-strong: #000;
    --copper: #7a2016;
    --copper-deep: #5c160f;
    --copper-glow: rgba(122, 32, 22, .14);
    --gold: #b08a3c;
    --mist: #6b6458;
    --radius: 0;
    --radius-lg: 0;
    --shadow: 4px 4px 0 rgba(18, 18, 18, .12);
    --shadow-lift: 8px 8px 0 rgba(18, 18, 18, .16);
    --font-sans: "DM Sans", "Segoe UI", sans-serif;
    --font-serif: "Playfair Display", "Source Serif 4", Georgia, serif;
    --font-body: "Source Serif 4", Georgia, serif;
    --header-h: auto;
    --rule: 1px solid var(--line);
    --rule-thick: 2px solid var(--line);
    --rule-double: 3px double var(--line);
}

body.paper-edition,
body {
    color: var(--ink);
    background:
        radial-gradient(900px 420px at 8% -5%, rgba(176, 138, 60, .12), transparent 55%),
        radial-gradient(700px 380px at 96% 8%, rgba(122, 32, 22, .08), transparent 50%),
        linear-gradient(180deg, #efe4ce 0%, var(--paper) 28%, #e4d5b8 72%, var(--paper-deep) 100%);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body.paper-edition::before {
    opacity: .055;
    mix-blend-mode: multiply;
}

@keyframes paper-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

@keyframes ink-rule {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes soft-pulse {
    0%, 100% { opacity: .55; }
    50% { opacity: 1; }
}

.container {
    width: min(1120px, calc(100% - 40px));
}

/* ---- Masthead header ---- */
.site-header.paper-header {
    position: sticky;
    top: 0;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 0;
    backdrop-filter: none;
}

.site-header.paper-header.is-scrolled,
.site-header.paper-header.menu-open-header {
    color: var(--ink);
    background: var(--paper);
    border-bottom: 0;
    backdrop-filter: none;
}

.paper-masthead {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(0, 2.2fr) minmax(140px, 1fr);
    gap: 18px;
    align-items: end;
    padding: 18px 0 14px;
    border-bottom: var(--rule);
}

.masthead-meta {
    display: grid;
    gap: 4px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.35;
    color: var(--ink);
}

.masthead-meta strong {
    font-size: 11px;
    letter-spacing: .14em;
}

.masthead-meta.is-end {
    justify-items: end;
    text-align: right;
}

.masthead-stamp-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.masthead-stamp {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--ink);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .15);
}

.masthead-center {
    text-align: center;
    padding: 0 8px;
}

.masthead-center .masthead-est {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.masthead-title {
    display: block;
    margin: 0;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(34px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: .95;
    text-wrap: balance;
    text-shadow: 1px 1px 0 rgba(122, 32, 22, .12);
}

.masthead-title:hover { color: var(--ink); }

.masthead-tagline {
    margin: 10px 0 0;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
}

.paper-nav-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    border-bottom: var(--rule-thick);
    border-top: var(--rule);
    margin-top: 0;
    background:
        linear-gradient(180deg, rgba(255, 248, 234, .55), transparent 70%);
}

.paper-header .desktop-nav {
    gap: 0;
    margin-right: auto;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.paper-header .desktop-nav > a,
.paper-header .nav-dropdown > button {
    padding: 14px 12px;
    position: relative;
}

.paper-header .desktop-nav > a:hover,
.paper-header .nav-dropdown > button:hover {
    color: var(--copper);
}

.paper-header .desktop-nav > a::after,
.paper-header .nav-dropdown > button::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 5px solid transparent;
    transform: translateX(-50%);
}

.paper-header .desktop-nav > a:hover::after,
.paper-header .nav-dropdown:hover > button::after {
    border-bottom-color: var(--ink);
}

.paper-header .brand { display: none; }

.paper-header .nav-actions { gap: 6px; }

.paper-header .live-chip,
.paper-header .icon-button,
.paper-header .menu-toggle,
.paper-header .account-trigger,
.paper-header .lang-toggle,
.paper-header .contact-button {
    border-radius: 0;
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.paper-header .contact-button,
.paper-header .live-chip {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.paper-header .contact-button {
    background: var(--copper);
    color: #fff;
    border-color: var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
}

.paper-header .contact-button:hover {
    background: var(--copper-deep);
}

.paper-header.is-scrolled .live-chip,
.paper-header.is-scrolled .icon-button,
.paper-header.is-scrolled .menu-toggle,
.paper-header.is-scrolled .lang-toggle,
.paper-header.menu-open-header .live-chip,
.paper-header.menu-open-header .icon-button,
.paper-header.menu-open-header .menu-toggle,
.paper-header.menu-open-header .lang-toggle {
    border-color: var(--ink);
    background: var(--surface);
    color: var(--ink);
}

.dropdown-menu {
    border-radius: 0;
    border: var(--rule);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, .12);
    background: var(--surface);
}

.dropdown-menu a:hover {
    background: rgba(122, 32, 22, .08);
    color: var(--copper-deep);
    border-radius: 0;
}

.paper-header .mobile-menu {
    position: absolute;
    inset: auto 0 auto 0;
    top: 100%;
    z-index: 45;
    max-height: min(70vh, calc(100dvh - 120px));
    overflow: auto;
    background: var(--paper);
    border-top: var(--rule);
    border-bottom: var(--rule-thick);
}

.mobile-menu a {
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
}

/* ---- Hero as broadsheet feature ---- */
.paper-hero.hero {
    min-height: 0;
    display: block;
    align-items: stretch;
    color: var(--ink);
    background: var(--paper);
    overflow: visible;
}

.paper-hero .hero-media,
.paper-hero .hero-veil,
.paper-hero .hero-scroll,
.paper-hero .hero-brand {
    display: none;
}

.paper-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 28px;
    align-items: center;
    padding: 36px 0 28px;
    border-bottom: var(--rule);
}

.paper-hero-copy .breaking {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--copper);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.paper-hero-copy h1 {
    margin: 0 0 16px;
    max-width: none;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -.03em;
    text-transform: uppercase;
    animation: none;
}

.paper-hero-copy .hero-lead {
    max-width: 42ch;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    animation: none;
}

.paper-hero .hero-actions {
    margin-top: 22px;
    animation: none;
}

.paper-hero .btn-primary {
    height: 44px;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: var(--copper);
    color: #fff;
    box-shadow: 3px 3px 0 var(--ink);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.paper-hero .btn-primary:hover {
    background: var(--copper-deep);
}

.paper-hero .btn-ghost {
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.paper-hero-media {
    position: relative;
    border: var(--rule);
    background: #111;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
}

.paper-hero-media::before,
.paper-hero-media::after {
    content: "";
    position: absolute;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 2px solid var(--copper);
    pointer-events: none;
}

.paper-hero-media::before {
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0;
}

.paper-hero-media::after {
    right: 10px;
    bottom: 10px;
    border-left: 0;
    border-top: 0;
}

.paper-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}

.paper-hero-media:hover img {
    transform: scale(1.045);
}

.paper-seal {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0, 0, 0, .82);
    color: #fff;
    text-align: center;
    transform: rotate(-8deg);
}

.paper-seal strong {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: .02em;
}

.paper-seal span {
    display: block;
    margin-top: 4px;
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .8;
}

/* ---- Shared newspaper component polish ---- */
.section-kicker,
.news-category,
.utility-heading > span,
.ticker strong {
    font-family: var(--font-sans) !important;
    letter-spacing: .14em !important;
    color: var(--copper) !important;
}

/* Category tags: parchment on ink edge — readable over photos */
.story-tag,
.video-feature span,
.video-side span,
.spotlight-copy .story-tag {
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    line-height: 1.2 !important;
    color: var(--copper) !important;
    background: #f3e8d4 !important;
    border: 1px solid var(--ink) !important;
    border-radius: 0 !important;
    padding: 8px 12px !important;
    text-transform: uppercase;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .12);
}

.section-heading h2,
.spotlight-copy h3,
.story-body h3,
.advice-grid h3,
.service-card h3,
.world-news-card h3,
.about-copy h2,
.contact-copy h2 {
    font-family: var(--font-serif) !important;
    font-weight: 700 !important;
    letter-spacing: -.02em;
}

.btn-primary,
.outline-button,
.contact-button,
.form-submit button,
.dark-button,
.search-go {
    border-radius: 0 !important;
    font-family: var(--font-sans);
    letter-spacing: .08em;
    text-transform: uppercase;
}

.btn-primary,
.form-submit button,
.search-go,
.dark-button {
    background: var(--copper) !important;
    border: 1px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    color: #fff !important;
}

.outline-button {
    border: 1px solid var(--ink) !important;
    background: transparent !important;
    color: var(--ink) !important;
}

.spotlight-slider,
.utility-card,
.story-card,
.news-row,
.world-news-card,
.service-card,
.advice-grid article,
.contact-form,
.podcast-player,
.team-card,
.ad-viewport,
.ad-creative {
    border-radius: 0 !important;
}

.spotlight { padding: 48px 0 24px; }

.spotlight-slider {
    min-height: 420px;
    border: var(--rule);
    background: #111;
    box-shadow: var(--shadow-lift);
    overflow: hidden;
}

.spotlight-slide {
    background-image:
        linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.55) 45%, rgba(0,0,0,.2) 100%),
        var(--spotlight-image);
    background-size: cover;
    background-position: center;
    transition: transform 1s ease;
}

.spotlight-slide.active {
    filter: none;
    animation: paper-rise .55s ease both;
}

.spotlight-slider:hover .spotlight-slide.active {
    transform: scale(1.02);
}

.ticker {
    border-block: var(--rule);
    background:
        linear-gradient(90deg, rgba(122, 32, 22, .1), transparent 18%, transparent 82%, rgba(122, 32, 22, .1)),
        var(--surface);
}

.ticker-inner { border: 0; }

.utility-section { padding: 0; }

.utility-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-bottom: var(--rule);
    background: var(--surface);
}

.utility-card {
    border: 0;
    border-right: var(--rule);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 28px 22px;
    transition: background .25s ease, box-shadow .25s ease;
}

.utility-card:last-child { border-right: 0; }

.utility-card:hover {
    transform: none;
    background: var(--surface-lift);
    box-shadow: inset 0 -3px 0 var(--copper);
}

.news-layout .lead-story,
.story-card,
.news-row {
    border: var(--rule);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.news-layout .lead-story:hover,
.story-card:hover,
.news-row:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lift);
    background: var(--surface-lift);
}

.lead-story {
    overflow: hidden;
}

.lead-story .story-image {
    border-radius: 0;
    height: 360px;
    padding: 18px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.lead-story:hover .story-image {
    filter: contrast(1.05) saturate(1.08);
}

.lead-story .story-body {
    padding: 26px 28px 28px !important;
    box-sizing: border-box;
    border-top: var(--rule-double);
}

.lead-story .story-body h3 {
    margin: 12px 0 14px;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.25;
}

.lead-story .story-body h3 a {
    background-image: linear-gradient(var(--copper), var(--copper));
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .35s ease, color .2s ease;
}

.lead-story .story-body h3 a:hover {
    color: var(--copper-deep);
    background-size: 100% 2px;
}

.lead-story .story-body p {
    margin: 0 0 4px;
    max-width: 58ch;
}

.lead-story .engagement {
    margin-top: 20px;
}

.news-row {
    padding: 16px 18px !important;
    margin-bottom: 0 !important;
    border-bottom: 0 !important;
    gap: 16px;
    box-sizing: border-box;
    position: relative;
}

.news-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--copper);
    transition: width .25s ease;
}

.news-row:hover::before {
    width: 3px;
}

.news-row > div {
    min-width: 0;
    padding-right: 4px;
}

.news-list {
    display: grid;
    gap: 14px;
}

.news-layout {
    gap: 22px;
    align-items: start;
}

.lead-story img,
.story-card img,
.news-row img,
.world-news-card img,
.team-card img {
    filter: none;
    border-radius: 0 !important;
}

.video-feature,
.video-side article {
    filter: none;
    border-radius: 0 !important;
}

.category-tabs button,
.date-chip,
.slider-prev,
.slider-next,
.lang-toggle,
.icon-button,
.menu-toggle,
.account-trigger,
.live-chip {
    border-radius: 0 !important;
}

.category-tabs button.active,
.date-chip.is-active {
    background: var(--ink) !important;
    color: #fff !important;
}

.ad-slot-label {
    font-family: var(--font-sans);
    letter-spacing: .14em !important;
    border-radius: 0 !important;
    border: 1px solid var(--ink) !important;
    background: var(--surface-lift) !important;
    color: var(--ink) !important;
    box-shadow: 2px 2px 0 rgba(18, 18, 18, .1);
}

.ad-slot-label::before {
    border-radius: 0;
    background: var(--copper);
    box-shadow: none;
}

.ad-viewport {
    border-radius: 0 !important;
    border: 2px solid var(--ink) !important;
    box-shadow: 6px 6px 0 rgba(18, 18, 18, .14) !important;
}

.ad-creative {
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.ad-creative-copy strong {
    font-family: var(--font-serif) !important;
    font-weight: 700 !important;
}

.ad-creative-copy em {
    border-radius: 0 !important;
    border: 1px solid var(--ink) !important;
    background: #f6efe0 !important;
    color: var(--ink) !important;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, .25) !important;
}

.ad-dot {
    border-radius: 0 !important;
}

.ad-dot.is-active {
    background: var(--copper) !important;
    border-radius: 0 !important;
}

body.paper-edition .ad-rail {
    padding: 40px 0;
    opacity: 1 !important;
    transform: none !important;
}

.video-section {
    position: relative;
    background:
        radial-gradient(700px 280px at 15% 0%, rgba(122, 32, 22, .35), transparent 60%),
        radial-gradient(560px 240px at 90% 100%, rgba(176, 138, 60, .18), transparent 55%),
        #141414;
    border-block: var(--rule-thick);
}

.video-section .section-heading h2,
.video-section .light-heading h2 {
    color: #f6efe0;
}

.video-feature,
.video-side article {
    box-shadow: 6px 6px 0 rgba(0, 0, 0, .45);
    transition: transform .3s ease, box-shadow .3s ease;
}

.video-feature:hover,
.video-side article:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 rgba(122, 32, 22, .45);
}

.footer,
.site-footer {
    border-top: var(--rule-thick);
    background:
        linear-gradient(180deg, rgba(122, 32, 22, .06), transparent 40%),
        var(--paper-deep);
}

.account-dropdown {
    border-radius: 0;
    border: var(--rule);
    box-shadow: 4px 4px 0 rgba(0,0,0,.12);
}

.content-header,
.weather-header,
.world-header,
.province-header {
    background: var(--paper) !important;
    border-bottom: var(--rule) !important;
    backdrop-filter: none !important;
}

.back-home,
.nav-search {
    border-radius: 0 !important;
    border: 1px solid var(--ink) !important;
    background: transparent !important;
}

.auth-page,
.profile-page,
.province-page,
.weather-page,
.world-page,
.fx-page,
.article-page {
    background: var(--paper) !important;
}

.auth-card,
.profile-card,
.thought-composer,
.thought-card.fb-post,
.civic-card {
    border-radius: 0 !important;
    border: var(--rule) !important;
    background: var(--surface) !important;
    box-shadow: var(--shadow) !important;
}

/* ---- Edition vitality: sections, headings, cards ---- */
body.paper-edition .section {
    position: relative;
    padding: 88px 0;
}

body.paper-edition .section:nth-of-type(even) {
    background: linear-gradient(180deg, rgba(255, 248, 234, .42), rgba(232, 220, 198, .2));
}

body.paper-edition .section-heading {
    position: relative;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: var(--rule-double);
}

body.paper-edition .section-kicker {
    position: relative;
    padding-left: 14px;
}

body.paper-edition .section-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    transform: translateY(-50%);
    background: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
    animation: soft-pulse 2.8s ease-in-out infinite;
}

body.paper-edition .section-heading h2 {
    position: relative;
}

body.paper-edition [data-reveal].is-visible {
    animation: paper-rise .7s cubic-bezier(.2, .8, .2, 1) both;
}

body.paper-edition .category-tabs {
    gap: 0;
    padding: 0;
    border: var(--rule);
    border-radius: 0;
    background: var(--surface);
    box-shadow: var(--shadow);
}

body.paper-edition .category-tabs button {
    border-right: var(--rule);
    border-radius: 0;
    padding: 11px 16px;
    transition: background .2s ease, color .2s ease;
}

body.paper-edition .category-tabs button:last-child {
    border-right: 0;
}

body.paper-edition .category-tabs button:hover {
    background: rgba(122, 32, 22, .08);
    color: var(--copper-deep);
}

body.paper-edition .date-chip {
    border-radius: 0;
    border: var(--rule);
    background: var(--surface);
    box-shadow: 2px 2px 0 rgba(18, 18, 18, .08);
}

body.paper-edition .date-chip:hover {
    border-color: var(--copper);
    background: var(--surface-lift);
}

body.paper-edition .world-news-card,
body.paper-edition .service-card,
body.paper-edition .advice-grid article,
body.paper-edition .team-card {
    border: var(--rule);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
    color: var(--ink);
}

body.paper-edition .service-card h3 {
    color: var(--ink) !important;
}

body.paper-edition .service-card p {
    color: var(--muted) !important;
}

body.paper-edition .service-card > [data-lucide] {
    color: var(--copper);
}

body.paper-edition .service-number {
    color: var(--mist);
}

body.paper-edition .service-arrow {
    background: rgba(18, 18, 18, .06);
    color: var(--ink);
    border-radius: 0;
    border: 1px solid var(--ink);
}

body.paper-edition a.service-card:hover > .service-arrow {
    background: var(--copper);
    color: #fff;
    border-color: var(--ink);
}

body.paper-edition a.service-card:hover h3 {
    color: var(--copper-deep) !important;
}

/* Featured + CTA: ink panels so white text stays readable */
body.paper-edition .service-card.featured-service,
body.paper-edition .service-card.service-cta {
    background: var(--ink) !important;
    color: #f6efe0 !important;
    box-shadow: var(--shadow-lift);
}

body.paper-edition .featured-service h3,
body.paper-edition .service-cta h3 {
    color: #f6efe0 !important;
}

body.paper-edition .featured-service p,
body.paper-edition .featured-service .service-number {
    color: rgba(246, 239, 224, .68) !important;
}

body.paper-edition .featured-service > [data-lucide] {
    color: #d4a574;
}

body.paper-edition .featured-service > .service-arrow {
    background: #f6efe0;
    color: var(--ink);
    border-color: #f6efe0;
}

body.paper-edition a.featured-service:hover h3 {
    color: #d4a574 !important;
}

body.paper-edition a.featured-service:hover > .service-arrow {
    background: #d4a574;
    color: var(--ink);
    border-color: #d4a574;
}

body.paper-edition .service-cta > span {
    color: #d4a574 !important;
}

body.paper-edition .service-cta > a {
    color: #f6efe0 !important;
}

body.paper-edition .service-cta > a:hover {
    color: #d4a574 !important;
}

body.paper-edition .world-news-card:hover,
body.paper-edition .service-card:hover,
body.paper-edition .advice-grid article:hover,
body.paper-edition .team-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-lift);
    background: var(--surface-lift);
}

body.paper-edition .service-card.featured-service:hover,
body.paper-edition .service-card.service-cta:hover {
    background: #1f1a16 !important;
    box-shadow: 10px 10px 0 rgba(122, 32, 22, .35);
}

body.paper-edition .team-card img {
    transition: transform .55s ease;
}

body.paper-edition .team-card:hover img {
    transform: scale(1.04);
}

body.paper-edition .outline-button {
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

body.paper-edition .outline-button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--ink);
    background: var(--surface-lift) !important;
}

body.paper-edition .btn-primary:hover,
body.paper-edition .form-submit button:hover,
body.paper-edition .contact-button:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--ink);
}

body.paper-edition .about-layout,
body.paper-edition .contact-layout,
body.paper-edition .greeting-layout {
    gap: 36px;
}

body.paper-edition .news-thumb {
    border: var(--rule);
    transition: transform .35s ease;
}

body.paper-edition .news-row:hover .news-thumb {
    transform: scale(1.03);
}

body.paper-edition .story-tag,
body.paper-edition .video-feature span,
body.paper-edition .video-side span {
    transition: transform .2s ease, box-shadow .2s ease;
}

body.paper-edition .lead-story:hover .story-tag,
body.paper-edition .video-feature:hover span,
body.paper-edition .video-side article:hover span {
    transform: translateY(-1px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, .2);
}

@media (max-width: 980px) {
    .paper-masthead {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .masthead-meta,
    .masthead-meta.is-end {
        justify-items: center;
        text-align: center;
    }

    .paper-hero-grid { grid-template-columns: 1fr; }

    .paper-hero-media {
        aspect-ratio: 16 / 10;
        order: -1;
    }

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

    .utility-card {
        border-right: 0;
        border-bottom: var(--rule);
    }

    .paper-header .desktop-nav { display: none; }

    body.paper-edition .section { padding: 64px 0; }
}

@media (max-width: 760px) {
    .masthead-title { font-size: clamp(28px, 10vw, 40px); }
    .paper-hero-copy h1 { font-size: clamp(28px, 8vw, 40px); }

    .news-layout .lead-story:hover,
    .story-card:hover,
    .news-row:hover,
    body.paper-edition .world-news-card:hover,
    body.paper-edition .service-card:hover,
    body.paper-edition .team-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.paper-edition *,
    body.paper-edition *::before,
    body.paper-edition *::after {
        animation: none !important;
        transition: none !important;
    }
}
