/* Opinion Hunt — brand tokens ported verbatim from the design's src/index.css */

:root {
  --oh-primary: #C5A059;        /* Elegant Gold */
  --oh-primary-light: #E4CB98;  /* Lighter Soft Gold */
  --oh-secondary: #1B2421;      /* Very Dark Obsidian / Forest Black */
  --oh-accent: #E4CB98;         /* Lighter Gold Accent */
  --oh-dark: #2B2A27;           /* Soft Charcoal text */
  --oh-light: #FCFAF7;          /* Warm Pearl White background */
  --oh-muted: #F4EFEA;          /* Chalky Warm Alabaster */
  --oh-border: #E8E2D9;         /* Soft Sandstone Border */

  --oh-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --oh-serif: 'Playfair Display', Georgia, serif;
  --oh-mono: 'JetBrains Mono', monospace;
  --oh-logo: 'Pirata One', 'UnifrakturMaguntia', 'Cinzel Decorative', serif;

  /* Widened from the design's 1140px so the larger type isn't cramped
     in the four-column Fashion row. */
  --oh-max: 1240px;
}

/* ---------- shell ---------- */

.oh-page {
  background: var(--oh-light);
  color: var(--oh-dark);
  font-family: var(--oh-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Astra prints its own scroll-to-top on wp_footer, which still fires even
   though these templates never call get_footer(). The design supplies its
   own (.oh-top), so suppress Astra's rather than stack two buttons.
   Hidden via CSS because Astra binds the markup to a theme object instance
   that remove_action() can't reliably target. */
.oh-page #ast-scroll-top { display: none !important; }

.oh-wrap {
  width: 100%;
  max-width: var(--oh-max);
  margin: 0 auto;
  padding: 0 24px;
}

.oh-page img { max-width: 100%; display: block; }
.oh-page a { text-decoration: none; color: inherit; }

/* The design unifies article/section type to Playfair Display. */
.oh-section, .oh-section * { font-family: var(--oh-serif); }
/* The source design explicitly sets the newsletter widget to sans — only its
   eyebrow label and button stay mono. */
.oh-eyebrow, .oh-readmore,
.oh-search, .oh-search * { font-family: var(--oh-mono); }

.oh-newsletter, .oh-newsletter * { font-family: var(--oh-sans); }
.oh-newsletter .oh-eyebrow { font-family: var(--oh-mono); }

/* ---------- header ---------- */

.oh-header {
  border-bottom: 1px solid var(--oh-border);
  background: var(--oh-light);
  position: sticky;
  top: 0;
  z-index: 40;
}

.oh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: var(--oh-max);
  margin: 0 auto;
}

.oh-logo {
  font-family: var(--oh-logo);
  font-size: 38px;
  line-height: 1;
  color: var(--oh-secondary);
  letter-spacing: .5px;
  white-space: nowrap;
}

/* The nav sits inside its own pill-shaped track, per the design. */
.oh-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--oh-muted);
  border-radius: 999px;
  padding: 5px;
}

.oh-nav a {
  font-family: var(--oh-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 9px 17px;
  border-radius: 999px;
  color: var(--oh-dark);
  opacity: .82;
  transition: all .2s;
  white-space: nowrap;
}

.oh-nav a:hover { opacity: 1; background: rgba(255, 255, 255, .7); }

/* Active item is gold-filled with light text. */
.oh-nav a.is-active {
  background: var(--oh-primary);
  color: var(--oh-light);
  opacity: 1;
  font-weight: 600;
}

.oh-nav a.is-active:hover { background: var(--oh-primary); }

.oh-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--oh-muted);
  border: 1px solid var(--oh-border);
  border-radius: 999px;
  padding: 10px 18px;
  min-width: 250px;
}

.oh-search input {
  border: 0;
  background: transparent;
  outline: none;
  font-size: 13px;
  font-family: var(--oh-mono);
  color: var(--oh-dark);
  width: 100%;
}

.oh-search input::placeholder { color: rgba(43, 42, 39, .4); }
.oh-search svg { flex: 0 0 auto; opacity: .4; }

/* ---------- hero mosaic ---------- */

.oh-hero { padding: 28px 0 8px; }

.oh-hero-top {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 12px;
  margin-bottom: 12px;
}

.oh-hero-bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.oh-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--oh-muted);
}

.oh-tile-lg { height: 320px; }
.oh-tile-sm { height: 175px; }

.oh-tile .oh-media { position: absolute; inset: 0; }

.oh-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 36, 33, .88) 0%, rgba(27, 36, 33, .35) 45%, rgba(27, 36, 33, 0) 75%);
  z-index: 1;
}

/* Eyebrow and title share one positioned block and stay in normal flow
   inside it, so a title that wraps can never collide with the eyebrow. */
.oh-tile-text {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: block;
}

