/* === Reset & Base === */
html {
  height: 100%;
  scroll-behavior: smooth;
}

html, body {
  box-sizing: border-box;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
}

html, body, main {
  height: auto !important;
  overflow: visible !important;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-white);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.italianno-regular {
  font-family: var(--font-cursive);
  font-weight: 400;
  font-style: normal;
}

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-serif);
}

.page-title,
.page-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h1,
h1.page-title {
  font-family: var(--font-cursive);
  font-weight: 400;
  font-size: 3.5em;
  margin: 0 0 0.15rem;
  padding: 0;
  color: var(--color-text-primary);
  z-index: 1001;
  position: relative;
  letter-spacing: 0.5px;
}

/* === Site Header (Big Bites tiny kitchen) === */
h1.site-title {
  text-align: center;
  font-family: inherit;
  font-size: 2.5rem;
  font-weight: 400;
  margin: 0.25rem 0 0.25rem;
  line-height: 1.1;
  color: #1A1A1A;
  letter-spacing: 0;
}

h1.site-title .big-bites {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1.site-title .tiny-kitchen {
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  text-transform: lowercase;
  letter-spacing: 0;
}

.site-byline {
  text-align: center;
  font-family: 'Italianno', cursive;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0.25rem 0 0.15rem;
}

.site-tagline {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #1A1A1A;
  margin: 0 0 1rem;
}

.page-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-editorial);
  list-style: none;
}

body.homepage header.site-header {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* === Navigation === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: var(--color-bg-white);
  text-align: center;
  padding: 6px 0;
  border-top: 1px solid var(--color-text-primary);
  border-bottom: 1px solid var(--color-text-primary);
}

.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  margin: 0;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0.25rem 0.5rem;
}

.nav-menu a {
  font-family: var(--font-serif);
  font-variant: small-caps;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 10px 12px;
  position: relative;
  transition: color var(--transition-default);
  white-space: normal;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 50%;
  bottom: -3px;
  background-color: var(--color-brand-red);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
  left: 0;
}

.nav-menu a:hover {
  background-color: var(--color-text-editorial);
  color: var(--color-bg-white);
}

/* === Hero Section === */
.hero-text-container {
  max-width: var(--max-width-content);
  margin: 4rem auto 1.5rem;
  text-align: center;
  padding: 1rem;
}

body.homepage .hero-text-container {
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero-text-container {
    margin-top: 3.5rem;
  }
}

