/* ============================================================
   Elite Agent — Responsive CSS
   Mobile-first. Default styles are phone layout.
   min-width media queries progressively enhance.

   This file consolidates all base + responsive styles for:
   - Masthead
   - Mega Navigation
   - Tools Strip
   - Mega Footer
   - Footer Bottom
   - Article layout
   - Ad zones
   - Side towers & background skins
   ============================================================ */


/* ============================================================
   SIDEBAR — Base (hidden on mobile, shown at desktop)
   ============================================================ */
.sidebar,
.article-sidebar {
    display: none;
}


/* ============================================================
   MASTHEAD — Base (mobile-first)
   ============================================================ */
.masthead {
    padding: 14px 0;
    border-bottom: 1px solid var(--grey-200);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.masthead__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
}

/* Left: hamburger + search + date */
.masthead__left {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Avatar / login icon */
.masthead__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    color: var(--grey-600);
    text-decoration: none;
}
.masthead__avatar:hover { color: var(--black); }
.masthead__avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.masthead__avatar--guest {
    background: var(--grey-100);
}

.masthead__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--grey-600);
    background: none;
    border: none;
    cursor: pointer;
}
.masthead__hamburger:hover { color: var(--black); }
.masthead__search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--grey-600);
}
.masthead__search:hover { color: var(--black); }
.masthead__date {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--grey-400);
    display: none;
}

/* Centre: logo + tagline */
.masthead__center {
    text-align: center;
}
.masthead__logo-text {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--black);
    display: block;
    line-height: 1;
}
.masthead__logo-img {
    max-height: 72px;
    width: auto;
    margin: 0 auto;
}
.masthead__tagline {
    font-family: var(--font-ui);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--grey-400);
    display: none;
    margin-top: 0;
}

/* Right: CTAs */
.masthead__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.masthead__subscribe-link {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-600);
    display: none;
    white-space: nowrap;
}
.masthead__subscribe-link:hover { color: var(--black); }
.btn--sm {
    font-size: 12px;
    padding: 6px 14px;
}