.oh-tile h3 {
  margin: 0;
  color: #fff;
  font-family: var(--oh-serif);
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 12px rgba(27, 36, 33, .5);

  /* Cap the wrap so a long title can't grow past the top of the tile. */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-tile-sm h3 { -webkit-line-clamp: 2; }

.oh-tile-lg h3 { font-size: 22px; }
.oh-tile-sm h3 { font-size: 15px; }

.oh-tile:hover .oh-media { transform: scale(1.04); }
.oh-tile .oh-media { transition: transform .5s ease; }

/* ---------- hero tile category label ---------- */

.oh-tile-cat {
  display: block;
  margin-bottom: 6px;
  font-family: var(--oh-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oh-primary-light);
  text-shadow: 0 1px 10px rgba(27, 36, 33, .6);
}

/* -------------------------------------------------------------------------
 * Category archive
 * ---------------------------------------------------------------------- */

.oh-filterbar {
  background: rgba(228, 203, 152, .35);
  border-bottom: 1px solid rgba(228, 203, 152, .6);
}

.oh-filterbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.oh-filterbar p {
  margin: 0;
  font-family: var(--oh-mono);
  font-size: 12px;
  color: var(--oh-secondary);
}

.oh-filterbar strong {
  color: var(--oh-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.oh-reset {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--oh-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--oh-secondary);
  opacity: .8;
  transition: all .2s;
  white-space: nowrap;
}

.oh-reset:hover { opacity: 1; color: var(--oh-primary); }

/* Archive heading uses a plain text link, not the pill button. */
.oh-section-head-archive {
  border-bottom: 1px solid var(--oh-border);
  padding-bottom: 20px;
  margin-bottom: 8px;
}

.oh-showall {
  font-family: var(--oh-mono);
  font-size: 12px;
  letter-spacing: .05em;
  color: var(--oh-dark);
  opacity: .65;
  white-space: nowrap;
  transition: all .2s;
}

.oh-showall:hover { opacity: 1; color: var(--oh-primary); }

.oh-arch-list { display: flex; flex-direction: column; }

.oh-arch-item {
  display: grid;
  grid-template-columns: 186px 1fr;
  gap: 34px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--oh-border);
}

.oh-arch-item:last-child { border-bottom: 0; }

.oh-arch-item .oh-thumb {
  height: 116px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--oh-muted);
}

.oh-arch-item .oh-thumb .oh-media { transition: transform .5s ease; }
.oh-arch-item:hover .oh-thumb .oh-media { transform: scale(1.05); }

.oh-arch-body { min-width: 0; }

/* Uppercase serif titles, no excerpt — per the design. */
.oh-arch-item h2 {
  margin: 0;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--oh-secondary);
  transition: color .2s;
}

.oh-arch-item:hover h2 { color: var(--oh-primary); }

.oh-empty {
  font-family: var(--oh-serif);
  font-size: 16px;
  color: rgba(43, 42, 39, .65);
  padding: 32px 0;
}

/* ---------- pagination ---------- */

.oh-pagination { margin-top: 36px; }
.oh-pagination ul { list-style: none; display: flex; gap: 8px; margin: 0; padding: 0; }

.oh-pagination a,
.oh-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--oh-border);
  border-radius: 999px;
  font-family: var(--oh-mono);
  font-size: 12px;
  color: var(--oh-dark);
  transition: all .2s;
}

.oh-pagination a:hover { border-color: var(--oh-primary); color: var(--oh-primary); }

.oh-pagination .current {
  background: var(--oh-secondary);
  border-color: var(--oh-secondary);
  color: var(--oh-light);
}

/* -------------------------------------------------------------------------
 * About page
 *
 * Deliberately not .oh-section — that rule forces Playfair on all children,
 * and the About body copy is set in Inter per the design.
 * ---------------------------------------------------------------------- */

.oh-about { padding: 64px 0 80px; }

.oh-about-hero {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}

.oh-about-hero h1 {
  margin: 0 0 18px;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 52px;
  line-height: 1.14;
  color: var(--oh-secondary);
  letter-spacing: -.015em;
}

/* "Manifesto" — gold italic. */
.oh-about-hero h1 em {
  color: var(--oh-primary);
  font-style: italic;
}

.oh-about-hero p {
  margin: 0;
  font-family: var(--oh-sans);
  font-size: 16px;
  line-height: 1.72;
  color: rgba(43, 42, 39, .75);
}

.oh-about-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 76px;
}

/* Heading with a rule filling the rest of the line. */
.oh-rule-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.oh-rule-head h2 {
  margin: 0;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--oh-secondary);
  white-space: nowrap;
}

.oh-rule {
  flex: 1 1 auto;
  height: 1px;
  background: var(--oh-border);
}

.oh-about-cols p,
.oh-about-like p {
  margin: 0;
  font-family: var(--oh-sans);
  font-size: 16px;
  line-height: 1.78;
  color: rgba(43, 42, 39, .75);
}

