@charset "UTF-8";
/* ======================================================================
   Coffee Alternatives — Design System
   ====================================================================== */
:root {
  --ink: #1F1B16;
  --coffee: #5C3A1E;
  --coffee-dark: #3B2612;
  --amber: #C97B3C;
  --amber-dark: #A25F27;
  --paper: #FBF7F1;
  --paper-alt: #F4EEE2;
  --muted: #8A7E6F;
  --muted-light: #BFB5A8;
  --line: #E5DED1;
  --success: #3F7A4E;
  --danger: #9A3A2C;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --w-wide: 1200px;
  --w-std: 960px;
  --w-narrow: 700px;
  --shadow-sm: 0 1px 2px rgba(31, 27, 22, 0.06), 0 1px 3px rgba(31, 27, 22, 0.08);
  --shadow-md: 0 4px 6px rgba(31, 27, 22, 0.06), 0 10px 15px rgba(31, 27, 22, 0.07);
  --shadow-lg: 0 10px 20px rgba(31, 27, 22, 0.08), 0 20px 40px rgba(31, 27, 22, 0.08);
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--coffee);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--amber-dark);
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 2.5rem 0;
}

/* Layout */
.wrap {
  width: 100%;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wrap--std {
  max-width: var(--w-std);
}

.wrap--narrow {
  max-width: var(--w-narrow);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  margin-top: 2.5rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

h4 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

p {
  margin: 0 0 1.2em;
}

strong {
  color: var(--ink);
  font-weight: 600;
}

blockquote {
  border-left: 3px solid var(--amber);
  margin: 2rem 0;
  padding: 0.25rem 0 0.25rem 1.25rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--coffee-dark);
}

pre, code {
  font-family: "Menlo", "Consolas", monospace;
  font-size: 0.95em;
}

code {
  background: var(--paper-alt);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

pre {
  background: var(--ink);
  color: #fff;
  padding: 1rem;
  overflow-x: auto;
  border-radius: var(--r-md);
}

pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}

ul, ol {
  padding-left: 1.5rem;
}

li {
  margin: 0.35em 0;
}

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(180%) blur(8px);
}

.site-header__wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.site-brand__mark {
  font-size: 1.75rem;
  line-height: 1;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-brand__primary {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}

.site-brand__secondary {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.site-nav a:hover {
  color: var(--coffee);
  border-bottom-color: var(--amber);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: none;
  }
  .site-nav[data-open=true] {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
  }
  .site-nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }
  .site-brand__secondary {
    display: none;
  }
}
/* Hero */
.home-hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper-alt) 0%, var(--paper) 100%);
}

.home-hero__kicker {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.home-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  margin-bottom: 1rem;
  max-width: 18ch;
}

.home-hero__dek {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.5rem;
}

.home-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  background: var(--coffee);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s;
}

.home-hero__cta:hover {
  background: var(--amber-dark);
  color: #fff;
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section--alt {
  background: var(--paper-alt);
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.section__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
}

.section__link {
  font-size: 0.95rem;
  color: var(--coffee);
  text-decoration: none;
  font-weight: 500;
}

.section__link:hover {
  text-decoration: underline;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 2rem;
}

.card-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.card-grid--2 {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  height: 100%;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--muted-light);
}

.card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card__image {
  aspect-ratio: 16/10;
  background: var(--paper-alt) center/cover no-repeat;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.card__kicker {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--amber-dark);
  font-weight: 600;
}

.card__title {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
  color: var(--ink);
}

.card__dek {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.card__meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: auto;
  display: flex;
  gap: 0.5rem;
}

/* Featured/highlight card (first in a grid) */
.card--feature {
  grid-column: span 2;
}

.card--feature .card__title {
  font-size: 1.75rem;
}

@media (max-width: 800px) {
  .card--feature {
    grid-column: span 1;
  }
  .card--feature .card__title {
    font-size: 1.35rem;
  }
}
/* Post hero & prose */
.post__hero {
  padding: clamp(2rem, 4vw, 3.5rem) 0 2rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper-alt) 0%, var(--paper) 100%);
}

