/* ========================================
   cachopos.info - Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Caveat:wght@400;700&display=swap');

:root {
  --color-gold: #c8a94e;
  --color-gold-light: #e8d48b;
  --color-dark: #1a1612;
  --color-dark-alt: #2a2420;
  --color-cream: #faf6ef;
  --color-cream-dark: #f0e8d8;
  --color-warm: #8b6f47;
  --color-warm-light: #a6895c;
  --color-red: #8b2020;
  --color-red-light: #b83a3a;
  --color-green: #4a6741;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.script-font {
  font-family: 'Caveat', cursive;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 22, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 169, 78, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--color-cream);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--color-cream-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--color-gold);
  background: rgba(200, 169, 78, 0.1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  padding: 8px;
  z-index: 10;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 22, 18, 0.4) 0%,
    rgba(26, 22, 18, 0.2) 40%,
    rgba(26, 22, 18, 0.6) 80%,
    rgba(26, 22, 18, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-title .accent {
  color: var(--color-gold);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.hero-cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 78, 0.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold-light);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---- Sections ---- */
.section {
  padding: 6rem 2rem;
}

.section-dark {
  background: var(--color-dark);
  color: var(--color-cream);
}

.section-alt {
  background: var(--color-cream-dark);
}

.section-warm {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-alt) 100%);
  color: var(--color-cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.section-dark .section-badge,
.section-warm .section-badge {
  color: var(--color-gold-light);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-dark .section-title,
.section-warm .section-title {
  color: #fff;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-warm);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

.section-dark .section-subtitle,
.section-warm .section-subtitle {
  color: rgba(250, 246, 239, 0.6);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* ---- History Section ---- */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.history-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}

.history-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.history-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(26, 22, 18, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-gold-light);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
}

.history-text h3 {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: var(--color-dark);
}

.history-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.25rem;
}

.history-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--color-warm);
  line-height: 1.6;
}

/* ---- Recipe Section ---- */
.recipe-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.recipe-card {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 169, 78, 0.15);
}

.recipe-card h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recipe-card h3 .icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ingredient-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ingredient-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #444;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.ingredient-list li:last-child {
  border-bottom: none;
}

.ingredient-dot {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.steps-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps-list li {
  counter-increment: steps;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-warm-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
  color: var(--color-dark);
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666;
}

/* ---- Varieties Section ---- */
.varieties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.variety-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200, 169, 78, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.variety-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.variety-image {
  height: 220px;
  overflow: hidden;
}

.variety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.variety-card:hover .variety-image img {
  transform: scale(1.1);
}

.variety-info {
  padding: 1.5rem;
}

.variety-info h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.variety-info p {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.6);
  line-height: 1.6;
}