.oh-about-quote {
  margin: 76px 0;
  padding: 58px 0;
  border-top: 1px solid rgba(228, 203, 152, .45);
  border-bottom: 1px solid rgba(228, 203, 152, .45);
}

.oh-about-quote p {
  margin: 0;
  text-align: center;
  font-family: var(--oh-serif);
  font-weight: 500;
  font-size: 50px;
  line-height: 1.16;
  letter-spacing: -.02em;
  color: var(--oh-secondary);
}

.oh-about-like p { max-width: 900px; }

.oh-about-figure {
  margin: 42px 0 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--oh-border);
  aspect-ratio: 21 / 8;
  background: var(--oh-muted);
}

.oh-about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.oh-about-figure:hover img { transform: scale(1.02); }

/* -------------------------------------------------------------------------
 * Contact page
 * ---------------------------------------------------------------------- */

.oh-contact { padding: 64px 0 80px; }

.oh-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 48px;
  /* Stretch, not start — the design has both columns ending level. */
  align-items: stretch;
  margin-top: 66px;
}

.oh-contact-figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--oh-border);
  background: var(--oh-muted);
  height: 100%;
  min-height: 520px;
}

.oh-contact-figure img { width: 100%; height: 100%; object-fit: cover; }

.oh-contact-card {
  background: #fff;
  border: 1px solid var(--oh-border);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 2px 18px rgba(27, 36, 33, .04);
}

.oh-contact-card h2 {
  margin: 0 0 10px;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 27px;
  color: var(--oh-secondary);
}

.oh-contact-note {
  margin: 0 0 28px;
  font-family: var(--oh-mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(43, 42, 39, .6);
}

/* ---------- Fluent Forms, restyled to the brand ---------- */

.oh-contact-card .fluentform .ff-el-group { margin-bottom: 20px; }

.oh-contact-card .fluentform .ff-el-input--label label {
  font-family: var(--oh-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oh-secondary);
  margin-bottom: 9px;
  display: block;
}

/* FF marks required fields with its own asterisk; the design has none. */
.oh-contact-card .fluentform .ff-el-is-required.asterisk-right label:after,
.oh-contact-card .fluentform .ff-el-is-required.asterisk-left label:before { display: none; }

.oh-contact-card .fluentform input[type="text"],
.oh-contact-card .fluentform input[type="email"],
.oh-contact-card .fluentform textarea {
  width: 100%;
  background: var(--oh-muted);
  border: 1px solid var(--oh-border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--oh-sans);
  font-size: 15px;
  color: var(--oh-dark);
  outline: none;
  box-shadow: none;
  transition: border-color .2s, background .2s;
}

.oh-contact-card .fluentform input[type="text"]:focus,
.oh-contact-card .fluentform input[type="email"]:focus,
.oh-contact-card .fluentform textarea:focus {
  border-color: var(--oh-primary);
  background: #fff;
}

.oh-contact-card .fluentform ::placeholder { color: rgba(43, 42, 39, .38); }

/* No resize grabber in the design. */
.oh-contact-card .fluentform textarea { min-height: 150px; resize: none; }

.oh-contact-card .fluentform .ff-t-cell { padding-right: 14px; }
.oh-contact-card .fluentform .ff-t-cell:last-child { padding-right: 0; }

.oh-contact-card .fluentform .ff-btn-submit {
  width: 100%;
  background: var(--oh-secondary);
  color: var(--oh-light);
  border: 0;
  border-radius: 10px;
  padding: 17px 24px;
  font-family: var(--oh-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;

  /* Paper-plane icon, as in the design. Fluent Forms renders the button, so
     the icon is attached here rather than in markup. */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.oh-contact-card .fluentform .ff-btn-submit::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FCFAF7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E");
}

.oh-contact-card .fluentform .ff-btn-submit:hover { background: var(--oh-primary); color: var(--oh-secondary); }

/* Icon follows the text colour on hover. */
.oh-contact-card .fluentform .ff-btn-submit:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231B2421' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m22 2-7 20-4-9-9-4Z'/%3E%3Cpath d='M22 2 11 13'/%3E%3C/svg%3E");
}

.oh-contact-card .fluentform .ff-el-form-check-label { font-family: var(--oh-sans); font-size: 14px; }

.oh-contact-card .fluentform .error-text,
.oh-contact-card .fluentform .ff-el-is-error .text-danger {
  font-family: var(--oh-mono);
  font-size: 11px;
  color: #b3261e;
  margin-top: 6px;
}

.oh-contact-card .ff-message-success {
  font-family: var(--oh-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--oh-secondary);
  background: var(--oh-muted);
  border: 1px solid var(--oh-border);
  border-radius: 10px;
  padding: 22px;
}

/* -------------------------------------------------------------------------
 * Legal pages
 *
 * Body copy is Inter per the design, so this must stay outside .oh-section
 * (which forces Playfair on every descendant).
 * ---------------------------------------------------------------------- */

.oh-legal { padding: 64px 0 80px; }

.oh-legal-card {
  max-width: 768px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--oh-border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 2px 18px rgba(27, 36, 33, .04);
}

.oh-legal-head {
  border-bottom: 1px solid var(--oh-border);
  padding-bottom: 24px;
  margin-bottom: 34px;
}

.oh-legal-head h1 {
  margin: 0;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: var(--oh-secondary);
  letter-spacing: -.01em;
}

.oh-legal-updated {
  margin: 10px 0 0;
  font-family: var(--oh-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(43, 42, 39, .45);
}

.oh-legal-body { font-family: var(--oh-sans); }

.oh-legal-body h2 {
  margin: 34px 0 12px;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  color: var(--oh-secondary);
}

.oh-legal-body h2:first-child { margin-top: 0; }

.oh-legal-body p {
  margin: 0 0 14px;
  font-size: 14.5px;
  line-height: 1.78;
  color: rgba(43, 42, 39, .8);
}

.oh-legal-body ul {
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: disc;
}

.oh-legal-body li {
  margin-bottom: 7px;
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(43, 42, 39, .8);
}

.oh-legal-body a { color: var(--oh-primary); text-decoration: underline; }
.oh-legal-body a:hover { color: var(--oh-secondary); }

@media (max-width: 720px) {
  .oh-legal { padding: 40px 0 56px; }
  .oh-legal-card { padding: 26px 22px; border-radius: 16px; }
  .oh-legal-head { padding-bottom: 18px; margin-bottom: 26px; }
  .oh-legal-head h1 { font-size: 27px; }
  .oh-legal-body h2 { font-size: 18px; margin-top: 28px; }
}

/* -------------------------------------------------------------------------
 * Single post
 * ---------------------------------------------------------------------- */

.oh-toolbar { padding: 22px 0 0; }

.oh-toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--oh-muted);
  border: 1px solid var(--oh-border);
  border-radius: 12px;
  padding: 14px 20px;
}