.hero-feature {
  width: 100%;
  height: 420px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

nav.navbar + .hero-feature {
  margin-top: 2.5rem;
}

.hero-feature-title {
  font-family: var(--font-cursive);
  font-size: 2.5rem;
  margin-bottom: 0;
  line-height: 1.2;
  color: var(--color-text-primary);
  text-align: center;
  font-weight: 400;
}

.hero-feature-subtitle {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  margin-top: -0.3rem;
  margin-bottom: 0.3rem;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0 1rem;
  word-wrap: break-word;
}

.hero-feature-content {
  position: absolute;
  top: 3rem;
  left: 2rem;
  max-width: 550px;
  color: white;
}

/* === Section Styles === */
section {
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.7s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Recipe Landing Page Grid & Cards === */
.r-landing-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  max-width: var(--max-width-wide);
  margin: 2rem auto 4rem;
  padding: 0 1rem;
}

.recipe-card {
  background-color: var(--color-bg-white);
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform var(--transition-default), box-shadow var(--transition-default);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-family: var(--font-serif);
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.recipe-card a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.recipe-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid var(--color-brand-red);
  border-radius: 10px 10px 0 0;
  background-color: #f8f8f8;
  flex-shrink: 0;
}

.recipe-card-caption {
  padding: 1rem 0.75rem 1.25rem;
  font-size: 1.1rem;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* === Subscription === */
.subscription-confirmation {
  display: none;
}

/* === Featured Intros === */
.featured-intros {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2.5rem;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 3rem auto 2rem;
  padding: 0 4vw;
  border-top: none;
  border-bottom: none;
}

.intro-blurb-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
  margin: -2rem -2rem 1.5rem -2rem;
  width: calc(100% + 4rem);
}

.featured-intros .intro-blurb {
  position: relative;
  background: var(--color-bg-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-default), transform var(--transition-default);
  width: 100%;
  box-sizing: border-box;
}

.featured-intros .intro-blurb:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.intro-blurb h2 {
  font-size: 1.25rem;
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  margin-bottom: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-blurb p {
  font-size: 1rem;
  color: var(--color-text-editorial);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.intro-blurb a {
  font-size: 0.95rem;
  color: var(--color-brand-red);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition-default);
}

.intro-blurb a:hover {
  color: var(--color-brand-red-hover);
}

/* === Stories Section (Homepage Background Block) === */
.stories-section {
  background-color: var(--color-bg-warm);
  padding: 6rem 2rem 5rem;
  text-align: center;
  font-family: var(--font-serif);
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.stories-container {
  max-width: 750px;
  margin: 0 auto;
}

.stories-heading {
  font-size: 2.2rem;
  color: var(--color-text-primary);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.stories-blurb {
  font-size: 1rem;
  color: var(--color-text-editorial);
  margin-bottom: 2rem;
  line-height: 1.5;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.stories-link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-red);
  text-decoration: none;
  border: 1px solid var(--color-brand-red);
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  transition: background-color var(--transition-default), color var(--transition-default);
}

.stories-link:hover {
  background-color: var(--color-brand-red);
  color: var(--color-bg-white);
}

/* === About Section === */
.about-section {
  padding: 3rem 1rem;
  background-color: #FDF9F7;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.about-photo {
  flex: 0 0 320px;
  width: 320px;
  height: 320px;
  object-fit: cover;
  object-position: center 60%;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2.about-greeting {
  font-family: var(--font-cursive);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-brand-red);
  margin-bottom: 1rem;
}

.about-text p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-text-editorial);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-photo {
    flex: none;
    width: 260px;
    max-width: 260px;
    height: 260px;
  }

  .about-text {
    text-align: center;
  }
}

/* === Stories Teaser Section === */
.stories-teaser-section {
  max-width: 100%;
  margin: 0.5rem auto 1rem;
  padding: 1rem 1rem;
  background-color: var(--color-bg-white);
  font-family: var(--font-serif);
  color: var(--color-text-primary);
  text-align: left;
  box-shadow: none;
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.stories-teaser-section .section-title {
  font-family: var(--font-cursive);
  font-size: 2.8rem;
  color: var(--color-brand-red);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.story-card {
  padding: 1rem 0;
  border-top: 1px solid var(--color-border-dark);
}

.story-main-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--color-text-primary);
  text-align: left;
  letter-spacing: 0.2px;
}

.story-main-subtitle {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-editorial);
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}

.story-excerpt {
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: left;
}

.story-excerpt::first-letter {
  float: left;
  font-size: 3.5rem;
  line-height: 1;
  padding-right: 0.15rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--color-brand-red);
  font-style: normal;
}

.story-callout {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-brand-red);
  font-size: 1rem;
  line-height: 1.6;
  margin: 1.5rem 0 2rem;
  padding: 0;
  border: none;
}

/* === Giving Section === */
.giving-section {
  background-color: #FFFFFF;
  text-align: center;
  padding: 0 1.5rem 3.25rem;
  max-width: var(--max-width-wide);
  margin: -1rem auto 0;
}

.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #1A1A1A;
  text-transform: none;
  letter-spacing: normal;
  text-align: center;
  margin: 0 0 1rem;
}

.section-subtext {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: #555555;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.giving-text {
  font-family: var(--font-sans);
  color: #555555;
  font-weight: 400;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1rem;
}

.giving-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.giving-links a {
  font-family: var(--font-sans);
  color: #C61010;
  text-decoration: none;
  font-weight: 600;
}

.giving-links a:hover {
  color: #9B0D0D;
}

/* === Section Labels & Headers === */
.section-label {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  border-top: 1px solid var(--color-border-medium);
  padding-top: 1.2rem;
}