.variety-tag {
  display: inline-block;
  background: rgba(200, 169, 78, 0.15);
  color: var(--color-gold-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ---- Championships Section ---- */
.contest-block {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(200, 169, 78, 0.12);
}

.contest-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
}

.contest-image {
  overflow: hidden;
}

.contest-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.contest-intro {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contest-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--color-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.contest-intro p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

.championship-level {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.level-national { background: #fff3e0; color: #e65100; }
.level-world { background: #fce4ec; color: var(--color-red); }

.winners-table {
  border-top: 1px solid rgba(200, 169, 78, 0.15);
}

.winners-table-header {
  display: grid;
  grid-template-columns: 70px 55px 1fr 1fr;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: var(--color-dark);
  color: var(--color-gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.winners-row {
  display: grid;
  grid-template-columns: 70px 55px 1fr 1fr;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  align-items: center;
  transition: background 0.2s ease;
}

.winners-row:last-child {
  border-bottom: none;
}

.winners-row:hover {
  background: rgba(200, 169, 78, 0.04);
}

.winners-row.gold {
  background: rgba(200, 169, 78, 0.07);
  border-top: 2px solid var(--color-gold);
  padding-top: 1rem;
}

.winners-row.gold:hover {
  background: rgba(200, 169, 78, 0.1);
}

.winners-row.podium-sub {
  grid-template-columns: 70px 55px 1fr 1fr;
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  border-bottom: none;
}

.winners-row.podium-sub::before {
  content: '';
  display: block;
}

.winners-row.podium-sub + .winners-row:not(.podium-sub) {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.winners-row.podium-sub:last-child {
  padding-bottom: 1rem;
}

.winner-description {
  grid-column: 1 / -1;
  padding: 0.5rem 2rem 0.75rem;
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
  font-style: italic;
  border-bottom: none;
}

.winners-row.gold + .winner-description {
  background: rgba(200, 169, 78, 0.04);
}

.winners-row .year {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
}

.winners-row.gold .year {
  color: var(--color-gold);
}

.winners-row .winner-medal {
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.2rem 0;
  border-radius: 4px;
}

.medal-gold {
  color: #b8860b;
}

.medal-silver {
  color: #808080;
}

.medal-bronze {
  color: #a0522d;
}

.winners-row .winner-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.winners-row.gold .winner-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.winners-row.podium-sub .winner-name {
  font-weight: 400;
  font-size: 0.85rem;
  color: #555;
}

.winners-row .winner-location {
  font-size: 0.85rem;
  color: var(--color-warm);
}

.winners-row.podium-sub .winner-location {
  font-size: 0.8rem;
  color: #999;
}

/* ---- Chefs Section ---- */
.chefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.chef-card {
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200, 169, 78, 0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
}

.chef-card:hover {
  background: rgba(200, 169, 78, 0.05);
  border-color: var(--color-gold);
  transform: translateY(-6px);
}

.chef-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--color-gold);
  padding: 4px;
  background: var(--color-dark);
}

.chef-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chef-card h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.chef-card .chef-title {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--color-gold-light);
  margin-bottom: 1rem;
}

.chef-card p {
  font-size: 0.9rem;
  color: rgba(250, 246, 239, 0.6);
  line-height: 1.7;
}

.chef-awards {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.chef-award {
  background: rgba(200, 169, 78, 0.12);
  color: var(--color-gold-light);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---- Footer ---- */
.footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(200, 169, 78, 0.15);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--color-cream);
  font-weight: 400;
}

.footer-text {
  color: rgba(250, 246, 239, 0.4);
  font-size: 0.85rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
  list-style: none;
}

.footer-links a {
  color: rgba(250, 246, 239, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

/* ---- Legal Pages ---- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--color-dark);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--color-gold);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--color-warm-light);
}

.legal-update {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-style: italic;
  color: #999 !important;
  font-size: 0.85rem !important;
}

/* ---- Tastiest Banner ---- */
.tastiest-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
  padding: 1.5rem 2.5rem;
  background: linear-gradient(135deg, var(--color-gold), #d4a843);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(200, 169, 78, 0.3);
}

.tastiest-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 169, 78, 0.45);
}

.tastiest-banner-text {
  font-size: 1.1rem;
  color: var(--color-dark);
  font-weight: 500;
}

.tastiest-banner-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
}

.tastiest-banner-arrow {
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease;
}

.tastiest-banner:hover .tastiest-banner-arrow {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .tastiest-banner {
    flex-wrap: wrap;
    text-align: center;
    padding: 1.25rem 1.5rem;
    gap: 0.4rem;
  }

  .tastiest-banner-text {
    font-size: 0.95rem;
    width: 100%;
  }
}

/* ---- Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .history-grid,
  .recipe-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .history-image img {
    height: 350px;
  }

  .varieties-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contest-header {
    grid-template-columns: 1fr;
  }

  .contest-image img {
    min-height: 220px;
    max-height: 260px;
  }

  .winners-table-header,
  .winners-row,
  .winners-row.podium-sub {
    grid-template-columns: 60px 45px 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 1.5rem;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 22, 18, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(200, 169, 78, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-links.active {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem 2rem;
  }

  .nav-links li a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(200, 169, 78, 0.1);
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .varieties-grid {
    grid-template-columns: 1fr;
  }

  .chefs-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .recipe-card {
    padding: 2rem;
  }

  .winners-table-header,
  .winners-row,
  .winners-row.podium-sub {
    grid-template-columns: 45px 40px 1fr auto;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
  }

  .winners-row .winner-location {
    font-size: 0.75rem;
    text-align: right;
  }

  .winners-row .year {
    font-size: 0.95rem;
  }

  .contest-intro {
    padding: 1.5rem;
  }

  .contest-intro h3 {
    font-size: 1.15rem;
  }
}