/* Search overlay */
.search-overlay {
    background: var(--white);
    border-bottom: 2px solid var(--black);
    padding: 16px 0;
}
.search-overlay[hidden] {
    display: none;
}
.search-overlay__inner {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search-overlay__form {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 8px;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 4px;
    padding: 8px 12px;
}
.search-overlay__input {
    flex: 1;
    border: none;
    background: none;
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--black);
    outline: none;
}
.search-overlay__input::placeholder {
    color: var(--grey-400);
}
.search-overlay__submit {
    color: var(--grey-600);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.search-overlay__submit:hover {
    color: var(--black);
}
.search-overlay__close {
    font-size: 28px;
    line-height: 1;
    color: var(--grey-400);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.search-overlay__close:hover {
    color: var(--black);
}


/* ============================================================
   DARK MASTHEAD — Article pages (mobile-first)
   ============================================================ */
.masthead--dark {
    background: var(--black);
    border-bottom: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.masthead--dark .masthead__avatar {
    color: rgba(255,255,255,0.7);
}
.masthead--dark .masthead__avatar:hover {
    color: var(--white);
}
.masthead--dark .masthead__avatar--guest {
    background: rgba(255,255,255,0.15);
}
.masthead--dark .masthead__hamburger,
.masthead--dark .masthead__search {
    color: rgba(255,255,255,0.7);
}
.masthead--dark .masthead__hamburger:hover,
.masthead--dark .masthead__search:hover {
    color: var(--white);
}
.masthead--dark .masthead__date {
    color: rgba(255,255,255,0.6);
}
.masthead--dark .masthead__subscribe-link {
    color: rgba(255,255,255,0.8);
}
.masthead--dark .masthead__subscribe-link:hover {
    color: var(--white);
}
.masthead--dark .btn--primary {
    background: #2563eb;
}


/* ============================================================
   MEGA NAVIGATION — Base (mobile-first)
   ============================================================ */
.mega-nav {
    border-bottom: 1px solid var(--grey-200);
    position: relative;
}
.mega-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.mega-nav__list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.mega-nav__list li {
    position: relative;
}
.mega-nav__list > li > a {
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 14px;
    color: var(--black);
    white-space: nowrap;
    text-transform: capitalize;
    transition: color var(--speed-fast) var(--ease);
}
.mega-nav__list > li > a:hover,
.mega-nav__list > li.current-menu-item > a,
.mega-nav__list > li.current-menu-parent > a {
    color: var(--accent-primary);
}

/* ---- Mega Dropdown Panels ---- */
.mega-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 2px solid var(--accent-primary, var(--brand-purple));
    z-index: 100;
    min-width: 520px;
    padding: 20px 24px;
}
.mega-nav__item--has-mega:hover > .mega-nav__dropdown {
    display: block;
}
.mega-nav__dropdown-inner {
    display: flex;
    gap: 24px;
}

/* Posts column within mega dropdown */
.mega-nav__posts {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-right: 1px solid var(--grey-200);
    padding-right: 24px;
}
.mega-nav__post {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    transition: opacity var(--speed-fast) var(--ease);
}
.mega-nav__post:hover {
    opacity: 0.8;
}
.mega-nav__post--featured {
    flex-direction: column;
    gap: 8px;
}
.mega-nav__post-thumb {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}
.mega-nav__post-thumb img,
.mega-nav__post-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.mega-nav__post-title {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mega-nav__post--featured .mega-nav__post-title {
    font-size: 14px;
}
.mega-nav__view-all {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-primary, var(--brand-purple));
    text-decoration: none;
    margin-top: 4px;
}
.mega-nav__view-all:hover {
    text-decoration: underline;
}

/* Sub-links column within mega dropdown */
.mega-nav__sub-links {
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mega-nav__sub-links li {
    list-style: none;
}
.mega-nav__sub-link {
    display: block;
    font-family: var(--font-ui);
    font-size: 13px;
    padding: 6px 8px;
    color: var(--grey-800);
    border-radius: 4px;
    transition: all var(--speed-fast) var(--ease);
}
.mega-nav__sub-link:hover {
    background: var(--grey-50);
    color: var(--accent-primary);
}

/* Legacy sub-menu fallback for non-mega items */
.mega-nav__list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    z-index: 100;
    list-style: none;
    padding: 4px 0;
    margin: 0;
}
.mega-nav__list > li:hover > .sub-menu {
    display: block;
}


/* ============================================================
   TOOLS STRIP — Base (mobile-first)
   ============================================================ */
.tools-strip {
    background: var(--grey-50);
    border-bottom: 1px solid var(--grey-200);
    padding: 10px 0;
}
.tools-strip__grid {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.tools-strip__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grey-700);
    transition: color var(--speed-fast) var(--ease);
}
.tools-strip__item:hover { color: var(--accent-primary); }
.tools-strip__icon {
    font-size: 20px;
    flex-shrink: 0;
}
.tools-strip__text {
    display: flex;
    flex-direction: column;
}
.tools-strip__label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}
.tools-strip__desc {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 400;
    color: var(--grey-400);
    line-height: 1.2;
    display: none;
}


/* ============================================================
   MEGA FOOTER — Base (mobile-first)
   ============================================================ */
.mega-footer {
    background: var(--black);
    color: var(--grey-300);
    padding: 40px 0 24px;
}
.mega-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid #333;
}
.footer-logo {
    max-width: 320px;
}
.footer-logo__img {
    height: 32px;
    width: auto;
    display: block;
    margin-bottom: 12px;
}
.footer-logo__desc {
    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.5;
    color: var(--grey-400);
    margin: 0;
}
.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-social a {
    color: var(--grey-400);
    transition: color var(--speed-fast) var(--ease);
}
.footer-social a:hover {
    color: var(--white);
}
.mega-footer__grid {
    display: grid;
    gap: 32px;
}
.mega-footer__heading {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 12px;
}
.mega-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-footer__links li {
    margin-bottom: 8px;
}
.mega-footer__links a {
    font-family: var(--font-ui);
    font-size: 14px;
    color: var(--grey-400);
    transition: color var(--speed-fast) var(--ease);
}
.mega-footer__links a:hover {
    color: var(--white);
}


