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

:root {
  --primary-bg: #0a0a0a;
  --secondary-bg: #1a1a1a;
  --accent-bg: #2a1a1a;
  --fire-orange: #ff6b35;
  --fire-red: #dc2626;
  --fire-gold: #fbbf24;
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --text-muted: #9ca3af;
  --gradient-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --fire-gradient: linear-gradient(45deg, #ff6b35, #dc2626, #fbbf24);
  --card-bg: rgba(42, 26, 26, 0.8);
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--gradient-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 2px solid var(--fire-orange);
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo h1 {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--fire-orange);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fire-gradient);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--fire-orange);
  margin: 3px 0;
  transition: 0.3s;
}

main {
  margin-top: 80px;
}

.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    linear-gradient(45deg, #ff6b35, #dc2626, #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/assets/images/hero-bg.jpg");
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.page-hero {
  background: var(--accent-bg);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 2px solid var(--fire-orange);
}

.page-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-btn {
  display: inline-block;
  background: var(--fire-gradient);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 20px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-card,
.review-card,
.guide-card,
.culture-card,
.release-card,
.info-card,
.community-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.news-card:hover,
.review-card:hover,
.guide-card:hover,
.culture-card:hover,
.release-card:hover,
.info-card:hover,
.community-card:hover {
  transform: translateY(-5px);
  border-color: var(--fire-orange);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.news-card h3,
.review-card h3,
.guide-card h3,
.culture-card h3,
.release-card h3,
.info-card h3,
.community-card h3 {
  color: var(--fire-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.date {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

.rating {
  color: var(--fire-gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.difficulty {
  background: var(--fire-gradient);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.section {
  padding: 4rem 0;
}

.latest-news,
.featured-reviews,
.popular-guides,
.gaming-community,
.breaking-news,
.industry-updates,
.game-releases,
.gaming-culture,
.recent-reviews,
.indie-spotlight,
.retro-reviews,
.comprehensive-guides,
.strategy-guides,
.technical-guides,
.beginner-guides,
.contact-form-section,
.community-section,
.response-info,
.faq-section,
.legal-content {
  padding: 4rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.featured-news {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--fire-orange);
}

.news-item {
  background: var(--card-bg);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.news-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.category {
  background: var(--fire-red);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

.review-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.breakdown-item {
  text-align: center;
}

.breakdown-item span {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.pros h4 {
  color: #10b981;
  margin-bottom: 0.5rem;
}

.cons h4 {
  color: #ef4444;
  margin-bottom: 0.5rem;
}

.pros-cons ul {
  list-style: none;
  padding: 0;
}

.pros-cons li {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.pros li::before {
  content: "✓ ";
  color: #10b981;
  font-weight: bold;
}

.cons li::before {
  content: "✗ ";
  color: #ef4444;
  font-weight: bold;
}

.guide-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.featured-guide {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid var(--fire-orange);
}

.guide-info {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.completion-time {
  background: var(--fire-gold);
  color: black;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.guide-sections h4 {
  color: var(--fire-orange);
  margin: 1rem 0 0.5rem 0;
}

.guide-sections ul {
  list-style: none;
  padding: 0;
}

.guide-sections li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.guide-sections li::before {
  content: "🔥";
  position: absolute;
  left: 0;
}

.difficulty-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.difficulty-badge.beginner {
  background: #10b981;
  color: white;
}

.difficulty-badge.intermediate {
  background: var(--fire-gold);
  color: black;
}

.difficulty-badge.advanced {
  background: var(--fire-red);
  color: white;
}

.guide-highlights,
.technical-specs,
.beginner-topics {
  margin-top: 1rem;
}

.guide-highlights h4,
.technical-specs h4,
.beginner-topics h4 {
  color: var(--fire-orange);
  margin-bottom: 0.5rem;
}

.guide-highlights ul,
.technical-specs ul,
.beginner-topics ul {
  list-style: none;
  padding: 0;
}

.guide-highlights li,
.technical-specs li,
.beginner-topics li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.9rem;
}

.guide-highlights li::before,
.technical-specs li::before,
.beginner-topics li::before {
  content: "▶";
  color: var(--fire-orange);
  position: absolute;
  left: 0;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-info h3,
.contact-info h4 {
  color: var(--fire-orange);
  margin-bottom: 1rem;
}

.contact-methods {
  margin-top: 2rem;
}

.contact-method {
  margin-bottom: 2rem;
}

.contact-method h4 {
  color: var(--fire-gold);
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--fire-orange);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 8px;
  background: rgba(26, 26, 26, 0.8);
  color: var(--text-primary);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.submit-btn {
  background: var(--fire-gradient);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.success-message {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #10b981;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.error-message {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #ef4444;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.faq-item h3 {
  color: var(--fire-orange);
  margin-bottom: 1rem;
}

.legal-document {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.legal-section h3 {
  color: var(--fire-orange);
  margin-bottom: 1rem;
}

.legal-section h4 {
  color: var(--fire-gold);
  margin: 1rem 0 0.5rem 0;
}

.legal-document h2 {
  color: var(--fire-orange);
  margin: 2rem 0 1rem 0;
  font-size: 1.8rem;
}

.footer {
  background: var(--primary-bg);
  border-top: 2px solid var(--fire-orange);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--fire-orange);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--fire-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  color: var(--text-muted);
}

.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.98);
  border-top: 2px solid var(--fire-orange);
  padding: 1rem;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-notice.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-accept,
.btn-decline {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--fire-gradient);
  color: white;
}

.btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--text-muted);
}

.btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-decline:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

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

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

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

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

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

  .contact-container {
    grid-template-columns: 1fr;
  }

  .review-breakdown {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

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

  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .news-card,
  .review-card,
  .guide-card,
  .culture-card,
  .release-card,
  .info-card,
  .community-card {
    padding: 1.5rem;
  }
}

/* Media helpers */
.card-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.18);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
  margin: 0 0 1rem 0;
}
.card-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* Difficulty badge color consistency with your palette */
.difficulty-badge {
  margin-top: 0.5rem;
}
.difficulty-badge.intermediate {
  background: #f59e0b;
  color: #111;
}

/* Visually hidden (for figcaptions) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/* Darken the hero background a bit more */
.hero.hero--has-overlay {
  position: relative;
  isolation: isolate;
}
.hero.hero--has-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1; /* sits above your existing ::before pattern */
}

/* Layout container so we can dock the panel on the right */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 100vh; /* same visual height */
}

/* Framed text panel */
.hero-panel {
  margin-left: auto; /* push to the right */
  max-width: 720px;
  background: rgba(10, 10, 10, 0.65);
  border: 1px solid rgba(255, 107, 53, 0.35);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(255, 107, 53, 0.14),
    0 6px 16px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  padding: 2rem 2rem 1.5rem;
}

/* Text styles */
.hero-kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin: 0 0 0.8rem 0;
}
.hero-title-accent {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-bottom: 1.1rem;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.cta-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 107, 53, 0.5);
}

/* Highlights line */
.hero-highlights {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.95rem;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0 0;
}

/* Responsive behavior */
@media (max-width: 992px) {
  .hero-panel {
    margin: 0 auto; /* center on tablets */
    max-width: 760px;
  }
}
@media (max-width: 768px) {
  .hero-panel {
    padding: 1.4rem 1.25rem 1.1rem;
    border-radius: 14px;
    background: rgba(10, 10, 10, 0.7);
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-highlights {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-panel {
    padding: 1.1rem 1rem 0.9rem;
  }
}
/* Keep the darker veil */
.hero.hero--has-overlay {
  position: relative;
  isolation: isolate;
}
.hero.hero--has-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.32) 100%
  );
  z-index: 1;
}

/* Grid keeps vertical centering */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 70vh;
}

/* Compact, left-docked panel */
.hero-panel {
  background: rgba(10, 10, 10, 0.6);
  border: 1px solid rgba(255, 107, 53, 0.32);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.12),
    0 6px 16px rgba(0, 0, 0, 0.5);
  padding: 1.25rem 1.25rem 1rem;
  max-width: 640px; /* narrower for compact feel */
}
.hero-panel--left {
  margin-right: auto;
} /* stick to left */

/* Tighter typography */
.hero-kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}
.hero-title {
  font-size: clamp(1.8rem, 4.4vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
.hero-title-accent {
  background: var(--fire-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  margin: 0 0 0.8rem;
}

/* Slimmer actions: only two buttons */
.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 0 0.4rem;
}
.cta-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 107, 53, 0.45);
}

/* Short highlights */
.hero-highlights {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.92rem;
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .hero-panel {
    max-width: 720px;
  } /* a bit wider on mid screens */
}
@media (max-width: 768px) {
  .hero-panel {
    margin: 0 auto; /* center on mobile */
    padding: 1rem 0.95rem 0.85rem;
    border-radius: 12px;
    background: rgba(10, 10, 10, 0.68);
  }
  .hero-actions,
  .hero-highlights {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .hero-subtitle {
    font-size: 0.98rem;
  }
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.card-media {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.18);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
  margin-bottom: 1rem;
}
.card-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

@media (max-width: 768px) {
  .featured-review {
    grid-column: span 1;
  }
}