.section-top-rule {
  width: 100%;
  height: 6px;
  background-color: var(--color-brand-red);
  margin: 1.5rem auto 1.25rem;
}

.section-kicker {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-editorial);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.section-header {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-text-primary);
  text-align: center;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  border-top: none;
  padding-top: 0;
  text-transform: none;
}

.read-more-link {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-brand-red);
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  text-underline-offset: 3px;
  transition: color var(--transition-default);
}

.read-more-link:hover {
  color: var(--color-brand-red-hover);
  text-decoration: underline;
}

.article-body p:first-letter {
  float: left;
  font-size: 3.5rem;
  line-height: 0.09;
  font-weight: bold;
  padding-right: 0.5rem;
  color: var(--color-brand-red);
  font-family: var(--font-serif);
}

/* === Footer === */
.footer, .site-footer {
  background-color: var(--color-bg-light);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-brand-red);
  text-align: center;
  padding: 1rem;
  border-top: 1px solid var(--color-border-medium);
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

.footer p, .site-footer p {
  margin: 0 0 0.15rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
}

.footer-social a {
  color: var(--color-text-meta);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: color var(--transition-default);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-social a:hover {
  color: var(--color-brand-red);
}

.footer-giving {
  margin-top: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.footer-giving-label {
  color: #8A8A8A;
  font-weight: 400;
  margin-right: 0.5rem;
}

.footer-giving a {
  color: #C61010;
  text-decoration: none;
}

.footer-giving a:hover {
  color: #9B0D0D;
}

.footer-giving-separator {
  color: #8A8A8A;
  margin: 0 0.5rem;
}

/* === Subscribe Section === */
.subscribe-section {
  background-color: #000;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5.5rem 1.5rem;
  font-family: var(--font-sans);
}

.subscribe-text {
  margin-bottom: 2rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.subscribe-section h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  white-space: nowrap;
  margin: 0 0 1rem;
  text-align: center;
}

.subscribe-section p {
  font-size: 1rem;
  margin: 0;
  text-align: center;
}

.name-input-wrapper {
  max-width: 320px;
  width: 100%;
  margin-bottom: 0.5rem;
}

.name-input-wrapper input[type="text"] {
  border: none;
  border-radius: 9999px;
  padding: 0 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  width: 100%;
  height: 2.4rem;
  outline: none;
  color: var(--color-text-primary);
  box-sizing: border-box;
}

.name-input-wrapper input::placeholder {
  color: #999;
}

.email-input-wrapper {
  display: flex;
  background: white;
  border-radius: 9999px;
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  height: 2.4rem;
}

.email-input-wrapper input[type="email"] {
  border: none;
  padding: 0 1rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  flex: 1;
  outline: none;
  color: var(--color-text-primary);
}

.email-input-wrapper input::placeholder {
  color: #999;
}

.email-input-wrapper button {
  background: white;
  border: none;
  padding: 0 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--color-text-primary);
  transition: color var(--transition-default);
}

.email-input-wrapper button:hover {
  color: var(--color-text-editorial);
}

.terms {
  font-size: 0.7rem;
  color: var(--color-text-meta);
  margin-top: 0.75rem;
  max-width: 300px;
  line-height: 1.4;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.terms a {
  color: var(--color-text-meta);
  text-decoration: underline;
}

.terms a:hover {
  color: #fff;
}

.subscribe-section .terms {
  display: block;
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-text-meta);
  margin: 0.75rem auto 0 auto;
  max-width: none;
  line-height: 1.4;
}

.subscription-confirmation {
  background-color: #333;
  color: #fff;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* ========================================
   MEDIA QUERIES (consolidated)
   ======================================== */

/* Tablets and below */
@media (max-width: 900px) {
  .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav-menu li {
    margin: 0;
  }

  .nav-menu a {
    display: block;
    padding: 12px 1.5rem;
    font-size: 1rem;
    border-top: 1px solid var(--color-border-dark);
    text-align: center;
  }

  .nav-menu a:hover {
    background-color: var(--color-brand-red);
    color: var(--color-bg-white);
  }

  .hero-text-container {
    margin: 2rem 1rem 1rem;
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-feature-title {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero-feature-subtitle {
    font-size: 1rem;
    white-space: normal;
  }

  .hero-feature {
    max-height: 320px;
  }

  .featured-intros {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
    border-top: none;
    border-bottom: none;
  }

  .featured-intros .intro-blurb {
    width: 100%;
    box-sizing: border-box;
  }

  .intro-blurb {
    border: none;
    border-bottom: 1px solid var(--color-border-light);
    padding: 2rem 0;
    margin: 0;
  }

  .intro-blurb:last-child {
    border-bottom: none;
    padding-bottom: 2rem;
  }

  .intro-blurb h2 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .intro-blurb p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .intro-blurb a {
    font-size: 1rem;
    padding: 0.3rem 0;
    display: inline-block;
  }

  .stories-teaser-section {
    margin: 3rem 1rem 4rem;
    padding: 2rem 1rem;
  }

  .stories-teaser-section .section-title {
    font-size: 2rem;
  }

  .story-main-title {
    font-size: 1.5rem;
  }

  .story-main-subtitle {
    font-size: 1rem;
  }

  .story-excerpt {
    font-size: 1rem;
    line-height: 1.5;
  }

  .read-more-link {
    font-size: 1rem;
    padding: 0.4rem 1rem;
  }
}

/* Medium screens */
@media (max-width: 768px) {
  .featured-intros {
    flex-direction: column;
    padding: 0 1rem;
    gap: 1.5rem;
  }

  .featured-intros .intro-blurb {
    width: 100%;
    padding: 1.25rem 1rem;
    box-sizing: border-box;
  }

  .hero-feature-subtitle {
    white-space: normal;
    max-width: 100%;
    padding: 0 1rem;
    word-wrap: break-word;
    text-align: center;
  }

  .hero-feature {
    max-height: 320px;
    background-size: cover;
    background-position: center center;
  }
}

/* Small screens */
@media (max-width: 600px) {
  .hero-text-container {
    margin: 1.5rem auto 1rem;
  }

  .hero-feature-title {
    font-size: 2.4rem;
    line-height: 1.15;
  }

  .hero-feature-subtitle {
    font-size: 0.9rem;
    white-space: normal;
    max-width: 100%;
    padding: 0 1rem;
    word-wrap: break-word;
  }

  .hero-feature {
    max-height: 320px;
    background-size: cover;
    background-position: center center;
  }

  .nav-menu {
    flex-wrap: wrap;
    padding: 0 1rem;
    justify-content: center;
  }

  .nav-menu li {
    margin: 0.25rem 0.5rem;
  }

  .nav-menu a {
    font-size: 1.15rem;
    padding: 15px 0;
  }

  .featured-intros {
    flex-direction: column;
    padding: 0 0.5rem;
    gap: 1.5rem;
  }

  .featured-intros .intro-blurb {
    width: 100%;
    box-sizing: border-box;
  }

  .intro-blurb {
    padding: 1.5rem 0;
  }

  .intro-blurb h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .intro-blurb p {
    font-size: 0.95rem;
  }

  .intro-blurb a {
    font-size: 0.95rem;
  }

  .stories-teaser-section {
    margin: 2.5rem 0.5rem 3rem;
    padding: 1.5rem 1rem;
  }

  .stories-teaser-section .section-title {
    font-size: 1.8rem;
  }

  .story-main-title {
    font-size: 1.25rem;
  }

  .story-main-subtitle {
    font-size: 0.9rem;
  }

  .story-excerpt {
    font-size: 0.95rem;
  }

  .story-callout {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    padding: 0;
    border: none;
  }

  .footer, .site-footer {
    font-size: 0.85rem;
  }

  .article-body p:first-letter {
    font-size: 2.75rem;
    line-height: 1;
  }

  .subscribe-section h2,
  .subscribe-section p {
    white-space: normal;
  }
}