.oh-back {
  font-family: var(--oh-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--oh-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.oh-back:hover { color: var(--oh-primary); }

.oh-sidepos { display: flex; align-items: center; gap: 8px; }

.oh-sidepos-label {
  font-family: var(--oh-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(43, 42, 39, .5);
}

.oh-sidepos-btn {
  font-family: var(--oh-mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: rgba(43, 42, 39, .6);
  padding: 7px 14px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}

.oh-sidepos-btn:hover { color: var(--oh-secondary); border-color: var(--oh-border); }

.oh-sidepos-btn.is-active {
  background: var(--oh-secondary);
  color: var(--oh-light);
  border-color: var(--oh-secondary);
}

/* Sidebar flips to the left when the switch is set. */
.oh-split.is-left-sidebar { grid-template-columns: 330px 1fr; }
.oh-split.is-left-sidebar .oh-sidebar { order: -1; }

.oh-single { padding-top: 34px; }

.oh-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.oh-chip {
  font-family: var(--oh-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oh-primary);
  background: rgba(228, 203, 152, .28);
  border-radius: 999px;
  padding: 6px 13px;
  transition: all .2s;
}

.oh-chip:hover { background: var(--oh-primary); color: var(--oh-light); }

.oh-dot { color: rgba(43, 42, 39, .3); }

.oh-byline-text {
  font-family: var(--oh-mono);
  font-size: 11px;
  color: rgba(43, 42, 39, .6);
}

.oh-article h1 {
  margin: 0 0 26px;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 42px;
  line-height: 1.18;
  color: var(--oh-secondary);
  letter-spacing: -.015em;
}

.oh-article-figure {
  margin: 0 0 28px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--oh-muted);
  aspect-ratio: 16 / 9;
}

.oh-article-figure img { width: 100%; height: 100%; object-fit: cover; }

/* Excerpt as a pull quote with a gold rule. */
.oh-article-lede {
  margin: 0 0 30px;
  padding-left: 18px;
  border-left: 2px solid var(--oh-primary);
  font-family: var(--oh-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(27, 36, 33, .85);
}

.oh-article-body p {
  margin: 0 0 20px;
  font-family: var(--oh-serif);
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(43, 42, 39, .88);
}

/* Drop cap on the opening paragraph only. */
.oh-article-body > p:first-of-type::first-letter {
  float: left;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 52px;
  line-height: .82;
  color: var(--oh-primary);
  margin: 6px 10px 0 0;
}

.oh-article-body h2,
.oh-article-body h3 {
  font-family: var(--oh-serif);
  font-weight: 700;
  color: var(--oh-secondary);
  margin: 32px 0 12px;
}

.oh-article-body h2 { font-size: 26px; }
.oh-article-body h3 { font-size: 21px; }

.oh-article-body ul, .oh-article-body ol { margin: 0 0 20px; padding-left: 22px; }

.oh-article-body li {
  font-family: var(--oh-serif);
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: rgba(43, 42, 39, .88);
}

.oh-article-body a { color: var(--oh-primary); text-decoration: underline; }

/* ---------- author card ---------- */

.oh-authorcard {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 46px;
  padding: 28px;
  background: rgba(244, 239, 234, .5);
  border: 1px solid var(--oh-border);
  border-radius: 20px;
}

.oh-authorcard-avatar {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--oh-primary), var(--oh-primary-light));
  color: #fff;
  font-family: var(--oh-serif);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

.oh-authorcard h4 {
  margin: 0 0 8px;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 19px;
  color: var(--oh-secondary);
}

.oh-authorcard p {
  margin: 0;
  font-family: var(--oh-sans);
  font-size: 14px;
  line-height: 1.75;
  color: rgba(43, 42, 39, .75);
}

@media (max-width: 1024px) {
  .oh-split.is-left-sidebar { grid-template-columns: 1fr; }
  .oh-split.is-left-sidebar .oh-sidebar { order: 0; }
  .oh-toolbar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 720px) {
  .oh-article h1 { font-size: 29px; }
  .oh-article-lede { font-size: 16.5px; }
  .oh-article-body p, .oh-article-body li { font-size: 15.5px; }
  .oh-article-figure { aspect-ratio: 4 / 3; }
  .oh-authorcard { flex-direction: column; align-items: center; text-align: center; padding: 22px; }
  .oh-sidepos { flex-wrap: wrap; gap: 6px; }
}

/* ---------- section headers ---------- */

.oh-section { padding: 58px 0; }

.oh-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.oh-section-head h2 {
  margin: 0;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 40px;
  color: var(--oh-secondary);
  letter-spacing: -.01em;
}

/* Category link rendered as a pill button. */
.oh-explore {
  font-family: var(--oh-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--oh-secondary);
  background: transparent;
  border: 1.5px solid var(--oh-primary);
  border-radius: 999px;
  padding: 11px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all .22s ease;
  flex: 0 0 auto;
}

.oh-explore:hover {
  background: var(--oh-primary);
  border-color: var(--oh-primary);
  color: var(--oh-light);
  transform: translateX(2px);
}

.oh-eyebrow {
  font-family: var(--oh-mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--oh-primary);
  display: block;
  margin-bottom: 10px;
}

/* ---------- standard card ---------- */

.oh-grid { display: grid; gap: 22px; }
.oh-grid-4 { grid-template-columns: repeat(4, 1fr); }
.oh-grid-3 { grid-template-columns: repeat(3, 1fr); }

.oh-card { display: flex; flex-direction: column; }

.oh-card .oh-thumb {
  height: 180px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--oh-muted);
}

.oh-card-tall .oh-thumb { height: 225px; }

.oh-card h3 {
  margin: 0 0 10px;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 21px;
  line-height: 1.32;
  color: var(--oh-secondary);
  transition: color .2s;
}

.oh-card:hover h3 { color: var(--oh-primary); }

.oh-card p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(43, 42, 39, .72);
  font-family: var(--oh-serif);
}

.oh-readmore {
  margin-top: auto;
  font-family: var(--oh-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--oh-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}

.oh-readmore:hover { color: var(--oh-primary); }

/* ---------- lifestyle + travel with sidebar ---------- */

.oh-split {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 40px;
  align-items: start;
}

.oh-subrow + .oh-subrow { margin-top: 44px; }

/* Lifestyle, Travel and Beauty share one column down the left. */
.oh-stream { min-width: 0; }
.oh-stream-block { margin-top: 58px; }

/* Sidebar tracks the stream for its full height. 88px clears the sticky header. */
.oh-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
  align-self: start;
}

.oh-newsletter {
  background: var(--oh-secondary);
  border-radius: 8px;
  padding: 28px 24px;
  /* Clears the sticky header when jumped to via #newsletter. */
  scroll-margin-top: 100px;
}

.oh-newsletter .oh-eyebrow { color: var(--oh-primary-light); }

.oh-newsletter p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(252, 250, 247, .78);
}

