/*
Theme Name: Jute Journal
Theme URI: 
Author: Jute Journal
Description: Custom news theme for The Jute Journal
Version: 1.4
*/

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

body {
  font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", serif;
  background: #fff;
  color: #111;
  margin: 0;
  padding: 0;
}

/* =========================================
   Issue banner (dismissable marquee) — FULL CSS
   X is on the RIGHT, after the text
   Mobile speed is faster than desktop
   ========================================= */

.issue-banner {
  background: #fff;
  color: #111;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
}

.issue-banner--in-header {
  position: relative;
}

.issue-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.55rem 2rem;
  overflow: hidden;

  /* one row: text area then X on the right */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* text area should take remaining width and hide overflow */
.issue-banner__track {
  flex: 1;
  min-width: 0;

  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  will-change: transform;

  /* Desktop/default speed */
  animation: issueMarquee 30s linear infinite;
}

.issue-banner__text {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Close button lives AFTER the text, on the far right */
.issue-banner__close {
  flex: 0 0 auto;
  margin-left: auto; /* pushes it fully to the right */

  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 22px;
  line-height: 32px;
  padding: 0;
  opacity: 0.7;
}

.issue-banner__close:hover,
.issue-banner__close:focus {
  opacity: 1;
}

.issue-banner__close:focus {
  outline: 2px solid #111;
  outline-offset: 2px;
}

@keyframes issueMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .issue-banner__inner { overflow: visible; }

  .issue-banner__track {
    animation: none;
    display: block;
    white-space: normal;
  }

  .issue-banner__text[aria-hidden="true"] { display: none; }

  .issue-banner__text {
    display: block;
    letter-spacing: normal;
  }
}

@media screen and (max-width: 767px) {
  .issue-banner__inner {
    padding: 0.55rem 1rem;
    gap: 0.5rem;
  }

  /* Mobile speed (faster) */
  .issue-banner__track {
    animation-duration: 14s;
  }
}

/* Rest of header */

.site-header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.25rem 2rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.header-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  position: relative;
}

