/* Singapore Scope — Site A design system */
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --ink: #0F1C2E;
  --red: #C41E3A;
  --newsprint: #FAF8F5;
  --desk: #2A4A6B;
  --ink-muted: #3d5168;
  --red-dark: #a01830;
  --sidebar-width: 260px;
  --header-height: 64px;
  --font-head: 'Newsreader', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 24px rgba(15, 28, 46, 0.12);
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--newsprint);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--desk);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3vw, 2.25rem); }
h3 { font-size: 1.375rem; }

p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }

/* Surface system */
.surface-dark {
  background-color: var(--ink);
  color: var(--newsprint);
}

.surface-dark a { color: var(--newsprint); }
.surface-dark a:hover { color: #fff; }

.surface-light {
  background-color: var(--newsprint);
  color: var(--ink);
}

.surface-accent {
  background-color: var(--red);
  color: var(--newsprint);
}

.surface-accent a { color: var(--newsprint); }

.surface-desk {
  background-color: var(--desk);
  color: var(--newsprint);
}

.surface-desk a { color: var(--newsprint); }

/* Layout shell */
.site-scope {
  min-height: 100vh;
}

.sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  overflow-y: auto;
  border-right: 1px solid rgba(250, 248, 245, 0.1);
  transform: translateX(0);
  transition: transform 0.35s var(--ease);
}

.sidebar-nav__brand {
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.12);
  margin-bottom: 1rem;
}

.sidebar-nav__brand span {
  display: block;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.sidebar-nav__brand small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav__list li { margin: 0; }

.sidebar-nav__list a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--newsprint);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.sidebar-nav__list a:hover,
.sidebar-nav__list a.is-active {
  background: rgba(250, 248, 245, 0.08);
  border-left-color: var(--red);
  color: #fff;
}

.sidebar-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 28, 46, 0.55);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}

.sidebar-scrim.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.scope-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.scope-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  border-bottom: 1px solid rgba(15, 28, 46, 0.1);
}

.scope-header__wordmark {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.scope-header__date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-align: center;
  flex: 1;
  padding: 0 1rem;
}

.sidebar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(15, 28, 46, 0.15);
  background: #fff;
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius);
  z-index: 110;
}

.sidebar-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.25s;
}

main { flex: 1; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}

@media (min-width: 1024px) {
  .scope-shell {
    margin-left: var(--sidebar-width);
  }

  .scope-header__wordmark { display: none; }

  .sidebar-toggle { display: none !important; }

  .sidebar-scrim { display: none !important; }

  .section { padding: 5rem 0; }

  h1 { font-size: 3.25rem; }
}