.oh-newsletter input {
  width: 100%;
  border: 1px solid rgba(228, 203, 152, .28);
  background: rgba(252, 250, 247, .06);
  border-radius: 5px;
  padding: 12px 14px;
  font-size: 13px;
  font-family: var(--oh-mono);
  color: var(--oh-light);
  outline: none;
  margin-bottom: 12px;
}

.oh-newsletter input::placeholder { color: rgba(252, 250, 247, .38); }

.oh-newsletter button {
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: var(--oh-primary);
  color: var(--oh-secondary);
  font-family: var(--oh-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px;
  cursor: pointer;
  transition: background .2s;
}

.oh-newsletter button:hover { background: var(--oh-primary-light); }

/* ---------- Fluent Forms inside the dark newsletter card ---------- */

/* The design shows a placeholder only — no visible label. */
.oh-newsletter .fluentform .ff-el-input--label { display: none; }
.oh-newsletter .fluentform .ff-el-group { margin-bottom: 12px; }
.oh-newsletter .fluentform .ff-t-container { display: block; }

.oh-newsletter .fluentform input[type="email"],
.oh-newsletter .fluentform input[type="text"] {
  width: 100%;
  border: 1px solid rgba(228, 203, 152, .28);
  background: rgba(252, 250, 247, .06);
  border-radius: 5px;
  padding: 12px 14px;
  font-family: var(--oh-sans);
  font-size: 14px;
  color: var(--oh-light);
  outline: none;
  box-shadow: none;
  transition: border-color .2s, background .2s;
}

.oh-newsletter .fluentform input:focus {
  border-color: var(--oh-primary);
  background: rgba(252, 250, 247, .1);
}

.oh-newsletter .fluentform ::placeholder { color: rgba(252, 250, 247, .38); }

.oh-newsletter .fluentform .ff-btn-submit {
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: var(--oh-primary);
  color: var(--oh-secondary);
  font-family: var(--oh-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 13px;
  cursor: pointer;
  transition: background .2s;
}

.oh-newsletter .fluentform .ff-btn-submit:hover { background: var(--oh-primary-light); }

/* Errors and the success message have to read on the dark card. */
.oh-newsletter .fluentform .error-text,
.oh-newsletter .fluentform .text-danger {
  font-family: var(--oh-mono);
  font-size: 11px;
  color: #E9A0A0;
  margin-top: 6px;
}

.oh-newsletter .ff-message-success {
  font-family: var(--oh-sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--oh-light);
  background: rgba(252, 250, 247, .07);
  border: 1px solid rgba(228, 203, 152, .28);
  border-radius: 6px;
  padding: 16px;
}

.oh-newsletter-fallback {
  font-family: var(--oh-mono);
  font-size: 11px;
  color: rgba(252, 250, 247, .5);
  margin: 0;
}

.oh-recent {
  background: #fff;
  border: 1px solid var(--oh-border);
  border-radius: 8px;
  padding: 24px 20px;
}

.oh-recent > .oh-eyebrow { margin-bottom: 16px; }

.oh-recent-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--oh-muted);
}