/* ============================================================
   FOOTER BOTTOM — Base (mobile-first)
   ============================================================ */
.footer-bottom {
    background: var(--black);
    border-top: 1px solid #333;
    padding: 16px 0;
}
.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom__copyright {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--grey-600);
}
.footer-bottom__links {
    display: flex;
    gap: 16px;
}
.footer-bottom__links a {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--grey-600);
    transition: color var(--speed-fast) var(--ease);
}
.footer-bottom__links a:hover {
    color: var(--grey-300);
}


/* ============================================================
   MOBILE-SPECIFIC (max-width: 767px)
   Refinements for phone screens.
   ============================================================ */
@media (max-width: 767px) {

  /* Contain horizontal overflow at the article wrapper level.
     Prevents ad creatives, iframes, and embeds from causing page scroll. */
  .article-layout {
    overflow-x: hidden;
  }

  /* ---- Article header: hide partner/promoted badge, show category only ---- */
  .article-header__pills [class^="badge--"] {
    display: none;
  }

  /* ---- Masthead: compact grid ---- */
  .masthead__inner {
      grid-template-columns: auto 1fr auto;
  }

  /* ---- Tools strip: show only Ailsa + AI Headshot on mobile ---- */
  .tools-strip__grid {
    display: flex;
    justify-content: center;
    gap: 24px;
  }
  .tools-strip__item:nth-child(1),
  .tools-strip__item:nth-child(3) {
    display: none;
  }

  /* ---- Full-bleed images in articles (exclude ad containers) ---- */
  .article-body > img,
  .article-body > figure,
  .article-body > .article-featured-media img,
  .article-body > .wp-block-image {
    margin-left: calc(-1 * var(--side-padding));
    margin-right: calc(-1 * var(--side-padding));
    max-width: calc(100% + 2 * var(--side-padding));
    width: calc(100% + 2 * var(--side-padding));
  }

  .article-body figcaption {
    padding: 0 var(--side-padding);
  }

  /* ---- Article headline: mobile size ---- */
  .article-header__headline {
    font-size: 28px;
  }

  .article-header__subheadline {
    font-size: 17px;
  }

  /* ---- Article body text for readability ---- */
  .single-article .article-body {
    font-size: 16px;
    line-height: 1.7;
    padding: 24px var(--side-padding);
  }

  /* Featured media: full width on mobile */
  .article-featured-media {
    float: none !important;
    width: 100% !important;
    margin: 24px 0 !important;
  }

  .article-featured-media img {
    max-height: 300px;
  }

  /* MRECs: centred on mobile — parent .article-body already has side padding */
  .ad-mrec-float,
  .ad-mrec-centered {
    float: none !important;
    width: 300px;
    max-width: 100%;
    margin: 36px auto;
    text-align: center;
  }

  /* ---- Leaderboard ads: scale down ---- */
  .ad-leaderboard {
    max-width: 100%;
    overflow: hidden;
  }

  /* ---- In-article ads: tighten on mobile ---- */
  .ad-in-article {
    max-width: 100%;
    padding: 12px 0;
    border-top: none;
    border-bottom: none;
  }

  /* ---- Interscroller: tighten on mobile ---- */
  .ad-interscroller {
    margin: 20px 0;
  }

  /* ---- Secondary cards: stack ---- */
  .card-secondary__image {
    width: 100px;
    height: 67px;
  }

  /* ---- More in Category: horizontal cards on mobile ---- */
  .more-in-category__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .more-in-category__card {
    flex-direction: row;
    gap: 12px;
  }

  .more-in-category__thumb {
    width: 100px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
  }

  .more-in-category__title {
    font-size: 14px;
  }
}


/* ============================================================
   MEGA NAV — Mobile overlay (max-width: 1023px)
   ============================================================ */