.header-logo a { text-decoration: none; color: #111; }

.header-logo-img { max-height: 200px; width: auto; }

.header-logo-text {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
}

.header-logo-img + .header-logo-text { display: none; }

/* ── Desktop nav — ALWAYS visible unless overridden by mobile query ── */
.desktop-nav { border-top: 1px solid #e0e0e0; }

.desktop-nav .nav-link {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #333;
  padding: 0.6rem 0.9rem;
  transition: color 0.15s ease;
  display: inline-block;
  text-decoration: none;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active-cat {
  color: #111;
  border-bottom: 2px solid #111;
}

/* Category-specific colors (desktop only) */
@media screen and (min-width: 768px) {
  /* University */
  .nav-link[href*="/category/university/"],
  .nav-link[href*="/university/"] {
    color: #000;
  }
  
  .nav-link[href*="/category/university/"]:hover,
  .nav-link[href*="/category/university/"].active-cat,
  .nav-link[href*="/university/"]:hover,
  .nav-link[href*="/university/"].active-cat {
    color: #000;
    border-bottom-color: #000;
  }
  
  /* Local */
  .nav-link[href*="/category/local/"],
  .nav-link[href*="/local/"] {
    color: #000;
  }
  
  .nav-link[href*="/category/local/"]:hover,
  .nav-link[href*="/category/local/"].active-cat,
  .nav-link[href*="/local/"]:hover,
  .nav-link[href*="/local/"].active-cat {
    color: #000;
    border-bottom-color: #000;
  }
  
  /* Commentary */
  .nav-link[href*="/category/commentary/"],
  .nav-link[href*="/commentary/"] {
    color: #000;
  }
  
  .nav-link[href*="/category/commentary/"]:hover,
  .nav-link[href*="/category/commentary/"].active-cat,
  .nav-link[href*="/commentary/"]:hover,
  .nav-link[href*="/commentary/"].active-cat {
    color: #000;
    border-bottom-color: #000;
  }
}

/* ── Burger — hidden on desktop ── */
.burger-btn {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer — hidden on desktop ── */
.mobile-nav {
  display: none !important;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid #e0e0e0;
}

.mobile-nav-link {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111;
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}

.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { background: #f6f6f6; }
.mobile-nav-link.active-cat { background: #f0f0f0; }

/* ── Category heading ── */
.category-heading {
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0.5rem;
  border-bottom: 3px solid #111;
}

.category-heading h1 {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.category-heading .post-count {
  font-size: 0.78rem;
  color: #888;
  margin-top: 4px;
}

/* Old simple footer styles removed — see new 5-column footer styles below. */

/* ════════════════════════════════════
   LAYOUT / CONTAINER
════════════════════════════════════ */
.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

/* ═════════════════════════════════════
   CARDS — SHARED
════════════════════════════════════ */
.news-card {
  background: #fff;
  border: none;
  border-radius: 0;
  font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", serif;
}

.news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.news-card-link:hover .card-title { text-decoration: underline; }

.card-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.3rem;
}

.card-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-bottom: 0.4rem;
}

.card-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.5rem;
}

.card-meta { font-size: 0.7rem; color: #999; }
.card-meta .author { font-weight: 600; color: #555; }

/* ── Hero card ── */
.hero-card { border: none; border-radius: 0; }
.hero-card .card-img-top { border-radius: 0; object-fit: cover; width: 100%; }
.hero-card .card-body { padding: 0.75rem 0 0; }
.hero-card .card-title { font-size: 1.4rem; }
.hero-card .card-text { font-size: 0.875rem; }

/* ── Side cards ── */
.side-card {
  display: block;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}

.side-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.side-card-img-top {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.5rem;
}

.side-card-body { padding: 0; }
.side-card .card-title { font-size: 0.85rem; }

/* ── Text-only cards ── */
.text-card { padding-bottom: 0.9rem; }
.text-card .card-title { font-size: 0.95rem; }
.text-card .card-text { font-size: 0.78rem; }

/* ── Dividers ── */
.col-divider-right { border-right: 1px solid #ddd; }
.top-section { background: #fff; }
.bottom-section { background: #fff; }

/* ── No post placeholder ── */
.no-post { color: #bbb; font-style: italic; font-size: 0.85rem; padding: 1rem 0; }

/* ════════════════════════════════════
   CATEGORY LIST LAYOUT
════════════════════════════════════ */
.cat-grid {
  background: #fff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 2rem;
}

.cat-post-list {
  display: flex;
  flex-direction: column;
}

.cat-post-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e8e8e8;
  text-decoration: none;
  color: inherit;
}

.cat-post-item:last-child { border-bottom: none; }
.cat-post-item:hover .card-title { text-decoration: underline; }

.cat-post-img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.cat-post-body { flex: 1; min-width: 0; }
.cat-post-body .card-title { font-size: 1.05rem; margin-bottom: 0.4rem; }
.cat-post-body .card-text { font-size: 0.82rem; margin-bottom: 0.4rem; }

/* ════════════════════════════════════
   PRINT EDITIONS
════════════════════════════════════ */
.editions-section {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.editions-header { margin-bottom: 1.25rem; }

.editions-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.2rem;
}

.editions-subtitle { font-size: 0.78rem; color: #888; margin: 0; }

.editions-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.latest-editions-col {
  width: 220px;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid #ddd;
}

.older-editions-col {
  flex: 1;
  padding-left: 20px;
  min-width: 0;
}

.latest-editions-label,
.older-editions-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 0.85rem;
  display: block;
}

.older-editions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.edition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 100px;
  transition: transform 0.15s ease;
}

.edition-card:hover { transform: translateY(-3px); }

.edition-cover {
  position: relative;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #fafafa;
  padding: 8px;
  margin-bottom: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.edition-card:hover .edition-cover {
  border-color: #aaa;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.edition-icon { width: 100%; height: auto; display: block; }

.edition-open-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,0.82);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  text-align: center;
  padding: 4px;
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.edition-card:hover .edition-open-label { opacity: 1; }
.edition-info { text-align: center; width: 100%; }
.edition-issue { font-size: 0.8rem; font-weight: 700; color: #111; line-height: 1.2; }
.edition-date { font-size: 0.7rem; color: #888; }

.latest-edition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease;
}

.latest-edition-card:hover { transform: translateY(-3px); }

.latest-edition-cover {
  position: relative;
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #fafafa;
  padding: 12px;
  margin-bottom: 0.6rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.latest-edition-cover svg { width: 100%; height: auto; display: block; }

.latest-edition-card:hover .latest-edition-cover {
  border-color: #aaa;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.latest-edition-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 7px;
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.latest-edition-card:hover .latest-edition-overlay { opacity: 1; }
.latest-edition-info { text-align: center; width: 100%; }

/* ════════════════════════════════════
   NEWSLETTER
════════════════════════════════════ */
.newsletter-section {
  background: #111;
  padding: 3rem 2rem;
  margin: 0;
}

.newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text { flex: 1; min-width: 200px; }

.newsletter-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  margin-top: 0;
}

.newsletter-body { font-size: 0.85rem; color: #aaa; margin: 0; line-height: 1.6; }

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.newsletter-input {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border: 1px solid #444;
  border-radius: 2px;
  background: #1e1e1e;
  color: #fff;
  width: 240px;
  outline: none;
  transition: border-color 0.15s;
}

.newsletter-input::placeholder { color: #666; }
.newsletter-input:focus { border-color: #888; }

.newsletter-btn {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.newsletter-btn:hover { background: #e0e0e0; }

/* ════════════════════════════════════
   ARTICLE PAGE
════════════════════════════════════ */
.article-page { background: #f6f6f6; padding: 2rem 1rem 4rem; }

.article-container {
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem 2.5rem 3rem;
}

.article-category {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.6rem;
  display: block;
}

.article-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.article-meta {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.article-meta .author { font-weight: 600; color: #444; }
.article-meta .sep { color: #ccc; }

.article-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  margin-bottom: 2rem;
}

.article-body {
  font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #222;
}

.article-body h2 {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.3rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.6rem;
  color: #111; border-bottom: 1px solid #eee; padding-bottom: 0.3rem;
}

.article-body h3 {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1rem; font-weight: 700; margin-top: 1.5rem; margin-bottom: 0.5rem;
}
.article-body p { margin-bottom: 1.2rem; }

.article-body blockquote {
  border-left: 3px solid #ccc; margin: 1.5rem 0;
  padding: 0.5rem 1.25rem; color: #555; font-style: italic;
}

.article-body img { width: 100%; height: auto; display: block; margin: 1.5rem 0 0.4rem; }
.article-body em { font-style: italic; }
.article-body a { color: #111; text-decoration: underline; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: 0.4rem; }
.article-body hr { border: none; border-top: 1px solid #e0e0e0; margin: 2rem 0; }
.article-body strong { font-weight: 700; color: #111; }

/* ════════════════════════════════════
   MOBILE FEED — hidden on desktop
════════════════════════════════════ */
.mobile-feed { display: none; background: #fff; padding-bottom: 2rem; }
.mobile-divider { border: none; border-top: 1px solid #e0e0e0; margin: 0 1rem; }

.mobile-hero { display: block; text-decoration: none; color: inherit; }
.mobile-hero img { width: 100%; height: 240px; object-fit: cover; display: block; }
.mobile-hero-body { padding: 0.9rem 1rem 1rem; }

.mobile-hero-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.4rem; font-weight: 700; line-height: 1.25; color: #111;
  margin: 0.3rem 0 0.5rem;
}

.mobile-photo-list { padding: 0.75rem 0; }

.mobile-photo-card {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.75rem 1rem; text-decoration: none; color: inherit;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-photo-card:last-child { border-bottom: none; }
.mobile-photo-card:hover { background: #fafafa; }

.mobile-photo-card img { width: 90px; height: 70px; object-fit: cover; flex-shrink: 0; display: block; }
.mobile-photo-card-body { flex: 1; min-width: 0; }

.mobile-card-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.88rem; font-weight: 700; line-height: 1.3; color: #111;
  margin: 0.2rem 0 0.35rem;
}

.mobile-text-list { padding: 0.75rem 0; }

.mobile-text-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem; padding: 0.85rem 1rem;
  text-decoration: none; color: inherit; border-bottom: 1px solid #f0f0f0;
}

.mobile-text-card:last-child { border-bottom: none; }
.mobile-text-card:hover { background: #fafafa; }
.mobile-text-card .mobile-card-title { margin-bottom: 0.25rem; }
.mobile-text-arrow { font-size: 1.4rem; color: #ccc; flex-shrink: 0; line-height: 1; }

.mobile-editions-list { padding: 0 0 0.5rem; }

.mobile-edition-card {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; text-decoration: none; color: inherit;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-edition-card:last-child { border-bottom: none; }
.mobile-edition-card:hover { background: #fafafa; }
.mobile-edition-icon { width: 36px; height: auto; flex-shrink: 0; }
.mobile-edition-info { flex: 1; }

/* ════════════════════════════════════
   MOBILE BREAKPOINT
════════════════════════════════════ */
@media screen and (max-width: 767px) {

  /* Switch layouts */
  .container-fluid { display: none !important; }
  .mobile-feed { display: block !important; }

  /* Switch nav */
  .burger-btn { display: flex !important; flex-direction: column; }
  .mobile-nav { display: flex !important; }
  .desktop-nav { display: none !important; }

  /* When open */
  .mobile-nav.open { max-height: 500px; }

  /* Header adjustments */
  .site-header { padding: 0.75rem 0 0; max-width: 100%; }
  
  .header-top-row {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 1rem;
    margin-bottom: 0.75rem;
    justify-content: space-between;
  }
  
  .header-logo {
    flex: 1;
    text-align: center;
  }
  
  .burger-btn {
    display: flex !important;
    position: static;
    transform: none;
    margin-top: 0;
    flex-shrink: 0;
  }
  
  .header-logo-text { font-size: 1.3rem; }
  .header-logo-img { max-height: 40px; }

  /* Editions stack */
  .editions-layout { flex-direction: column !important; gap: 1.5rem; }
  .older-editions-col { padding-left: 0; border-top: 1px solid #e0e0e0; padding-top: 1rem; }
  .latest-editions-col { width: 100% !important; padding-right: 0; border-right: none; }
  .latest-edition-card { flex-direction: row; align-items: center; gap: 1rem; }
  .latest-edition-cover { width: 90px !important; flex-shrink: 0; margin-bottom: 0; }
  .latest-edition-info { text-align: left; }

  /* Newsletter stack */
  .newsletter-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .newsletter-input { width: 100%; }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-btn { width: 100%; text-align: center; padding: 0.75rem; }

  /* Category list */
  .cat-post-img { width: 100px; height: 75px; }

  /* Article */
  .article-container { padding: 1.25rem 1rem 2rem; }
  .article-title { font-size: 1.5rem; }
  .article-hero-img { height: 220px; }
}

/* ════════════════════════════════════
   SUPPRESS WORDPRESS INJECTED UI
   Hides any nav/header WordPress or
   plugins inject above our own header
════════════════════════════════════ */

/* Hide WP admin bar body padding */
html { margin-top: 0 !important; }
body.admin-bar { margin-top: 0 !important; }
body.admin-bar .site-header { top: 0 !important; }

/* Hide any WordPress-injected navigation menus outside our header */
body > ul.nav,
body > nav:not(.desktop-nav):not(.mobile-nav),
body > div > ul.nav,
.wp-nav-menu-widget-form,
#wp-toolbar + nav,
#wpadminbar + nav { display: none !important; }

/* Ensure our header sits flush at the top */
.site-header {
  position: relative;
  z-index: 100;
}

/* ════════════════════════════════════
   STATIC PAGES (About Us, Print Issues)
════════════════════════════════════ */
.static-page { background: #f6f6f6; }

/* Hero banner */
.static-hero {
  background: #111;
  padding: 4rem 2rem 3.5rem;
  text-align: center;
}

.static-hero-inner { max-width: 700px; margin: 0 auto; }

.static-hero-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}

.static-hero-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.static-hero-sub {
  font-size: 1rem;
  color: #aaa;
  line-height: 1.7;
  margin: 0;
}

/* Sections */
.static-section { padding: 3.5rem 2rem; }
.static-section--white { background: #fff; }
.static-section--grey { background: #f6f6f6; }
.static-section--dark { background: #111; }

.static-container {
  max-width: 1100px;
  margin: 0 auto;
}

.static-two-col {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.static-col { flex: 1; min-width: 0; }
.static-col--center { display: flex; align-items: center; justify-content: center; }

/* Headings */
.static-h2 {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1.25rem;
  line-height:  1.2;
}

.static-h2--center { text-align: center; }
.static-h2--light { color: #fff; }

.static-h3 {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.75rem;
}

/* Body text */
.static-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

.static-intro-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
  max-width: 740px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.static-body--light { color: #ccc !important; }
.text-white { color: #fff !important; }

/* Lists */
.static-list--light {
  color: #bbb;
  font-size: 0.9rem;
  line-height: 1.8;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

/* Motto box */
.static-motto-box {
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #111;
  padding: 2rem;
  text-align: center;
  max-width: 300px;
}

.static-motto {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.static-motto-sub {
  font-size: 0.72rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Quote block */
.static-quote-block {
  text-align: center;
  padding: 2rem;
}

.static-quote-block blockquote {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  font-style: italic;
  margin: 0 0 1rem;
  border: none;
  padding: 0;
}

.static-quote-block cite {
  font-size: 0.75rem;
  color: #888;
  letter-spacing: 0.06em;
}

/* Three pillars */
.static-three-col {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.static-pillar {
  flex: 1;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid #111;
  padding: 1.5rem;
}

.static-pillar-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }

.static-pillar-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
}

.static-pillar p { font-size: 0.85rem !important; color: #555 !important; }

/* Roles grid */
.static-roles-grid {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
}

.static-role-card {
  flex: 1;
  background: #f6f6f6;
  border:  1px solid #e0e0e0;
  padding: 1.5rem;
}

.static-role-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.6rem;
}

.static-role-card p { font-size: 0.85rem !important; color: #555 !important; }

.static-role-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
}

.static-role-link:hover { opacity: 0.6; }

/* Contact bar */
.static-contact-bar {
  text-align: center;
  padding: 1.5rem;
  background: #f6f6f6;
  border: 1px solid #e0e0e0;
  margin-top: 1.5rem;
}

.static-contact-bar p { font-size: 0.9rem !important; color: #555 !important; margin: 0 !important; }
.static-contact-bar a { color: #111; font-weight: 700; }

/* Dundee context box */
.static-dundee-context {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #111;
  padding: 1.75rem;
}

.static-dundee-context p { font-size: 0.88rem !important; }

/* Locations grid */
.static-locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.static-location {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.5rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Print issues grid */
.print-issues-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}

.print-issue-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  width: 180px;
  position: relative;
  transition: transform 0.15s ease;
}

.print-issue-card:hover { transform: translateY(-4px); }

.print-issue-card--featured { width: 240px; }

.print-issue-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #111;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 1;
}

.print-issue-cover {
  position: relative;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 3px;
  background: #fafafa;
  padding: 14px;
  margin-bottom: 0.75rem;
  transition: box-shadow 0.15s, border-color 0.15s;
}

.print-issue-cover svg { width: 100%; height: auto; display: block; }

.print-issue-card:hover .print-issue-cover {
  border-color: #aaa;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.print-issue-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(17,17,17,0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 8px;
  border-radius: 0 0 2px 2px;
  opacity: 0;
  transition: opacity 0.15s;
}

.print-issue-card:hover .print-issue-overlay { opacity: 1; }

.print-issue-info { text-align: center; }
.print-issue-number { font-size: 0.95rem; font-weight: 700; color: #111; }
.print-issue-date { font-size: 0.78rem; color: #888; }

/* Advert sizes */
.advert-sizes-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.advert-size-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.advert-size-visual {
  border: 2px solid #ddd;
  background: #f0f0f0;
  width: 80px;
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.advert-size-visual::after {
  content: '';
  background: #5bc4e8;
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

.advert-size-visual--full::after { height: 100%; }
.advert-size-visual--half::after { height: 50%; }
.advert-size-visual--quarter::after { height: 25%; }
.advert-size-visual--eighth::after { height: 12%; }

.advert-size-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #555;
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.advert-size-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ── Static pages responsive ── */
@media screen and (max-width: 767px) {
  .static-hero-title { font-size: 1.8rem; }
  .static-two-col { flex-direction: column; gap: 2rem; }
  .static-three-col { flex-direction: column; gap: 1rem; }
  .static-roles-grid { flex-direction: column; }
  .static-section { padding: 2rem 1rem; }
  .advert-sizes-grid { gap: 1rem; }
  .advert-size-visual { width: 60px; height: 75px; }
}

/* =====================================================================
   ═══════ NEW STYLES FOR HOMEPAGE / SEARCH / FOOTER / ABOUT ═══════════
   ===================================================================== */

/* Uni blue token */
:root {
  --uni-blue: #4365e2;
  --uni-blue-darker: #2f4cc4;
}

/* ════════════════════════════════════
   DESKTOP NAV — DROPDOWN + SEARCH
════════════════════════════════════ */
.desktop-nav .nav { gap: 0.1rem; }

/* About dropdown */
.desktop-nav .has-dropdown { position: relative; }

.desktop-nav .has-dropdown .dropdown-caret {
  font-size: 0.65rem;
  margin-left: 0.15rem;
  position: relative;
  top: -1px;
}

.desktop-nav .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--uni-blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 200;
}

.desktop-nav .has-dropdown:hover > .nav-dropdown,
.desktop-nav .has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.desktop-nav .nav-dropdown li { list-style: none; }

.desktop-nav .nav-dropdown a {
  display: block;
  padding: 0.6rem 1rem;
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.desktop-nav .nav-dropdown a:hover {
  background: #f6f6f6;
  color: var(--uni-blue);
}

/* Search icon + form */
.desktop-nav .nav-search {
  position: relative;
  margin-left: 0.5rem;
}

.desktop-nav .nav-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid transparent;
  color: #333;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  padding: 0;
}

.desktop-nav .nav-search-toggle:hover {
  background: #f6f6f6;
  color: var(--uni-blue);
  border-color: #e0e0e0;
}

.desktop-nav .nav-search-toggle[aria-expanded="true"] {
  background: var(--uni-blue);
  color: #fff;
  border-color: var(--uni-blue);
}

.desktop-nav .nav-search-form {
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--uni-blue);
  padding: 0.4rem 0.4rem 0.4rem 0.75rem;
  width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 200;
}

.desktop-nav .nav-search-form.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.desktop-nav .nav-search-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.85rem;
  color: #111;
  padding: 0.3rem 0.4rem;
  min-width: 0;
}

.desktop-nav .nav-search-form input[type="search"]::placeholder { color: #999; }

.desktop-nav .nav-search-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--uni-blue);
  border: none;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
  padding: 0;
}

.desktop-nav .nav-search-form button[type="submit"]:hover {
  background: var(--uni-blue-darker);
}

/* Mobile search */
.mobile-search-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  background: #fafafa;
}

.mobile-search-form input[type="search"] {
  flex: 1;
  border: 1px solid #ddd;
  background: #fff;
  padding: 0.55rem 0.75rem;
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.9rem;
  color: #111;
  border-radius: 2px;
  outline: none;
  min-width: 0;
}

.mobile-search-form input[type="search"]:focus {
  border-color: var(--uni-blue);
}

.mobile-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--uni-blue);
  color: #fff;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 2px;
}

.mobile-nav-sublink {
  padding-left: 2.5rem !important;
  font-size: 0.82rem !important;
  color: #555 !important;
  background: #fafafa;
}

/* Allow more height on mobile drawer for sub-pages + search */
@media screen and (max-width: 767px) {
  .mobile-nav.open { max-height: 1200px !important; }
}


/* ════════════════════════════════════
   HOMEPAGE — NEWSPAPER LAYOUT
   ════════════════════════════════════ */

/* Section rule — newspaper-style heading band with a thick top + thin bottom rule */
.section-rule {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 3px solid #111;
  border-bottom: 1px solid #ccc;
  padding: 0.6rem 0 0.55rem;
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
}

.section-rule--tight { margin-bottom: 1.1rem; }

.section-rule__title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, -apple-system,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  margin: 0;
}

.section-rule__title a {
  color: inherit;
  text-decoration: none;
}
.section-rule__title a:hover { color: var(--uni-blue); }

.section-rule__date {
  font-family: Garamond, "Adobe Garamond Pro", serif;
  font-size: 0.85rem;
  font-style: italic;
  color: #777;
}

.section-rule__more {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
}
.section-rule__more:hover { color: var(--uni-blue); border-bottom-color: var(--uni-blue); }


/* ── 1. LATEST NEWS ── classic hero + 3 side columns ─────────── */
.latest-news {
  background: #fff;
  padding: 1.5rem 2rem 2rem;
}

.latest-news__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.latest-news__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 2fr);
  gap: 1.5rem;
}

.latest-news__hero-col { min-width: 0; }

.latest-news__hero {
  display: block;
  text-decoration: none;
  color: inherit;
}

.latest-news__hero-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.85rem;
}

.latest-news__hero-body { padding: 0; }

.latest-news__hero .card-category {
  margin-bottom: 0.4rem;
}

.latest-news__hero-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.18;
  color: #111;
  margin: 0.25rem 0 0.55rem;
}
.latest-news__hero:hover .latest-news__hero-title { text-decoration: underline; }

.latest-news__hero-excerpt {
  font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 0 0.7rem;
}

/* Side columns: 3 columns × 2 stories, hairline rules between */
.latest-news__sides {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.latest-news__side-col {
  padding: 0 1rem;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
}

.latest-news__side-col:first-child { padding-left: 0; }
.latest-news__side-col:last-child { padding-right: 0; border-right: none; }

.latest-news__side-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 0 0.95rem;
  margin-bottom: 0.95rem;
}
.latest-news__side-card:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.latest-news__side-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.6rem;
}

.latest-news__side-body .card-category { margin-bottom: 0.3rem; }

.latest-news__side-title {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin: 0 0 0.4rem;
}
.latest-news__side-card:hover .latest-news__side-title { text-decoration: underline; }


/* ── 2. TOP POSTS — full blue strip ──────────────────────────── */
.top-strip {
  background: var(--uni-blue);
  color: #fff;
  padding: 2.25rem 2rem 2.5rem;
}

.top-strip__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.top-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-top: 3px solid #fff;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding: 0.6rem 0 0.55rem;
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
}

.top-strip__title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.top-strip__meta {
  font-family: Garamond, "Adobe Garamond Pro", serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.top-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: 2.25rem;
  align-items: start;
}

/* Ranked list (left) */
.top-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.top-strip__list-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.top-strip__list-item:first-child { border-top: 1px solid rgba(255,255,255,0.2); }

.top-strip__list-link {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
}

.top-strip__list-link:hover .top-strip__list-headline { text-decoration: underline; }

.top-strip__rank {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
  width: 2.2rem;
  text-align: left;
}

.top-strip__list-body { flex: 1; min-width: 0; }

.top-strip__list-cat {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
}

.top-strip__list-headline {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

/* Big featured (right) */
.top-strip__big {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
}
.top-strip__big:hover .top-strip__big-title { text-decoration: underline; }

.top-strip__big-imgwrap {
  position: relative;
  background: rgba(0,0,0,0.2);
}

.top-strip__big-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.top-strip__big-rank {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: var(--uni-blue);
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
}

.top-strip__big-body {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.top-strip__big-cat {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.top-strip__big-title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
  margin: 0;
}

.top-strip__big-excerpt {
  font-family: Garamond, "Adobe Garamond Pro", serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin: 0.15rem 0 0;
}

.top-strip__big-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.2rem;
}
.top-strip__big-meta .author { color: #fff; font-weight: 600; }

.top-strip__empty {
  font-family: Garamond, serif;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 1rem 0;
}


/* ── 3-5. TOPIC ROW (Uni|Local, Comm|Features, Arts) ─────────── */
.topic-row {
  background: #fff;
  padding: 2rem 2rem;
  border-top: 1px solid #e8e8e8;
}

.topic-row__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 2rem;
  align-items: stretch;
}

.topic-row__inner--full {
  grid-template-columns: 1fr;
}

.topic-row__divider {
  background: #d9d9d9;
  width: 1px;
  height: 100%;
}

/* Topic block — heading + 1 lead with image + 3 text headlines */
.topic-block { min-width: 0; }

.topic-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 2px solid #111;
  border-bottom: 1px solid #d9d9d9;
  padding: 0.5rem 0 0.45rem;
  margin: 0 0 1.1rem;
  flex-wrap: wrap;
}

.topic-block__title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
  margin: 0;
}

.topic-block__title a { color: inherit; text-decoration: none; }
.topic-block__title a:hover { color: var(--uni-blue); }

.topic-block__more {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
}
.topic-block__more:hover { color: var(--uni-blue); border-bottom-color: var(--uni-blue); }

.topic-block__lead {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.topic-block__lead-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.7rem;
}

.topic-block__lead-body .card-category { margin-bottom: 0.3rem; }

.topic-block__lead-title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
  margin: 0.25rem 0 0.5rem;
}
.topic-block__lead:hover .topic-block__lead-title { text-decoration: underline; }

.topic-block__lead-excerpt {
  font-family: Garamond, "Adobe Garamond Pro", serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
  margin: 0 0 0.55rem;
}

/* Text headlines beneath */
.topic-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.topic-block__list li {
  border-bottom: 1px solid #ececec;
}
.topic-block__list li:last-child { border-bottom: none; }

.topic-block__list-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.7rem 0;
}
.topic-block__list-item:hover .topic-block__list-title { text-decoration: underline; }

.topic-block__list-title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.32;
  color: #111;
  margin: 0 0 0.3rem;
}

/* Full-width Arts variant: lead image left, list right */
.topic-block--full {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.topic-block--full .topic-block__head {
  grid-column: 1 / -1;
}

.topic-block--full .topic-block__lead {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.topic-block--full .topic-block__lead-img {
  height: 320px;
}

.topic-block--full .topic-block__lead-title {
  font-size: 1.5rem;
}


/* ── 6. PRINT EDITIONS — compact strip ────────────────────────── */
.print-strip {
  background: #f6f6f6;
  padding: 2rem 2rem 2.25rem;
  border-top: 1px solid #e8e8e8;
}

.print-strip__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.print-strip__layout {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: 2rem;
  align-items: flex-start;
}

/* Featured (latest) */
.print-strip__featured {
  display: block;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid #d9d9d9;
  padding-right: 2rem;
}

.print-strip__featured-label,
.print-strip__older-label {
  display: block;
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 0.7rem;
}

.print-strip__featured-cover {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.55rem;
  margin-bottom: 0.7rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.print-strip__featured-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.print-strip__featured:hover .print-strip__featured-cover {
  border-color: #999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.print-strip__featured-info { text-align: left; }

.print-strip__featured-issue {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
}

.print-strip__featured-date {
  font-family: Garamond, serif;
  font-size: 0.8rem;
  font-style: italic;
  color: #777;
  margin-top: 0.15rem;
}

/* Older issues (right) */
.print-strip__older {
  min-width: 0;
}

.print-strip__older-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.print-strip__older-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  width: 110px;
}

.print-strip__older-cover {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.4rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.print-strip__older-cover img {
  width: 100%;
  height: auto;
  display: block;
}

.print-strip__older-card:hover .print-strip__older-cover {
  border-color: #999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.print-strip__older-issue {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
}

.print-strip__older-date {
  font-family: Garamond, serif;
  font-size: 0.72rem;
  font-style: italic;
  color: #777;
  margin-top: 0.1rem;
}


/* ── 7. MORE HEADLINES (text only, 4-up) ──────────────────────── */
.more-headlines {
  background: #fff;
  padding: 2rem 2rem 2.5rem;
  border-top: 1px solid #e8e8e8;
}

.more-headlines__inner {
  max-width: 1400px;
  margin: 0 auto;
}

.more-headlines__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.more-headlines__col {
  padding: 0 1.25rem;
  border-right: 1px solid #e0e0e0;
}

.more-headlines__col:first-child { padding-left: 0; }
.more-headlines__col:last-child { padding-right: 0; border-right: none; }

.more-headlines__item {
  display: block;
  text-decoration: none;
  color: inherit;
}

.more-headlines__title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin: 0.3rem 0 0.55rem;
}

.more-headlines__item:hover .more-headlines__title { text-decoration: underline; }

.more-headlines__excerpt {
  font-family: Garamond, "Adobe Garamond Pro", serif;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #444;
  margin: 0 0 0.55rem;
}


/* ════════════════════════════════════
/* ════════════════════════════════════
   CATEGORY: MORE STORIES (formerly bug)
════════════════════════════════════ */
.more-stories__heading {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1rem;
  border-bottom: 2px solid var(--uni-blue);
  padding-bottom: 0.5rem;
  color: #111;
}

.more-stories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.more-stories__item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.more-stories__item:hover .card-title { text-decoration: underline; }

.more-stories__item .card-title {
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 0.25rem 0 0.4rem;
}

.more-stories__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}

.more-stories__page-link {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--uni-blue);
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  transition: background 0.15s;
}

.more-stories__page-link:hover { background: var(--uni-blue-darker); }

.more-stories__page-info {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.8rem;
  color: #666;
}


/* ════════════════════════════════════
   FOOTER — 5-COLUMN REDESIGN, UNI BLUE
════════════════════════════════════ */
.site-footer {
  background: var(--uni-blue);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  border-top: 4px solid var(--uni-blue-darker);
}

.site-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 2.25rem;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.1fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.site-footer__col { min-width: 0; }

.site-footer__col--brand .site-footer__logo-img {
  max-height: 80px;
  width: auto;
  display: block;
  margin-bottom: 0.85rem;
}

.site-footer__logo-text {
  display: inline-block;
  color: #fff;
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.site-footer__tagline {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  font-size: 0.85rem;
}

.site-footer__heading {
  font-family: Avenir, "Avenir Next", "Avenir Next LT Pro", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.95rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__list a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 0.86rem;
  font-family: Avenir, system-ui, sans-serif;
  transition: color 0.15s;
  display: inline-block;
}

.site-footer__list a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 3px;
}

/* Affiliations column — logos sit directly on blue, no white pills */
.site-footer__col--affiliations .site-footer__logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.site-footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  padding: 0;
  border-radius: 0;
  transition: opacity 0.15s, transform 0.15s;
  width: auto;
  height: auto;
  box-sizing: border-box;
}

.site-footer__logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.85;
  box-shadow: none;
}

.site-footer__logo-link img {
  display: block;
  max-width: 170px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Footer bottom strip — slightly darker blue for separation */
.site-footer__bottom {
  background: var(--uni-blue-darker);
  padding: 1rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.site-footer__bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}

.site-footer__bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.site-footer__bottom-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__bottom-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }


/* ════════════════════════════════════
   ABOUT — SUBPAGE CARDS
════════════════════════════════════ */
.about-affiliations {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.about-affiliation-link {
  display: block;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
  max-width: 150px;
}

.about-affiliation-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  border-color: var(--uni-blue);
}

.about-affiliation-link img {
  display: block;
  max-width: 100%;
  height: auto;
  max-height: 45px;
  width: auto;
}

.about-subpages-grid { margin-top: 1.5rem; }

.about-subpage-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--uni-blue);
  padding: 1.5rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.about-subpage-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.about-subpage-card__cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--uni-blue);
}

.about-subpage-policies {
  text-align: center;
  margin-top: 2rem;
}

.about-subpage-policies__link {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--uni-blue);
  text-decoration: none;
  border-bottom: 1px solid var(--uni-blue);
  padding-bottom: 2px;
}

.about-subpage-policies__link:hover { opacity: 0.7; }


/* ════════════════════════════════════
   ABOUT SUBPAGES — PROSE / AWARDS / COVERAGE / POLICIES
════════════════════════════════════ */
.static-prose {
  max-width: 760px;
  margin: 0 auto;
  font-family: Garamond, "Adobe Garamond Pro", serif;
}

.static-prose p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 1.25rem;
}

.static-prose strong { color: #111; font-weight: 700; }
.static-prose em { color: #444; }

/* Awards list */
.awards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.award-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 3px solid #999;
  padding: 1.25rem 1.5rem;
}

.award-card--win {
  border-left-color: var(--uni-blue);
  background: #fafbff;
}

.award-card__year {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--uni-blue);
  margin-bottom: 0.4rem;
}

.award-card__title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.award-card__body {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Coverage list */
.coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e8e8e8;
}

.coverage-item {
  display: flex;
  gap: 2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #e8e8e8;
  align-items: baseline;
}

.coverage-item__date {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--uni-blue);
  flex: 0 0 150px;
}

.coverage-item__body { flex: 1; }

.coverage-item__title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.3;
}

/* Policies */
.policies-toc {
  background: #fafbff;
  border: 1px solid #d8e0fa;
  border-left: 4px solid var(--uni-blue);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}

.policies-toc__heading {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--uni-blue);
  margin: 0 0 0.85rem;
}

.policies-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2rem;
}

.policies-toc li {
  margin-bottom: 0.4rem;
  break-inside: avoid;
}

.policies-toc a {
  color: #111;
  text-decoration: none;
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.policies-toc a:hover {
  color: var(--uni-blue);
  border-bottom-color: var(--uni-blue);
}

.policy-block {
  border-top: 1px solid #e8e8e8;
  padding: 1.5rem 0;
}

.policy-block__title {
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.65rem;
  scroll-margin-top: 2rem;
}

.policy-block__placeholder {
  color: #999;
  font-style: italic;
  margin: 0;
}


/* ════════════════════════════════════
   RESPONSIVE — HOMEPAGE / FOOTER / ABOUT
════════════════════════════════════ */
@media screen and (max-width: 1024px) {
  /* Latest News: stack hero above sides */
  .latest-news__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .latest-news__hero-img { height: 320px; }

  /* Top posts: stack ranked list above big */
  .top-strip__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .top-strip__big-img { height: 280px; }

  /* Topic rows: stack each side */
  .topic-row__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .topic-row__divider { display: none; }
  .topic-block--full { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Print strip */
  .print-strip__layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .print-strip__featured { border-right: none; padding-right: 0; border-bottom: 1px solid #d9d9d9; padding-bottom: 1.25rem; max-width: 320px; }

  /* More stories grid (category page) */
  .more-stories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  /* Footer */
  .site-footer__inner { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .site-footer__col--affiliations { grid-column: 1 / -1; }
  .site-footer__col--affiliations .site-footer__logos { flex-direction: row; }
}

@media screen and (max-width: 767px) {
  /* Latest news */
  .latest-news { padding: 1.25rem 1rem 1.5rem; }
  .latest-news__hero-img { height: 220px; }
  .latest-news__hero-title { font-size: 1.5rem; }

  /* Side cols stack to single column with hairlines between */
  .latest-news__sides { grid-template-columns: 1fr; }
  .latest-news__side-col { padding: 0; border-right: none; border-bottom: 1px solid #e0e0e0; padding-bottom: 1rem; margin-bottom: 1rem; }
  .latest-news__side-col:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

  /* Top strip */
  .top-strip { padding: 1.5rem 1rem 2rem; }
  .top-strip__big-img { height: 200px; }
  .top-strip__big-title { font-size: 1.2rem; }
  .top-strip__rank { font-size: 1.5rem; width: 1.8rem; color: #fff; }
  .top-strip__list-headline { font-size: 0.92rem; }
  .top-strip__list-cat { color: rgba(255,255,255,0.95); }

  /* Topic rows */
  .topic-row { padding: 1.5rem 1rem; }
  .topic-block__title { font-size: 1rem; }
  .topic-block__lead-img { height: 200px; }
  .topic-block__lead-title { font-size: 1.1rem; }

  /* Print strip */
  .print-strip { padding: 1.5rem 1rem 1.75rem; }
  .print-strip__featured { max-width: 100%; }
  .print-strip__older-card { width: 90px; }

  /* More headlines stack to 2-up */
  .more-headlines { padding: 1.5rem 1rem 2rem; }
  .more-headlines__row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem 0; }
  .more-headlines__col { padding: 0 0.75rem; border-bottom: 1px solid #e8e8e8; padding-bottom: 1rem; }
  .more-headlines__col:nth-child(2n) { border-right: none; }
  .more-headlines__col:nth-child(odd):last-child { border-bottom: none; }
  .more-headlines__title { font-size: 0.95rem; }

  /* Section rules */
  .section-rule__title { font-size: 1.15rem; }
  .section-rule__date { display: none; }
  .top-strip__title { font-size: 1.15rem; }

  /* More stories on category pages */
  .more-stories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }

  /* Footer stack */
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    padding: 2rem 1.25rem 1.5rem;
  }
  .site-footer__col--brand { grid-column: 1 / -1; text-align: center; }
  .site-footer__col--brand .site-footer__logo-img { margin-left: auto; margin-right: auto; }
  .site-footer__col--affiliations { grid-column: 1 / -1; text-align: center; }
  .site-footer__col--affiliations .site-footer__heading { text-align: left; }
  .site-footer__col--affiliations .site-footer__logos {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.25rem;
    align-items: center;
  }
  .site-footer__col--affiliations .site-footer__logo-link img { max-width: 130px; max-height: 50px; }
  .site-footer__bottom { padding: 0.85rem 1.25rem; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; text-align: left; }

  /* About subpages */
  .awards-list { grid-template-columns: 1fr; }
  .coverage-item { flex-direction: column; gap: 0.35rem; }
  .coverage-item__date { flex: none; }
  .policies-toc ul { columns: 1; }

  /* Hide desktop dropdown completely on mobile - mobile nav already shows subpages */
  .desktop-nav .nav-dropdown { display: none !important; }
}

@media screen and (max-width: 480px) {
  .more-headlines__row { grid-template-columns: 1fr; }
  .more-headlines__col { border-right: none; }
  .more-stories-grid { grid-template-columns: 1fr 1fr; }
  .top-strip__big-img { height: 180px; }
}

/* Slight tweak: keep padding consistent at desktop sizes */
@media screen and (min-width: 1200px) {
  .latest-news__inner,
  .top-strip__inner,
  .topic-row__inner,
  .print-strip__inner,
  .more-headlines__inner,
  .site-footer__inner,
  .site-footer__bottom-inner,
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}


/* ──────────────────────────────────────────────────────────────────
   Meet the Team (About page)
   ────────────────────────────────────────────────────────────────── */

.team-subhead {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 1.25rem;
  letter-spacing: 0.01em;
  color: #1a1a1a;
}

.team-subhead:first-of-type {
  margin-top: 0.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.team-card {
  background: #fff;
  border-top: 2px solid #1a1a1a;
  border-bottom: 1px solid #d4d4d4;
  padding: 1.25rem 1rem 1.5rem;
  text-align: center;
}

.team-card__photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #ececec;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card__name {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: #1a1a1a;
}

.team-card__role {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4365e2;
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.team-card__bio {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
  margin: 0 0 0.75rem;
}

.team-card__contact {
  font-size: 0.85rem;
  color: #4365e2;
  text-decoration: none;
  word-break: break-word;
}

.team-card__contact:hover {
  text-decoration: underline;
}

/* Compact variant for Design / Social teams */
.team-card--compact {
  padding: 1rem 0.75rem 1.25rem;
}

.team-card--compact .team-card__photo {
  width: 96px;
  height: 96px;
  margin-bottom: 0.75rem;
}

.team-card--compact .team-card__name {
  font-size: 1.05rem;
}

.team-card--compact .team-card__bio {
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }
  .team-card__photo {
    width: 110px;
    height: 110px;
  }
}

/* Team cards without a photo — top padding takes the place of the photo block */
.team-card--no-photo {
  padding-top: 1.75rem;
}

.team-card--no-photo .team-card__name {
  margin-top: 0;
}

/* Centred grid variant — keeps cards at portrait size when there are only 2 */
.team-grid--centered {
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
}

/*
Theme Name: Jute Journal
Author: Jute Journal Team
Version: 1.6
Description: Modern news web magazine theme for The Jute Journal.
*/

/* ===== BASE & RESET ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Garamond, 'Adobe Garamond Pro', 'EB Garamond', serif;
  background: #fff;
  color: #111;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; vertical-align: middle; border: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: #4365e2; }

:root {
  --uni-blue: #4365e2;
  --uni-blue-darker: #2f4cc4;
  --border: #e0e0e0;
  --border-dark: #ccc;
  --gray-bg: #f6f6f6;
  --cat-gray: #555;
  --cat-blue: #4365e2;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0 0;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.header-top-row { display: flex; align-items: center; justify-content: center; margin-bottom: .7rem; }
.header-logo a { color: #111; text-decoration: none; }
.header-logo-img { max-height: 120px; width: auto; }
.header-logo-text {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111;
  line-height: 1.1;
}
.desktop-nav {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.desktop-nav .nav-link {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.89rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #222;
  padding: 0.8rem 1.3rem .86rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  outline: none;
  display: inline-block;
  transition: color .18s, border-color .18s;
}
.desktop-nav .nav-link:hover, .desktop-nav .nav-link.active-cat {
  color: #111;
  border-bottom: 2px solid var(--uni-blue);
}

/* BREAKPOINTS for header/nav */
@media (max-width: 800px) {
  .site-header { padding: .7rem 0 0; }
  .desktop-nav .nav-link { padding: .67rem 8px .69rem; }
}

/* ===== SECTION TITLES, RULES, & CONTAINERS ===== */
.section-rule, .hp-latest__bar, .hp-issue__bar {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  border-top: 3px solid #111;
  border-bottom: 1px solid var(--border-dark);
  padding: 0.6rem 0 0.51rem 0;
  margin: 2.2rem 0 1.5rem 0;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-rule__title, .hp-eyebrow {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  color: #111;
}
.hp-latest__date, .section-rule__date {
  font-family: Garamond, serif;
  font-style: italic;
  font-size: 0.91rem;
  color: #777;
}

/* ===== MAIN CONTAINER (CONTROLS LAYOUT) ===== */
.homepage-v3 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.2rem;
}

/* ===== HOMEPAGE HERO & SIDE CARDS ROW ===== */
.hp-latest__grid--floated {
  display: grid;
  grid-template-columns: minmax(0,2.7fr) minmax(0,1.3fr);
  gap: 2.6rem;
  align-items: start;
}
.hp-hero {
  display: flex; flex-direction: column; height: 100%;
}
.hp-hero__media {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #ececec;
}
.hp-hero__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-hero__body { padding-top: 0.82rem; }
.hp-hero__title {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 2.04rem;
  font-weight: 700;
  line-height: 1.14;
  margin: 0.19rem 0 0.47rem;
  color: #111;
}
.hp-hero__title a { color: inherit; text-decoration: none; }
.hp-hero__title a:hover { text-decoration: underline; }
.hp-hero__dek {
  font-family: Garamond, serif;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #232323;
  margin: 0 0 0.63rem 0;
}
.hp-kicker {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--uni-blue);
  margin-bottom: 0.35rem;
  display: inline-block;
}
.hp-meta {
  font-family: Garamond,serif;
  font-size: 0.82rem;
  color: #777;
  margin: 0.34rem 0 0;
}
.hp-meta__author { font-weight: 600; color: #333; }
.hp-meta__sep { margin: 0 0.28rem; }
.hp-meta__date { color: #666; font-style: italic; margin-left: 0.2rem; }

/* === 3 side cards row == */
.hp-side-row {
  display: flex;
  flex-direction: row;
  gap: 1.48rem;
  height: 100%;
}
.hp-side__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 0 0;
}
.hp-side__media {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ececec;
}
.hp-side__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hp-side__body { padding-top: 0.39rem; }
.hp-side__title {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 1.00rem;
  font-weight: 700;
  margin: 0.18rem 0 0.32rem 0;
  color: #111;
}
.hp-side__title a { color: inherit; text-decoration: none; }
.hp-side__title a:hover { text-decoration: underline; }
.hp-meta--small { font-size: 0.72rem; }

/* === 4-column row below hero/side cards === */
.hp-row.hp-row--4 {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 0;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid #d4d4d4;
}
.hp-row .hp-card {
  padding: 0 1.11rem;
  border-right: 1px solid #e0e0e0;
}
.hp-row .hp-card:first-child { padding-left: 0; }
.hp-row .hp-card:last-child { padding-right: 0; border-right: none; }
.hp-card__title {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  margin: 0.3rem 0 0.5rem;
  color: #111;
}
.hp-card__title a { color: inherit; text-decoration: none; }
.hp-card__title a:hover { text-decoration: underline; }
.hp-card__dek { font-family: Garamond, serif; font-size: 0.92rem; color: #444; margin: 0 0 0.5rem 0; }


/* ===== 'IN THIS ISSUE' - TRUE WIDE GRID, NON-CUT ===== */
.hp-issue__grid, .hp-issue__grid--wide {
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: block;
}
.hp-issue__sections {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.hp-section__head {
  border-top: 2px solid #111;
  border-bottom: 1px solid var(--border-dark);
  padding: 0.5rem 0 0.37rem 0;
  margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.hp-section__all {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.87rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
  transition: color .2s;
}
.hp-section__all:hover { color: var(--uni-blue); }
.hp-section__list, .hp-section__list--wide {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 0;
  margin-bottom: 0;
}
.hp-section__item {
  display: flex;
  flex-direction: column;
  padding: 0 1.15rem 1.4rem 1.15rem;
  border: none;
  min-width: 0;
  justify-content: flex-start;
  height: 100%;
}
.hp-section__item .hp-kicker {
  margin: 0 0 0.18rem 0;
  color: var(--uni-blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.095em;
}
.hp-section__title {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 1.0rem;
  font-weight: 700;
  margin: 0.18rem 0 0.16rem;
  color: #111;
}
.hp-section__title a { color: inherit; text-decoration: none; }
.hp-section__title a:hover { text-decoration: underline; }
.hp-meta--small { font-size: 0.73rem; color: #777; font-style: italic; }
.hp-section__readmore {
  margin-top: 0.5rem;
  font-size: 0.71rem;
  font-family: Avenir,system-ui,sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.105em;
  color: #111;
  display: inline-block;
  transition: color .2s;
}
.hp-section__readmore:hover { color: var(--uni-blue); }

/* ======= RESPONSIVE GRIDS ======= */
@media (max-width: 1400px) {
  .homepage-v3 { padding: 0 1rem; }
  .hp-section__list, .hp-section__list--wide { grid-template-columns: repeat(4,minmax(0,1fr)); }
}
@media (max-width: 1024px) {
  .hp-section__list, .hp-section__list--wide { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .hp-section__item { padding: 0 0.7rem 1.1rem 0.7rem; }
  .hp-latest__grid--floated { grid-template-columns: 1fr; gap: 1.5rem; }
  .hp-side-row { gap: 0.65rem; }
}
@media (max-width: 780px) {
  .hp-section__list, .hp-section__list--wide { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hp-row--4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 600px) {
  .homepage-v3 { padding: 0 0.3rem; }
  .hp-section__list, .hp-section__list--wide { grid-template-columns: 1fr; }
  .hp-section__item { padding: 0 0 1.1rem; }
  .hp-row--4 { grid-template-columns: 1fr; }
}

/* ===== /END HOMEPAGE CRITICAL ==== */

/* ==============================
   *** ALL OTHER SITE CSS BELOW ***
   (unchanged from your working theme)
   About, static, articles, coverage, cards, awards, newsletter, footer, team, etc.
   You can paste all your static/article/print etc CSS sections here—as in your current live stylesheet!
   ============================== */

/* ... retain all original blocks for:
   - .static-page, .static-hero, .static-section, .team-grid, .footer, .newsletter-section, etc.
   - .about, .awards-list, .coverage-list, .print-editons, .site-footer, .category-heading, etc.
   - Utility/print/advert sizes/contact/location box/roles (not shown here for brevity) ...
*/

/* Example: Keep the article page base unchanged */
.article-page { background: #f6f6f6; padding: 2rem 1rem 4rem; }
.article-container { max-width: 740px; margin: 0 auto; background: #fff; padding: 2rem 2.5rem 3rem; }
.article-title { ... }
.static-h2 { ... }
.team-card { ... }
.site-footer { ... }

/* (And so forth. Place all your original non-homepage code here.) */

.toptopbar {
  background: #111;
  margin: 3rem 0 2.5rem;
  padding: 2.2rem 0 2.3rem 0;
}
.toptopbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.toptopbar__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 2.1rem;
}
.toptopbar__title {
  font-family: 'EB Garamond', Garamond, serif;
  font-style: italic;
  font-size: 2.1rem;
  color: #fff;
  font-weight: 400;
  margin: 0;
}
.toptopbar__meta {
  color: #e7eaf2;
  letter-spacing: 0.09em;
  font-size: 1rem;
  font-family: Avenir, "Avenir Next", system-ui, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.toptopbar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.toptopbar__col {
  padding: 0 1.5rem;
  border-right: 1px solid rgba(107,123,198,0.13);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.toptopbar__col:last-child { border-right: none; }
.toptopbar__rank {
  font-family: 'EB Garamond', Garamond, serif;
  font-size: 2.12rem;
  color: #4365e2;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 0.18em;
}
.toptopbar__cat {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.81rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4365e2;
  margin-bottom: 0.15em;
}
.toptopbar__headline {
  font-family: Garamond, serif;
  font-size: 1.15rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.16em;
  word-break: break-word;
}
.toptopbar__excerpt {
  color: #b4bad8;
  font-size: 0.96rem;
  font-family: Garamond, serif;
  margin-bottom: 0.14em;
}
@media (max-width: 1000px) {
  .toptopbar__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .toptopbar__grid { grid-template-columns: 1fr; }
  .toptopbar__col { border-right:none; padding:0 0 1.5em 0; margin-bottom:2.1em;}
}

.printedbar {
  background: #4365e2;
  color: #fff;
  padding: 2.6rem 0 2.7rem 0;
  margin: 0 0 2.8rem 0;
}
.printedbar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.printedbar__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 1.91rem;
}
.printedbar__title {
  font-family: Avenir, system-ui, sans-serif;
  font-size: 1.16rem;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.09em;
  margin: 0;
}
.printedbar__link {
  color: #fff;
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.13s;
}
.printedbar__link:hover { color: #c5d0f1; }
.printedbar__grid {
  display: flex;
  gap: 2.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.printedbar__issue {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  background: rgba(70, 101, 226, 0.03);
  box-shadow: 0 3px 16px 0 rgba(0,0,0,0.06);
  border-radius: 7px;
  min-width: 130px;
  max-width: 200px;
}
.printedbar__issue--featured {
  box-shadow: 0 8px 36px 2px rgba(47, 60, 135, 0.11);
  max-width: 240px;
}
.printedbar__badge {
  position: absolute;
  top: -1.1em;
  left: 0.7em;
  background: #fff;
  color: #435be2;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  border-radius: 2px;
  padding: 3px 12px 2px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
  z-index: 2;
}
.printedbar__cover {
  width: 170px;
  min-height: 214px;
  background: #fafbff;
  padding: 1.12em 0 0.7em 0;
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0.45em;
}
.printedbar__cover img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 2px 9px rgba(0,0,0,0.04);
  border-radius: 3px;
}
.printedbar__meta {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.83rem;
  margin-top: 0.75em;
  color: #fff;
  text-align: left;
}
.printedbar__issue-name {
  font-size: 1.04rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.printedbar__issue-date {
  font-size: 0.78em;
  color: #dde6f8;
  margin-top: 0.1em;
}
.printedbar__issue-label {
  font-size: 0.7em;
  color: #aab3d4;
  text-transform: uppercase;
  margin-top: 0.18em;
}
@media (max-width: 900px) {
  .printedbar__grid { gap: 1.2rem; }
  .printedbar__cover { width: 110px; min-height: 130px; }
}
@media (max-width: 650px) {
  .printedbar__grid { flex-direction: column; align-items: stretch; }
  .printedbar__cover { width: 100%; min-height: 100px; }
}

.hp-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.12rem 1.4rem;
  height: 100%;
  min-width: 0;
}
.hp-side__card {
  display: flex;
  flex-direction: column;
  background: none;
  box-shadow: none;
  border: none;
  min-width: 0;
  min-height: 0;
}
.hp-side__media {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ececec;
}
.hp-side__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-side__body { padding-top: 0.4rem; }
.hp-side__title {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 0.99rem;
  font-weight: 700;
  margin: 0.18rem 0 0.28rem 0;
  color: #111;
}
.hp-side__title a { color: inherit; text-decoration: none; }
.hp-side__title a:hover { text-decoration: underline; }
.hp-meta--small { font-size: 0.7rem; }
@media (max-width:900px) {
  .hp-side { grid-template-columns: 1fr; grid-template-rows: auto; }
}

.topic-row {
  background: #fff;
  padding: 2.2rem 0 2.2rem 0;
  border-top: 1px solid #e8e8e8;
}
.topic-row__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
  align-items: start;
}
.topic-block {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.topic-block__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 2px solid #111;
  border-bottom: 1px solid #d9d9d9;
  padding: 0.45rem 0 0.3rem 0;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.topic-block__title {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  text-transform: capitalize;
}
.topic-block__more {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  transition: color .18s, border-bottom-color .18s;
  margin-left: 1.6rem;
}
.topic-block__more:hover { color: var(--uni-blue); border-bottom-color: var(--uni-blue); }
.topic-block__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
.topic-block__list-item {
  display: flex;
  flex-direction: column;
  background: none;
  border-radius: 0;
  padding: 0.33rem 0 0.7rem 0;
  border-bottom: 1px solid #ececec;
}
.topic-block__list-item:last-child { border-bottom: none; }
.topic-block__list-title {
  font-family: Avenir,system-ui,sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.07rem;
  text-decoration: none;
  display: block;
}
.topic-block__meta {
  font-size: 0.86rem;
  color: #444;
  margin-bottom: 0.41rem;
}
.topic-block__cat {
  font-size: 0.71rem;
  color: #4365e2;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 0.63rem;
  letter-spacing: .08em;
}
.topic-block__date {
  font-size: 0.84rem;
  color: #888;
}
.topic-block__readmore {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: #4365e2;
  font-weight: 700;
  letter-spacing: .08em;
  margin-top: .2rem;
  text-underline-offset: 1.5px;
}
.topic-block__readmore:hover { color: var(--uni-blue-darker); }

/* Arts & Culture full width */
.topic-row--full .topic-row__inner {
  grid-template-columns: 1fr;
}
.topic-block--full {
  /* optional: add style if you want different look for full width */
}
@media (max-width: 1000px) {
  .topic-row__inner { grid-template-columns: 1fr; gap: 2.1rem; }
}