.oh-recent-item:first-of-type { border-top: 0; padding-top: 0; }

.oh-recent-item .oh-thumb {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--oh-muted);
}

.oh-recent-item .oh-eyebrow { font-size: 10px; margin-bottom: 5px; }

.oh-recent-item h4 {
  margin: 0;
  font-family: var(--oh-serif);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--oh-secondary);
}

.oh-recent-item:hover h4 { color: var(--oh-primary); }

/* ---------- beauty: wide horizontal cards ---------- */

/* Fills the stream column — the column itself sets the width now. */
.oh-wide-list { display: flex; flex-direction: column; gap: 20px; }

.oh-wide {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  background: #fff;
  border: 1px solid var(--oh-border);
  border-radius: 10px;
  padding: 22px;
  align-items: center;
}

.oh-wide .oh-thumb {
  height: 140px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--oh-muted);
}

.oh-wide h3 {
  margin: 0 0 10px;
  font-family: var(--oh-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.28;
  color: var(--oh-secondary);
}

.oh-wide p {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(43, 42, 39, .7);
}

.oh-wide-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.oh-byline { display: flex; align-items: center; gap: 8px; }

.oh-avatar {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--oh-primary), var(--oh-primary-light));
  color: #fff;
  font-family: var(--oh-mono);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  object-fit: cover;
}

.oh-byline span {
  font-family: var(--oh-mono);
  font-size: 12px;
  color: rgba(43, 42, 39, .65);
}

/* ---------- footer ---------- */

.oh-footer {
  background: var(--oh-secondary);
  color: rgba(252, 250, 247, .7);
  margin-top: 40px;
  padding: 48px 0 0;
  font-family: var(--oh-sans);
}

.oh-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.oh-footer .oh-logo {
  color: var(--oh-light);
  margin-bottom: 18px;
  display: inline-block;
  transition: color .2s;
}

.oh-footer .oh-logo:hover { color: var(--oh-primary); }

.oh-footer p {
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 375px;
  margin: 0 0 28px;
}

/* ---------- Trustpilot badge ---------- */

.oh-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(252, 250, 247, .16);
  border-radius: 8px;
  padding: 9px 14px;
  font-family: var(--oh-sans);
  font-size: 12.5px;
  color: var(--oh-light);
}

.oh-trust-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--oh-light);
}

