/* ========================================
   Design System — WenHao Yu 風格復刻
   ======================================== */

/* --- Fonts --- */
@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,600&family=Noto+Sans+TC:wght@400;500;600&family=Noto+Serif+TC:wght@400;600&display=swap");

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Satoshi", "Noto Sans TC", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #faf8f5;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

/* --- Selection --- */
::selection {
  background-color: #fef9c3;
  color: #1a1a1a;
}

/* --- Container --- */
.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: "Newsreader", "Noto Serif TC", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #2c2416;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) { h1 { font-size: 3rem; } }

h2 {
  font-size: 1.875rem;
}
@media (min-width: 768px) { h2 { font-size: 2.25rem; } }

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) { h3 { font-size: 1.875rem; } }

h4 {
  font-size: 1.25rem;
}
@media (min-width: 768px) { h4 { font-size: 1.5rem; } }

.heading-xl {
  font-family: "Newsreader", "Noto Serif TC", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #2c2416;
}
@media (min-width: 768px) { .heading-xl { font-size: 2.5rem; } }
@media (min-width: 1024px) { .heading-xl { font-size: 3rem; } }

.subheading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2c2416;
}
@media (min-width: 768px) { .subheading { font-size: 1.5rem; } }

.body-large {
  font-size: 1.125rem;
  line-height: 1.625;
  color: #5c5144;
}
@media (min-width: 1024px) { .body-large { font-size: 1.25rem; } }

.text-muted {
  color: #8b7355;
  font-size: 0.875rem;
}

.text-secondary {
  color: #5c5144;
}

/* --- Section Padding --- */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) { .section { padding: 7rem 0; } }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section-heading {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .section-heading { margin-bottom: 3rem; } }

/* --- Backgrounds --- */
.bg-cream {
  background-color: #faf8f5;
}
.bg-cream-light {
  background-color: #fffdf9;
}
.bg-cream-200 {
  background-color: #f5f1eb;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 6rem;
  background-color: #faf8f5;
  border-bottom: 1px solid #ebe6dc;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  height: 4rem;
  width: auto;
  display: block;
}

/* --- Navigation --- */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: #5c5144;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #2c2416;
}

.nav-link.active {
  color: #2c2416;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #b8926a;
  border-radius: 1px;
}

/* --- Language Switcher --- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #5c5144;
  transition: color 0.2s ease;
}

.lang-switcher:hover {
  color: #2c2416;
}

/* --- Subscribe Button (Header) --- */
.btn-subscribe-header {
  display: none;
  padding: 0.625rem 1.25rem;
  background-color: #e8e4dd;
  color: #2c2416;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

@media (min-width: 768px) {
  .btn-subscribe-header {
    display: inline-block;
  }
}

.btn-subscribe-header:hover {
  background-color: #d9d4cb;
}

/* --- Mobile Menu Button --- */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2c2416;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 6rem;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #faf8f5;
  padding: 2rem 1.5rem;
  z-index: 40;
  overflow-y: auto;
}

.mobile-menu.open {
  display: block;
}

.mobile-nav-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #5c5144;
  padding: 1rem 0;
  border-bottom: 1px solid #ebe6dc;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #2c2416;
}

.mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #5c5144;
  margin-top: 1rem;
  padding: 1rem 0;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: #b8926a;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #a67d55;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  transform: scale(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: #b8926a;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #b8926a;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: #b8926a;
  color: #fff;
}

/* --- Tags --- */
.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(184, 146, 106, 0.1);
  color: #8b7355;
  font-size: 0.875rem;
  border-radius: 9999px;
}

.tag-accent {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #ca8a04;
  color: #fff;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.tag-category {
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  color: #434343;
  border-radius: 9999px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.tag-label {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(184, 146, 106, 0.1);
  color: #b8926a;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

/* --- Cards --- */
.card {
  background-color: #fff;
  border: 1px solid #e8e4dd;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .card {
    padding: 2.5rem;
  }
}

.card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border-color: rgba(184, 146, 106, 0.3);
  transform: translateY(-2px);
}

.card-link:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  border-color: rgba(184, 146, 106, 0.3);
  transform: translateY(-2px);
}

.card-cta {
  background-color: #f5f1eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .card-cta {
    padding: 2.5rem;
  }
}