@media (max-width: 1023px) {

  /* Collapse the nav bar but keep overlay accessible */
  .mega-nav {
      height: 0;
      overflow: visible;
      border: none;
      padding: 0;
  }

  .mega-nav__list {
    display: none;
  }

  .mega-nav__list.mega-nav__list--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 1000;
    padding: 60px 24px 24px;
    overflow-y: auto;
  }

  .mega-nav__list--open .sub-menu {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 16px;
  }

  .mega-nav__list--open li.mega-nav__item--expanded > .sub-menu {
    display: block;
  }

  /* Mega dropdown panels — show inline on mobile when expanded */
  .mega-nav__dropdown {
    display: none !important;
    position: static;
    box-shadow: none;
    border-top: none;
    min-width: 0;
    padding: 8px 0 8px 16px;
  }

  .mega-nav__list--open .mega-nav__item--expanded > .mega-nav__dropdown {
    display: block !important;
  }

  .mega-nav__dropdown-inner {
    flex-direction: column;
    gap: 12px;
  }

  .mega-nav__posts {
    border-right: none;
    padding-right: 0;
    min-width: 0;
    border-bottom: 1px solid var(--grey-100);
    padding-bottom: 12px;
  }

  .mega-nav__post-thumb {
    display: none; /* Hide thumbnails in mobile nav */
  }

  .mega-nav__post--featured {
    flex-direction: row;
  }

  .mega-nav__list--open > li > a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-100);
  }

  .mega-nav__close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
  }

  .nav-close-btn {
    font-size: 28px;
    padding: 8px;
    line-height: 1;
  }
}


/* ============================================================
   TABLET (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {

  :root {
    --side-padding: 24px;
  }

  /* ---- Headlines scale up ---- */
  h1, .headline-xl {
    font-size: 32px;
  }

  /* ---- Related stories: 2-column grid ---- */
  .related-stories__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* ---- Interscroller: responsive size ---- */
  .ad-interscroller {
    width: 100%;
    max-width: 720px;
  }

  /* ---- Masthead: show date, tagline, subscribe ---- */
  .masthead__date { display: block; }
  .masthead__subscribe-link { display: block; }
  .masthead__tagline { display: block; }
  .masthead__logo-text { font-size: 30px; }

  /* ---- Tools strip: show descriptions ---- */
  .tools-strip__desc { display: block; }

  /* ---- Mega footer: 4-column layout ---- */
  .mega-footer__grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}


/* ============================================================
   DESKTOP (min-width: 1024px)
   ============================================================ */