.post__kicker {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--amber-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.post__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.post__dek {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}

.post__lede {
  margin: 2rem 0;
}

.post__lede img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
}

.post__lede figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  text-align: center;
}

/* Byline */
.byline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.byline__avatar {
  flex-shrink: 0;
}

.byline__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.byline__meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.byline__author {
  font-weight: 600;
  font-size: 0.95rem;
}

.byline__author a {
  color: var(--ink);
}

.byline__role {
  color: var(--muted);
  font-size: 0.82rem;
}

.byline__date {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Prose */
.prose {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--ink);
}

.prose > * + * {
  margin-top: 1em;
}

.prose h2, .prose h3 {
  scroll-margin-top: 5rem;
}

.prose p {
  margin: 0 0 1.25em;
}

.prose img {
  border-radius: var(--r-md);
  margin: 2rem auto;
}

.prose ul, .prose ol {
  margin-bottom: 1.25em;
}

.prose ul li, .prose ol li {
  margin: 0.35em 0;
}

.prose a {
  color: var(--coffee);
  font-weight: 500;
}

.prose a:hover {
  color: var(--amber-dark);
}

/* Callout boxes */
.prose .callout,
.callout {
  background: var(--paper-alt);
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 2rem 0;
  font-size: 0.98rem;
}

.callout h4 {
  margin: 0 0 0.4em;
  font-size: 1rem;
  color: var(--coffee-dark);
}

.callout p:last-child {
  margin-bottom: 0;
}

/* Pros/Cons (for reviews) */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 700px) {
  .proscons {
    grid-template-columns: 1fr;
  }
}
.proscons__col {
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--paper-alt);
}

.proscons__col h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.proscons__col--pros {
  border-left: 4px solid var(--success);
}

.proscons__col--cons {
  border-left: 4px solid var(--danger);
}

.proscons__col ul {
  padding-left: 1.2rem;
  margin: 0;
}

/* Rating badge */
.rating {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  margin-top: 1rem;
}

.rating__score {
  font-weight: 700;
  font-size: 1.35rem;
  font-family: var(--font-serif);
}

.rating__max {
  opacity: 0.7;
  font-size: 0.9rem;
}