/* --- Blog Card --- */
.blog-card {
  background-color: #fff;
  border: 1px solid #f5f1eb;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border-color: #ebe6dc;
}

.blog-card-image {
  position: relative;
  height: 10rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .blog-card-image {
    height: 12rem;
  }
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem 1.5rem;
}

.blog-card-date {
  font-size: 0.75rem;
  color: #818181;
}

@media (min-width: 768px) {
  .blog-card-date {
    font-size: 0.875rem;
  }
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .blog-card-title {
    font-size: 1.125rem;
  }
}

.blog-card:hover .blog-card-title {
  color: #ca8a04;
}

.blog-card-excerpt {
  font-size: 0.875rem;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Hero Section --- */
.hero {
  padding: 5rem 0 3rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 7rem 0 3rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-image {
  width: 100%;
  border-radius: 1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* --- Story Section --- */
.story-section {
  background-color: #fffdf9;
}

.story-content {
  max-width: 56rem;
}

.belief-block {
  margin-top: 2.5rem;
  padding: 1.5rem 0 1.5rem 1.5rem;
  border-left: 4px solid #b8926a;
}

@media (min-width: 768px) {
  .belief-block {
    margin-top: 3.5rem;
    padding: 1.5rem 0 1.5rem 2rem;
  }
}

.belief-text {
  font-family: "Newsreader", "Noto Serif TC", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #434343;
  font-weight: 500;
}

@media (min-width: 768px) {
  .belief-text {
    font-size: 1.5rem;
  }
}

/* --- Stats --- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.stat-number {
  font-family: "Newsreader", "Noto Serif TC", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2416;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 1rem;
  color: #5c5144;
}

@media (min-width: 768px) {
  .stat-label {
    font-size: 1.125rem;
  }
}

/* --- Track Cards (What I do) --- */
.tracks-section {
  background-color: #f5f1eb;
}

.tracks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .tracks-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.track-card {
  background-color: #fff;
  border: 1px solid #e8e4dd;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .track-card {
    padding: 2.5rem;
  }
}

.track-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.track-link {
  font-weight: 500;
  color: #b8926a;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s ease;
}

.track-link:hover {
  color: #8b7355;
  text-decoration: underline;
}

/* --- CTA Section --- */
.cta-section {
  background-color: #faf8f5;
}

.cta-card {
  background-color: #f5f1eb;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cta-card {
    padding: 2.5rem;
  }
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* --- Newsletter --- */
.newsletter-section {
  background-color: #fffdf9;
}

.newsletter-inner {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 1.5rem auto 0;
}

@media (max-width: 639px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid #e8e4dd;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-family: inherit;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-input:focus {
  border-color: #b8926a;
}

.newsletter-input::placeholder {
  color: #a4a4a4;
}

/* --- Divider --- */
.section-divider {
  border: none;
  border-top: 1px solid #e0dbd3;
  margin: 0;
}

/* --- Footer --- */
.site-footer {
  background-color: #f5f1eb;
  border-top: 1px solid #ebe6dc;
  padding: 3rem 0;
  text-align: center;
}

.footer-brand {
  font-family: "Newsreader", "Noto Serif TC", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}

.footer-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #515151;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-social a {
  color: #666666;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #434343;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ebe6dc;
  font-size: 0.875rem;
  color: #818181;
}

/* --- Grid Utilities --- */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Gap Utilities --- */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* --- Spacing Utilities --- */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* --- Flex Utilities --- */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }

/* --- Text Utilities --- */
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* --- Page-specific --- */

/* Services Page */
.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .service-list {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background-color: #fff;
  border: 1px solid #e8e4dd;
  border-radius: 0.75rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2.5rem;
  }
}

