:root {
  color-scheme: light;
  --bg: #f4f0e9;
  --ink: #1f1a17;
  --muted: #5b534f;
  --card: #fffaf2;
  --border: #e0d6c9;
  --accent: #1a5e45;
  --accent-2: #a86c1c;
  --shadow: rgba(24, 18, 14, 0.12);
}

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

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(
      circle at top right,
      rgba(26, 94, 69, 0.12),
      transparent 45%
    ),
    radial-gradient(
      circle at 20% 40%,
      rgba(168, 108, 28, 0.1),
      transparent 50%
    ),
    var(--bg);
  min-height: 100vh;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 64px;
}

.hero {
  max-width: 620px;
  margin-bottom: 40px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 12px;
}

h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 2rem + 2vw, 3.4rem);
  margin: 0 0 12px;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 14px 30px -22px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 94, 69, 0.45);
  box-shadow: 0 20px 40px -24px rgba(24, 18, 14, 0.25);
}

.thumb {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0e1117;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .page {
    padding-top: 56px;
  }

  .card {
    padding: 18px;
  }
}