.rating__label {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* TOC */
.toc {
  background: var(--paper-alt);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  margin-bottom: 2rem;
  border: 1px solid var(--line);
}

.toc__title {
  font-weight: 600;
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.toc ol {
  margin: 0;
  padding-left: 1.25rem;
}

.toc a {
  text-decoration: none;
  color: var(--coffee);
}

.toc a:hover {
  text-decoration: underline;
}

/* Sources */
.sources {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.sources__heading {
  font-size: 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sources__list a {
  color: var(--coffee);
}

/* Author box */
.author-box {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--paper-alt);
  border-radius: var(--r-md);
  margin: 3rem 0 2rem;
}

.author-box__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__name {
  margin: 0 0 0.25rem;
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.author-box__bio {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.author-box__name a {
  color: var(--coffee);
  text-decoration: none;
}

.author-box__name a:hover {
  text-decoration: underline;
}

/* Newsletter */
.newsletter {
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, var(--coffee) 0%, var(--coffee-dark) 100%);
  color: #fff;
  border-radius: var(--r-lg);
}

.newsletter__head {
  color: #fff;
  font-family: var(--font-serif);
  margin: 0 0 0.25rem;
  font-size: 1.5rem;
}

.newsletter__sub {
  margin: 0 0 1.25rem;
  opacity: 0.85;
}

.newsletter__form {
  display: flex;
  gap: 0.5rem;
}

.newsletter__input {
  flex: 1;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 0;
  font-size: 1rem;
  font-family: var(--font-sans);
}

.newsletter__btn {
  padding: 0.85rem 1.5rem;
  background: var(--amber);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

.newsletter__btn:hover {
  background: var(--amber-dark);
}

.newsletter__micro {
  font-size: 0.8rem;
  opacity: 0.6;
  margin: 0.75rem 0 0;
}

@media (max-width: 500px) {
  .newsletter__form {
    flex-direction: column;
  }
}
/* Comments */
.comments {
  margin: 3rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.comments__heading {
  margin: 0;
  font-size: 1.5rem;
}

.comments__count {
  color: var(--muted);
  font-weight: 400;
  font-size: 1rem;
}

.comments__note {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.comments__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comment {
  display: flex;
  gap: 1rem;
}

.comment__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coffee);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-serif);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.comment__body {
  flex: 1;
}

.comment__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: baseline;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
}

.comment__author {
  font-weight: 600;
  color: var(--ink);
}

.comment__location, .comment__date {
  color: var(--muted);
}

.comment__text {
  font-size: 0.98rem;
  line-height: 1.6;
}

.comment__text p {
  margin: 0 0 0.5em;
}

.comment__text p:last-child {
  margin: 0;
}

.comment__reply {
  margin-top: 1rem;
  margin-left: 1rem;
  padding: 1rem 1.25rem;
  background: var(--paper-alt);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.comment__reply-head {
  margin-bottom: 0.4rem;
}

.comment__reply-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--amber-dark);
}

.comments__footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

/* Related */
.related {
  margin: 3rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.related__heading {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
}

/* Page article (static pages) */
.page-article {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.page-article__header {
  margin-bottom: 2rem;
}

.page-article__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.page-article__subtitle {
  color: var(--muted);
  font-size: 1.15rem;
}

/* Category page */
.category-page {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.category-page__header {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

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

.category-page__dek {
  color: var(--muted);
  font-size: 1.1rem;
}

/* Author page */
.author-page__header {
  text-align: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

.author-page__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.author-page__name {
  font-size: 2.25rem;
}

.author-page__role {
  color: var(--muted);
  font-size: 1.1rem;
}

.author-page__posts {
  margin-top: 3rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #cbb9a4;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.site-footer a {
  color: #e8d9c4;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--amber);
  text-decoration: underline;
}

.site-footer__wrap {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 3rem;
}

.site-footer__brand .site-brand__primary {
  color: #fff;
  font-size: 1.25rem;
}

.site-footer__tagline {
  color: #e8d9c4;
  margin: 0.5rem 0 1rem;
}

.site-footer__note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.site-footer__col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__col li {
  margin: 0.4em 0;
}

.site-footer__legal {
  grid-column: 1/-1;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  opacity: 0.7;
}

.site-footer__micro {
  opacity: 0.7;
  font-size: 0.78rem;
  margin-top: 0.5rem;
}

@media (max-width: 800px) {
  .site-footer__wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .site-footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Homepage blocks */
.topic-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.topic-tile {
  display: block;
  padding: 1.5rem;
  border-radius: var(--r-md);
  background: var(--paper-alt);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.2s;
  border: 1px solid var(--line);
}

.topic-tile:hover {
  background: #EFE5D2;
  color: var(--coffee-dark);
}

.topic-tile__icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  display: block;
}

.topic-tile__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.25rem;
}

.topic-tile__meta {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Homepage — featured grid: first card spans 2 */
.home-featured .card-grid--3 > article:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.home-featured .card-grid--3 > article:first-child .card__title {
  font-size: 1.75rem;
}

.home-featured .card-grid--3 > article:first-child .card__image {
  aspect-ratio: 16/9;
}

@media (max-width: 800px) {
  .home-featured .card-grid--3 > article:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .home-featured .card-grid--3 > article:first-child .card__title {
    font-size: 1.35rem;
  }
}
/* Utilities */
.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* Print */
@media print {
  .site-header, .site-footer, .newsletter, .comments, .related {
    display: none;
  }
  .prose {
    font-size: 11pt;
  }
}

/*# sourceMappingURL=main.css.map */