:root {
  --bg: #f8f7f4;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-soft: rgba(255, 255, 255, 0.58);
  --ink: #171717;
  --muted: #64615c;
  --line: rgba(23, 23, 23, 0.08);
  --accent: #c86e4a;
  --accent-deep: #aa5230;
  --shadow: 0 20px 48px rgba(15, 23, 42, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 980px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Be Vietnam Pro", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(200, 110, 74, 0.08), transparent 22%),
    radial-gradient(circle at left 72%, rgba(200, 110, 74, 0.05), transparent 24%),
    linear-gradient(180deg, #fcfbf8 0%, #f6f3ed 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--muted);
  line-height: 1.92;
}

.page-shell {
  width: min(calc(100% - 32px), 1180px);
  margin: 18px auto 42px;
}

.page {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.shared-header-mount {
  min-height: 96px;
}

.site-header {
  position: fixed;
  top: 18px;
  left: var(--header-left, 16px);
  z-index: 30;
  width: var(--header-width, min(calc(100% - 32px), 1180px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(252, 249, 245, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  backdrop-filter: blur(16px);
  box-shadow:
    0 12px 30px rgba(15, 23, 42, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition:
    transform 240ms ease,
    opacity 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 18px));
  opacity: 0;
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark-shell {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(216, 91, 43, 0.16);
}

.brand-mark {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 6px;
  font-size: 0.94rem;
  background: linear-gradient(135deg, rgba(248, 246, 241, 0.92), rgba(255, 241, 233, 0.76));
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -1px 0 rgba(23, 23, 23, 0.03);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 240, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #4b5563;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(216, 91, 43, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 24px rgba(15, 23, 42, 0.08);
}

.site-header.is-nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav > a,
.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 16px;
  color: #3c434d;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-link:hover,
.nav-link:focus-visible,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  background: #ffffff;
  color: var(--accent-deep);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.site-nav > a.is-active,
.nav-link.is-active,
.nav-dropdown-toggle.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, #d86a44, #b65435);
  box-shadow: 0 12px 24px rgba(184, 84, 53, 0.26);
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(216, 91, 43, 0.12);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 246, 240, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 8px 18px rgba(15, 23, 42, 0.05);
}

.nav-lang-toggle__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 14px;
  color: #7a4b37;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-lang-toggle__item:hover,
.nav-lang-toggle__item:focus-visible {
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-lang-toggle__item.is-active {
  background: linear-gradient(135deg, #d86a44, #b65435);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(184, 84, 53, 0.2);
}

.nav-lang-toggle__item.is-locked {
  color: rgba(122, 75, 55, 0.48);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding-right: 32px;
  background: rgba(255, 237, 228, 0.78);
}

.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-62%) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: translateY(-30%) rotate(-135deg);
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 100%;
  height: 18px;
  transform: translateX(-50%);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 15;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 241, 0.98));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-label {
  padding: 6px 12px 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-menu a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.1);
  transform: translateX(2px);
}

.nav-dropdown-menu a.is-active {
  color: var(--accent-deep);
  background: rgba(255, 138, 91, 0.14);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.text-journal-page {
  padding-top: 48px;
}

.text-journal-hero {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 42px 0 28px;
}

.text-journal-hero h1 {
  max-width: 12ch;
}

.journal-hero-intro {
  margin: 28px 0 0;
  font-size: 1.06rem;
}

.journal-list {
  width: min(100%, 760px);
  margin: 34px auto 0;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
}

.journal-entry {
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.journal-entry-link {
  display: block;
  padding: 34px 4px 32px;
  transition: transform 180ms ease, color 180ms ease;
}

.journal-entry-link:hover,
.journal-entry-link:focus-visible {
  transform: translateX(3px);
}

.journal-entry .article-meta {
  margin: 0 0 12px;
  color: rgba(23, 23, 23, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journal-entry h2 {
  max-width: 14ch;
}

.journal-entry p {
  margin: 18px 0 0;
  max-width: 58ch;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.article-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.journal-entry-link:hover .article-link,
.journal-entry-link:focus-visible .article-link {
  color: var(--accent-deep);
}

.journal-entry-link:hover .article-link::after,
.journal-entry-link:focus-visible .article-link::after {
  transform: translateX(3px);
}

.journal-page {
  width: 100%;
  padding-top: 30px;
}

.journal-editorial {
  display: grid;
  gap: 56px;
}

.journal-lead-story {
  display: grid;
  gap: 30px;
}

.journal-lead-media,
.journal-secondary-media {
  overflow: hidden;
}

.journal-lead-media {
  position: relative;
  aspect-ratio: 16 / 9;
}

.journal-lead-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.journal-lead-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.journal-lead-slide.is-active {
  opacity: 1;
}

.journal-lead-media img,
.journal-secondary-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.journal-lead-body {
  width: 100%;
  display: grid;
  gap: 16px;
}

.journal-lead-body .eyebrow {
  margin-bottom: -4px;
}

.journal-lead-body h1 {
  max-width: none;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
}

.journal-secondary-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  margin-top: 18px;
  padding-top: 34px;
}

.journal-secondary-grid::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(180px, 100%);
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 110, 74, 0.48), rgba(200, 110, 74, 0));
}

.journal-secondary-grid::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(200, 110, 74, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 6px rgba(248, 247, 244, 0.9);
}

.journal-secondary-story {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 24px 24px 22px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 252, 248, 0.88)),
    radial-gradient(circle at top left, rgba(200, 110, 74, 0.05), transparent 34%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.journal-secondary-story:hover,
.journal-secondary-story:focus-within {
  transform: translateY(-2px);
  border-color: rgba(200, 110, 74, 0.16);
  box-shadow: 0 22px 38px rgba(15, 23, 42, 0.07);
}

.journal-secondary-media {
  aspect-ratio: 4 / 3;
  margin-bottom: 10px;
}

.journal-secondary-story h3 {
  max-width: 16ch;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-family: "Sora", "Be Vietnam Pro", sans-serif;
}

.journal-secondary-story p {
  margin: 0;
}

.text-article-layout {
  width: min(100%, 820px);
  padding-top: 48px;
}

.text-article-header {
  position: relative;
  padding: 22px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.text-article-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 78px;
  height: 2px;
  background: linear-gradient(90deg, rgba(200, 110, 74, 0.56), rgba(200, 110, 74, 0));
}

.text-article-header .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: rgba(23, 23, 23, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.article-byline {
  margin: 0 0 18px;
  color: rgba(23, 23, 23, 0.5);
  font-size: 0.94rem;
  line-height: 1.6;
}

.article-byline strong {
  color: #1f1a17;
  font-weight: 600;
}

.text-article-header h1 {
  max-width: 11ch;
  font-size: clamp(2.9rem, 6.2vw, 4.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #161616;
}

.article-intro {
  margin: 24px 0 0;
  max-width: 56ch;
  padding-left: 18px;
  border-left: 2px solid rgba(200, 110, 74, 0.24);
  font-size: 1.08rem;
  line-height: 1.9;
  color: #403a34;
}

.text-article-body {
  margin-top: 38px;
  padding: 12px 0 24px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.text-article-body p {
  margin: 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.92;
}

.text-article-body p + p {
  margin-top: 22px;
}

.text-article-body h2 {
  margin-top: 52px;
  margin-bottom: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: #1b1b1b;
}

.article-quote {
  width: min(100%, 54ch);
  margin: 38px auto 42px;
  padding: 22px 0;
  border-top: 1px solid rgba(200, 110, 74, 0.22);
  border-bottom: 1px solid rgba(200, 110, 74, 0.22);
  color: #2f2924;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.48rem, 2.5vw, 1.9rem);
  font-style: italic;
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-align: center;
}

.site-footer {
  padding: 10px 0 28px;
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.site-footer-links a {
  color: inherit;
  text-decoration-color: rgba(23, 23, 23, 0.2);
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--accent-deep);
}

.site-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin: 18px auto 0;
}

.site-footer-links + .site-footer-socials {
  margin-top: 22px;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 110, 74, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #5a4b41;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.site-footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.site-footer-social:hover,
.site-footer-social:focus-visible {
  transform: translateY(-2px);
  color: var(--accent-deep);
  border-color: rgba(200, 110, 74, 0.28);
  background: rgba(255, 250, 246, 0.98);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 24;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid rgba(216, 91, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.back-to-top span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 246, 241, 0.96);
  color: var(--accent-deep);
  font-size: 1rem;
  line-height: 1;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--accent-deep);
  border-color: rgba(216, 91, 43, 0.22);
  background: rgba(255, 250, 246, 0.98);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.16);
  transform: translateY(-2px);
}

@media (max-width: 1000px) {
  .site-header {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-header-bar {
    gap: 12px;
    width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    gap: 8px;
    border-radius: 26px;
    padding: 10px;
    margin-top: 10px;
  }

  .site-header.is-nav-open .site-nav {
    display: flex;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown::after {
    display: none;
  }

  .site-nav > a,
  .nav-link,
  .nav-dropdown-toggle {
    min-height: 42px;
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-toggle::after {
    right: 16px;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    top: auto;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    display: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu,
  .site-header.is-nav-open .nav-dropdown:focus-within .nav-dropdown-menu,
  .site-header.is-nav-open .nav-dropdown:hover .nav-dropdown-menu {
    display: grid;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 20px), 1180px);
    margin: 10px auto 34px;
  }

  .text-journal-page,
  .text-article-layout {
    padding-top: 24px;
  }

  .text-journal-hero,
  .journal-list,
  .text-article-layout {
    width: 100%;
  }

  .text-article-header::before {
    left: 0;
    top: 0;
    width: 42px;
  }

  .journal-secondary-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-top: 14px;
    padding-top: 28px;
  }

  .journal-secondary-story {
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .text-journal-hero h1,
  .text-article-header h1,
  .journal-entry h2 {
    max-width: none;
  }

  .text-article-header h1 {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
    line-height: 1;
  }

  .journal-hero-intro,
  .text-article-body p,
  .article-intro {
    font-size: 1rem;
  }

  .article-intro {
    padding-left: 14px;
  }

  .text-article-body {
    margin-top: 30px;
    padding-top: 8px;
  }

  .text-article-body h2 {
    margin-top: 42px;
    padding-top: 14px;
  }

  .journal-entry-link {
    padding: 28px 0 26px;
  }

  .article-quote {
    width: 100%;
    margin: 34px 0 38px;
    padding: 18px 0;
    font-size: clamp(1.35rem, 5.8vw, 1.7rem);
  }
}