.service-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border-color: rgba(184, 146, 106, 0.3);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background-color: rgba(184, 146, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Contact Page */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-method {
  background-color: #fff;
  border: 1px solid #e8e4dd;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border-color: #b8926a;
  transform: translateY(-2px);
}

.contact-method-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* Product Card */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.product-card {
  display: block;
  background-color: #fff;
  border: 1px solid #e8e4dd;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border-color: #b8926a;
  transform: translateY(-2px);
}

.product-card-body {
  padding: 1.5rem;
}

/* --- Helper: Skip link --- */
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Article Prose Typography --- */
.container-prose {
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container-prose {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.prose {
  color: #1a1a1a;
  max-width: 70ch;
  font-size: 1rem;
  line-height: 1.75;
}
.prose.prose-lg {
  font-size: 1.125rem;
  line-height: 1.7777778;
}
.prose.max-w-none {
  max-width: none;
}

/* Headings */
.prose :where(h1, h2, h3, h4):not(:where([class~=not-prose] *)) {
  color: #1a1a1a;
  font-family: "Newsreader", "Noto Serif TC", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.prose-lg :where(h1):not(:where([class~=not-prose] *)) {
  font-size: 2.6666667em;
  margin-top: 0;
  margin-bottom: 0.8333333em;
  line-height: 1;
}
.prose-lg :where(h2):not(:where([class~=not-prose] *)) {
  font-size: 1.6666667em;
  margin-top: 1.8666667em;
  margin-bottom: 1.0666667em;
  line-height: 1.3333333;
}
.prose-lg :where(h3):not(:where([class~=not-prose] *)) {
  font-size: 1.3333333em;
  margin-top: 1.6666667em;
  margin-bottom: 0.6666667em;
  line-height: 1.5;
}
.prose-lg :where(h4):not(:where([class~=not-prose] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 0.4444444em;
  line-height: 1.5555556;
}

/* Paragraphs */
.prose-lg :where(p):not(:where([class~=not-prose] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
}

/* Bold */
.prose :where(strong):not(:where([class~=not-prose] *)) {
  color: #383838;
  font-weight: 600;
}

/* Links */
.prose :where(a):not(:where([class~=not-prose] *)) {
  color: #0d9488;
  text-decoration: none;
  font-weight: 500;
}
.prose :where(a):not(:where([class~=not-prose] *)):hover {
  color: #0f766e;
  text-decoration: underline;
}

/* Blockquotes */
.prose :where(blockquote):not(:where([class~=not-prose] *)) {
  font-weight: 500;
  font-style: normal;
  color: #434343;
  border-left: 3px solid #ca8a04;
  background-color: #fdfcfa;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.prose-lg :where(blockquote):not(:where([class~=not-prose] *)) {
  margin-top: 1.6666667em;
  margin-bottom: 1.6666667em;
}

/* Horizontal Rules */
.prose :where(hr):not(:where([class~=not-prose] *)) {
  border: none;
  border-top: 1px solid #ebe6dc;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose-lg :where(hr):not(:where([class~=not-prose] *)) {
  margin-top: 3.1111111em;
  margin-bottom: 3.1111111em;
}

/* Images */
.prose :where(img):not(:where([class~=not-prose] *)) {
  width: 100%;
  border-radius: 0.5rem;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose-lg :where(img):not(:where([class~=not-prose] *)) {
  margin-top: 1.7777778em;
  margin-bottom: 1.7777778em;
}

/* Lists */
.prose :where(ul, ol):not(:where([class~=not-prose] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose-lg :where(ul, ol):not(:where([class~=not-prose] *)) {
  margin-top: 1.3333333em;
  margin-bottom: 1.3333333em;
  padding-inline-start: 1.5555556em;
}
.prose :where(ul):not(:where([class~=not-prose] *)) {
  list-style-type: disc;
}
.prose :where(ol):not(:where([class~=not-prose] *)) {
  list-style-type: decimal;
}
.prose-lg :where(li):not(:where([class~=not-prose] *)) {
  margin-top: 0.6666667em;
  margin-bottom: 0.6666667em;
}
.prose :where(li):not(:where([class~=not-prose] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~=not-prose] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~=not-prose] *)) {
  padding-inline-start: 0.375em;
}
.prose :where(ol > li):not(:where([class~=not-prose] *))::marker {
  font-weight: 400;
  color: #6b7280;
}
.prose :where(ul > li):not(:where([class~=not-prose] *))::marker {
  color: #d1d5db;
}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~=not-prose] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}

/* Inline Code */
.prose :where(code):not(:where([class~=not-prose] *)) {
  color: #111827;
  font-weight: 400;
  font-size: 0.875em;
  background-color: #f5f1eb;
  border-radius: 0.25rem;
  padding: 0.125rem 0.375rem;
  font-family: "JetBrains Mono", "Fira Code", Consolas, monospace;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background-color: #ca8a04;
  color: #fff;
  border-radius: 0.375rem;
  clip: auto;
  white-space: normal;
}