@media (max-width: 1023px) {
  .sidebar-nav {
    transform: translateX(-100%);
  }

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

  .sidebar-scrim {
    display: block;
  }

  .scope-header__date {
    font-size: 0.65rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-primary {
  background: var(--red);
  color: var(--newsprint);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.surface-dark .btn-secondary {
  color: var(--newsprint);
  border-color: var(--newsprint);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--newsprint);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero Pattern A — Editorial Spotlight */
.hero-spotlight {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .hero-spotlight {
    min-height: 90vh;
    grid-template-columns: 3fr 2fr;
  }
}

.hero-spotlight__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 1.25rem;
}

@media (min-width: 1024px) {
  .hero-spotlight__text {
    padding: 4rem 3rem 4rem 2rem;
  }
}

.hero-spotlight__visual {
  position: relative;
  border-left: 4px solid var(--red);
}

.hero-spotlight__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.hero-spotlight__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  background: rgba(15, 28, 46, 0.85);
  color: var(--newsprint);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.surface-dark .eyebrow { color: #f0a0ae; }

.serial {
  font-size: 0.8125rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.surface-dark .serial { color: rgba(250, 248, 245, 0.65); }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 28, 46, 0.12);
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

.surface-dark .trust-strip {
  border-top-color: rgba(250, 248, 245, 0.15);
  color: rgba(250, 248, 245, 0.7);
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(15, 28, 46, 0.1);
}

@media (min-width: 768px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
}

.stat-strip__item {
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.stat-strip__value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.surface-dark .stat-strip__value { color: #f0a0ae; }

.surface-desk .stat-strip__value,
.surface-desk .stat-strip__label {
  color: #fff;
}

.stat-strip__label {
  font-size: 0.8125rem;
  margin-top: 0.35rem;
  opacity: 0.85;
}

.surface-desk .stat-strip__label {
  opacity: 1;
}

/* News grid */
.news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-grid { grid-template-columns: repeat(3, 1fr); }
}

.news-card {
  border-top: 3px solid var(--red);
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

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

.news-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.news-card:hover .news-card__img img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 1.25rem;
}

.news-card__desk {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.news-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.news-card h3 a:hover { color: var(--red); }

.news-card p {
  font-size: 0.9375rem;
  color: var(--ink-muted);
  margin: 0;
}

/* Desk briefs */
.desk-briefs {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .desk-briefs { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .desk-briefs { grid-template-columns: repeat(4, 1fr); }
}

.desk-brief {
  padding: 1.5rem;
  border-left: 3px solid var(--desk);
}

.desk-brief__num {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--desk);
  margin-bottom: 0.5rem;
}

.surface-dark .desk-brief__num { color: #8eb4d4; }

.desk-brief h3 { font-size: 1.0625rem; }

/* Analysis rail */
.analysis-rail {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .analysis-rail {
    grid-template-columns: 1fr 1fr;
  }
}

.analysis-rail__img {
  border-top: 4px solid var(--red);
}

.analysis-rail__img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Section headers */
.section-header {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-header .eyebrow { margin-bottom: 0.75rem; }

.accent-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 1rem 0;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 { margin-bottom: 0.75rem; }

.page-hero__lead {
  font-size: 1.125rem;
  max-width: 640px;
  color: var(--ink-muted);
}

.surface-dark .page-hero__lead {
  color: rgba(250, 248, 245, 0.8);
}

.page-hero.surface-desk .eyebrow,
.page-hero.surface-desk h1,
.page-hero.surface-desk .page-hero__lead {
  color: #fff;
}

/* Content layouts */
.content-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .content-grid--aside {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.content-block {
  margin-bottom: 2.5rem;
}

.content-block img {
  margin: 1.5rem 0;
  border-top: 3px solid var(--red);
}

/* Team grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  padding: 1.5rem;
  border: 1px solid rgba(15, 28, 46, 0.1);
}

.team-card h3 { font-size: 1.125rem; }

.team-card__role {
  font-size: 0.8125rem;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Masthead quote */
.masthead-quote {
  padding: 2rem;
  border-left: 4px solid var(--red);
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-style: italic;
  margin: 2rem 0;
}

/* FAQ accordion */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(15, 28, 46, 0.12);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  color: inherit;
  cursor: pointer;
  min-height: 44px;
}

.faq-item__question:hover { color: var(--red); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.25s;
}

.faq-item.is-open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__answer {
  padding: 0 0 1.25rem;
  color: var(--ink-muted);
}

.surface-dark .faq-item__answer {
  color: rgba(250, 248, 245, 0.8);
}

.faq-item__answer[hidden] { display: none; }

/* Forms */
.form-panel {
  padding: 2rem;
  border: 1px solid rgba(15, 28, 46, 0.1);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(15, 28, 46, 0.2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--desk);
  outline-offset: 1px;
}

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.form-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.9375rem;
  font-weight: 400;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-success {
  padding: 1rem 1.25rem;
  background: rgba(42, 74, 107, 0.12);
  border-left: 4px solid var(--desk);
  margin-bottom: 1.5rem;
}

.form-success[hidden] { display: none; }

/* Legal prose */
.legal-prose h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.legal-prose h3 {
  margin-top: 1.5rem;
  font-size: 1.125rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--ink-muted);
}

/* Footer */
.scope-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.12);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
}

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

.footer-col li { margin-bottom: 0.5rem; }

.footer-col a {
  color: rgba(250, 248, 245, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-col a:hover { color: #fff; }

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 248, 245, 0.12);
  font-size: 0.8125rem;
  color: rgba(250, 248, 245, 0.65);
  line-height: 1.6;
}

.footer-bottom {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(250, 248, 245, 0.5);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.25rem;
  box-shadow: 0 -4px 24px rgba(15, 28, 46, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9375rem;
  flex: 1;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-banner .btn {
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  min-height: 44px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 28, 46, 0.6);
}

.cookie-modal[hidden] { display: none; }

.cookie-modal__panel {
  max-width: 520px;
  width: 100%;
  padding: 2rem;
  border-radius: var(--radius);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal__panel h2 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 28, 46, 0.1);
}

.cookie-option label {
  font-weight: 600;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-modal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 1.25rem;
}

.cta-band h2 { margin-bottom: 0.75rem; }

.cta-band p {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}

/* Mini FAQ on index */
.mini-faq {
  max-width: 720px;
}

.mini-faq details {
  border-bottom: 1px solid rgba(15, 28, 46, 0.12);
  padding: 1rem 0;
}

.mini-faq summary {
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mini-faq p {
  margin-top: 0.75rem;
  color: var(--ink-muted);
  font-size: 0.9375rem;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 5rem 1.25rem;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page__code {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Reveal animations — JS only */
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Editorial disclaimer box */
.disclaimer-box {
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--desk);
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin: 2rem 0;
  background: rgba(42, 74, 107, 0.06);
}

.surface-dark .disclaimer-box {
  background: rgba(250, 248, 245, 0.06);
  color: rgba(250, 248, 245, 0.75);
}

/* Contact layout */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-top: 3px solid var(--red);
}

.contact-detail {
  margin-bottom: 1rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.25rem;
}

/* Program / service cards */
.beat-card {
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-top: 3px solid var(--red);
}

.beat-card h2 {
  font-size: 1.375rem;
}

.beat-card__desk {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--desk);
  margin-bottom: 0.75rem;
}

/* Inline SVG icon sizing */
.icon-inline {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 0.35rem;
}

@media (max-width: 767px) {
  .scope-header__date { display: none; }
}