@media (min-width: 1024px) {

  :root {
    --side-padding: 24px;
  }

  /* ---- Headlines full size ---- */
  h1, .headline-xl {
    font-size: 36px;
  }

  /* ---- Masthead: more breathing room ---- */
  .masthead { padding: 14px 0; }
  .masthead__logo-text { font-size: 36px; }
  .masthead__logo-img { max-height: 72px; }
  .masthead__tagline { font-size: 11px; letter-spacing: 0.18em; margin-top: 0; }

  /* ---- Navigation: full horizontal ---- */
  .masthead__hamburger { display: none; }
  .mega-nav__close { display: none; }

  .mega-nav__list {
    display: flex;
    gap: 0;
  }

  /* ---- Mega nav: desktop dropdowns ---- */
  .mega-nav__dropdown {
    /* Base styles set globally in responsive.css above */
    /* Desktop-specific: ensure proper positioning */
  }

  .mega-nav__item--has-mega:hover > .mega-nav__dropdown {
    display: block;
  }

  /* Prevent mega dropdown from overflowing viewport right edge */
  .mega-nav__item--has-mega:nth-last-child(-n+3) .mega-nav__dropdown {
    left: auto;
    right: 0;
  }

  /* ---- Desktop: activate grid + sidebar ---- */
  .article-layout {
    display: grid;
    grid-template-columns: minmax(0, var(--article-width)) 300px;
    gap: 40px;
    justify-content: center;
    overflow: visible;
    /* No align-items: flex-start — sidebar must stretch to act as sticky track */
  }

  /* === Sidebar — Desktop === */
  .article-sidebar {
    display: flex;
    flex-direction: column;
    padding-top: 48px;      /* Align with article-header padding-top */
  }

  .sidebar-track {
    display: flex;
    flex-direction: column;
    gap: 60px;
    height: 100%;
  }

  .sidebar-section {
    flex: 1 1 auto;
  }

  .sidebar-section > .sidebar-sticky {
    position: -webkit-sticky;   /* Safari */
    position: sticky;
    top: 90px;              /* masthead ~70px + 20px breathing room */
    z-index: 10;
  }

  .sidebar-mrec-slot {
    text-align: center;
  }

  /* ---- Article page: single-column within grid ---- */
  .article-header {
    max-width: var(--article-width);
    margin: 0 auto;
    padding: 48px 24px 0;
  }

  .article-header__headline {
    font-size: 50px;
  }

  .article-header__subheadline {
    font-size: 20px;
  }

  /* Article body: centered within grid column */
  .single-article .article-body {
    max-width: var(--article-width);
    margin: 0 auto;
    padding: 32px 0;
    position: relative;
  }

  /* Bleed removed — sidebar occupies the space */
  .single-article .article-body .article-featured-media {
    margin-left: 0;
    margin-right: 0;
  }

  .single-article .article-body figure,
  .single-article .article-body .wp-block-image {
    margin-left: 0;
    margin-right: 0;
  }

  .single-article .article-body figure img,
  .single-article .article-body .wp-block-image img {
    width: 100%;
    margin: 0;
  }

  .single-article .article-body .ad-in-article {
    margin-left: 0;
    margin-right: 0;
  }

  .single-article .article-body .ad-interscroller {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    height: auto;
  }

  /* MRECs: fallback styling (JS relocates to sidebar on desktop) */
  .single-article .article-body .ad-mrec-float {
    float: none;
    width: 300px;
    margin: 36px auto;
  }

  /* When MRECs are inside sidebar slots, reset content-column styling */
  .sidebar-mrec-slot .ad-mrec-float,
  .sidebar-mrec-slot .ad-mrec-centered {
    margin: 0 auto;
    width: 300px;
    clear: none;
  }

  /* Hide in-content MRECs in infinite scroll articles on desktop */
  #infinite-scroll-container .ad-mrec-float,
  #infinite-scroll-container .ad-mrec-centered {
    display: none;
  }

  /* Related stories: 3-column on desktop */
  .related-stories__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}


/* ============================================================
   WIDE (min-width: 1400px) — Background skin visible
   ============================================================ */
@media (min-width: 1400px) {

  /* Site container: centred with gutters for side towers */
  .site-container {
    max-width: var(--content-width);
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
  }

  /* Background skin gutters */
  .background-skin {
    display: block;
  }

  .background-skin__left,
  .background-skin__right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: calc((100vw - var(--content-width)) / 2);
    cursor: pointer;
    z-index: 0;
  }

  .background-skin__left { left: 0; }
  .background-skin__right { right: 0; }

  /* Side towers: fill the gutter between viewport edge and content */
  .side-tower {
    display: block;
    position: fixed;
    top: 120px;
    width: calc((100vw - var(--content-width)) / 2 - 20px);
    max-width: 300px;
    z-index: 10;
    overflow: hidden;
  }

  .side-tower--left {
    left: 10px;
  }

  .side-tower--right {
    right: 10px;
  }
}


/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .ad-zone,
  .side-tower,
  .background-skin,
  .news-ticker,
  .tools-strip,
  .mega-nav,
  .sidebar,
  .share-buttons,
  .related-stories,
  .engagement-placeholder,
  .article-audio-player,
  footer {
    display: none !important;
  }

  .article-body {
    font-size: 12pt;
    line-height: 1.5;
    max-width: 100%;
  }

  .article-header__headline {
    font-size: 24pt;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #666;
  }
}