.oh-trust-brand svg { color: #00b67a; }

.oh-trust-sep {
  width: 1px;
  height: 18px;
  background: rgba(252, 250, 247, .16);
}

.oh-trust-stars { display: inline-flex; gap: 2px; }

.oh-trust-stars i {
  width: 17px;
  height: 17px;
  border-radius: 2px;
  background: #00b67a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.oh-trust-score { color: rgba(252, 250, 247, .75); white-space: nowrap; }
.oh-trust-score strong { color: var(--oh-light); font-weight: 700; }

/* ---------- link columns ---------- */

.oh-footer-links { display: flex; flex-direction: column; align-items: center; }

.oh-footer h5 {
  margin: 0 0 18px;
  font-family: var(--oh-mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--oh-primary);
  font-weight: 500;
  text-align: center;
}

/* Columns mirror around the centre gap: left is right-aligned, right is left-aligned. */
.oh-footer-cols { display: grid; grid-template-columns: auto auto; gap: 12px 46px; }

.oh-footer-links ul { list-style: none; margin: 0; padding: 0; }
.oh-footer-links li { margin-bottom: 13px; }
.oh-footer-links li:last-child { margin-bottom: 0; }

.oh-col-a { text-align: right; }
.oh-col-b { text-align: left; }

.oh-footer-links a {
  font-size: 14.5px;
  color: rgba(252, 250, 247, .78);
  transition: color .2s;
  white-space: nowrap;
}

.oh-footer-links a:hover { color: var(--oh-primary-light); }

/* ---------- bottom bar: socials | copyright | back-to-top ---------- */

.oh-footer-bottom {
  margin-top: 44px;
  border-top: 1px solid rgba(252, 250, 247, .1);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.oh-copy {
  grid-column: 2;
  text-align: center;
  font-family: var(--oh-mono);
  font-size: 12px;
  color: rgba(252, 250, 247, .5);
  white-space: nowrap;
}

.oh-socials { display: flex; gap: 12px; justify-self: start; }

.oh-socials a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(252, 250, 247, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(252, 250, 247, .8);
  transition: all .2s;
}

.oh-socials a:hover { background: var(--oh-primary); border-color: var(--oh-primary); color: var(--oh-secondary); }

.oh-top {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(252, 250, 247, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(252, 250, 247, .8);
  justify-self: end;
  grid-column: 3;
  transition: all .2s;
}

.oh-top:hover { background: var(--oh-primary); border-color: var(--oh-primary); }

/* ---------- image placeholders (fallback when a post has no featured image) ---------- */

.oh-ph {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--oh-muted) 0%, #EDE4D8 55%, var(--oh-border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.oh-ph::after {
  content: attr(data-label);
  font-family: var(--oh-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--oh-primary);
  opacity: .5;
}

.oh-tile .oh-ph {
  background: linear-gradient(135deg, #3A4440 0%, #2B3531 55%, var(--oh-secondary) 100%);
}

.oh-tile .oh-ph::after { color: var(--oh-primary-light); opacity: .35; }

/* ---------- responsive ---------- */

/* ---------- mobile menu button (hidden on desktop) ---------- */

.oh-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--oh-border);
  border-radius: 10px;
  background: var(--oh-muted);
  cursor: pointer;
  flex: 0 0 auto;
  transition: all .2s;
}

.oh-burger span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: var(--oh-secondary);
  transition: transform .25s ease, opacity .2s ease;
}

.oh-burger:hover { border-color: var(--oh-primary); }

/* Bars morph into a close icon while the panel is open. */
.is-nav-open .oh-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-nav-open .oh-burger span:nth-child(2) { opacity: 0; }
.is-nav-open .oh-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop: the wrapper must not affect layout at all. */
.oh-nav-panel { display: contents; }

/* -------------------------------------------------------------------------
 * Tablet and below — collapse nav + search into a drop panel
 * ---------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .oh-split { grid-template-columns: 1fr; }
  /* Sidebar drops below the stream, so sticky no longer applies. */
  .oh-sidebar { flex-direction: row; position: static; }
  .oh-sidebar > * { flex: 1; }
  .oh-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .oh-burger { display: flex; }
  .oh-header-inner { gap: 16px; padding: 14px 20px; }
  .oh-logo { font-size: 32px; }

  .oh-nav-panel {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--oh-light);
    border-bottom: 1px solid var(--oh-border);
    box-shadow: 0 18px 40px rgba(27, 36, 33, .1);
    padding: 18px 20px 24px;
    max-height: calc(100vh - 100%);
    overflow-y: auto;

    /* Collapsed by default; JS flips .is-nav-open on the header. */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }

  .is-nav-open .oh-nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .oh-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-bottom: 16px;
  }

  .oh-nav a {
    display: block;
    font-size: 15px;
    padding: 13px 16px;
    border-radius: 10px;
    opacity: .9;
  }

  .oh-nav a.is-active { background: var(--oh-secondary); color: var(--oh-light); }

  .oh-search { width: 100%; min-width: 0; padding: 12px 18px; }
  .oh-search input { font-size: 15px; }
}

/* -------------------------------------------------------------------------
 * Phone
 * ---------------------------------------------------------------------- */

@media (max-width: 720px) {
  .oh-wrap { padding: 0 18px; }

  .oh-hero { padding: 20px 0 4px; }
  .oh-hero-top, .oh-hero-bottom { grid-template-columns: 1fr; gap: 10px; }
  .oh-hero-top { margin-bottom: 10px; }
  .oh-tile-lg, .oh-tile-sm { height: 220px; }
  .oh-tile-lg h3, .oh-tile-sm h3 { font-size: 19px; }

  .oh-section { padding: 40px 0; }
  .oh-grid-4, .oh-grid-3 { grid-template-columns: 1fr; gap: 28px; }
  .oh-sidebar { flex-direction: column; }
  .oh-stream-block { margin-top: 44px; }

  .oh-wide { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .oh-wide .oh-thumb { height: 190px; }
  .oh-wide h3 { font-size: 21px; }

  /* Contact: image above the form card. */
  .oh-contact { padding: 44px 0 56px; }
  .oh-contact-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
  .oh-contact-figure { aspect-ratio: 4 / 3; height: auto; min-height: 0; }
  .oh-contact-card { padding: 26px 22px; }
  .oh-contact-card h2 { font-size: 23px; }
  /* FF's two-column row would be far too tight on a phone. */
  .oh-contact-card .fluentform .ff-t-cell { display: block; width: 100% !important; padding-right: 0; }

  /* About: single column, tighter rhythm, taller figure crop. */
  .oh-about { padding: 44px 0 56px; }
  .oh-about-hero h1 { font-size: 34px; }
  .oh-about-cols { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
  .oh-about-quote { margin: 48px 0; padding: 38px 0; }
  .oh-about-quote p { font-size: 30px; }
  .oh-rule-head h2 { font-size: 21px; }
  .oh-about-figure { aspect-ratio: 4 / 3; border-radius: 16px; margin-top: 30px; }

  /* Archive rows stack; the thumbnail goes full width above the title. */
  .oh-arch-item { grid-template-columns: 1fr; gap: 16px; padding: 22px 0; }
  .oh-arch-item .oh-thumb { height: 200px; }
  .oh-arch-item h2 { font-size: 22px; }

  .oh-filterbar-inner { padding-top: 12px; padding-bottom: 12px; gap: 12px; }
  .oh-filterbar p, .oh-reset { font-size: 11px; }
  .oh-section-head-archive { padding-bottom: 16px; }

  /* Tiles are shorter here, so pull the text block in tighter. */
  .oh-tile-text { left: 16px; right: 16px; bottom: 14px; }
  .oh-tile-sm h3 { -webkit-line-clamp: 3; }

  .oh-section-head h2 { font-size: 30px; }
  /* Heading and button stack rather than squeezing side by side. */
  .oh-section-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .oh-explore { padding: 10px 18px; font-size: 11px; }

  .oh-footer { padding: 40px 0 0; }
  .oh-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .oh-footer p { max-width: none; }

  /* Links block left-aligns once it is no longer beside the brand column. */
  .oh-footer-links { align-items: flex-start; }
  .oh-footer h5 { text-align: left; }
  .oh-footer-cols { gap: 12px 40px; }

  /* Bottom bar stacks: copyright first, then socials and the top button. */
  .oh-footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 20px 16px;
  }

  .oh-copy { grid-column: 1 / -1; grid-row: 1; text-align: left; white-space: normal; }
  .oh-socials { grid-column: 1; grid-row: 2; }
  .oh-top { grid-column: 2; grid-row: 2; }
}

/* ---------- small phones ---------- */

@media (max-width: 420px) {
  .oh-wrap { padding: 0 14px; }
  .oh-header-inner { padding: 12px 14px; }
  .oh-logo { font-size: 27px; }

  .oh-tile-lg, .oh-tile-sm { height: 190px; }
  .oh-tile-lg h3, .oh-tile-sm h3 { font-size: 17px; }

  .oh-section-head h2 { font-size: 26px; }
  .oh-card h3 { font-size: 19px; }
  .oh-wide h3 { font-size: 19px; }

  /* Two link columns are too tight to read at this width. */
  .oh-footer-cols { grid-template-columns: 1fr; gap: 0; }
  .oh-col-a, .oh-col-b { text-align: left; }
  .oh-col-b { margin-top: 13px; }

  /* Badge wraps rather than overflowing on narrow screens. */
  .oh-trust { flex-wrap: wrap; gap: 8px 10px; }
  .oh-trust-sep { display: none; }

  /* Filter bar stacks rather than crushing both halves together. */
  .oh-filterbar-inner { flex-direction: column; align-items: flex-start; gap: 8px; }

  .oh-arch-item h2 { font-size: 19px; }
  .oh-arch-item .oh-thumb { height: 170px; }
}
