.trivia-visual {
  height: 35vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f6b93b 0%, #e58e26 100%);
  margin-bottom: 3rem;
}
.trivia-visual .sub-hero__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.3;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  padding: 0 1rem;
  max-width: 90%;
}
.trivia-visual .visual-lead {
  color: #fff;
  opacity: 0.95;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.page-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.6rem;
  text-align: center;
  position: relative;
  display: inline-block;
}
.page-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: var(--primary);
  transform: translateX(-50%);
}

.info-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
.info-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.info-card {
  background: var(--surface);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.info-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.info-card-content {
  padding: 1.2rem;
}
.info-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}
.info-card-content p {
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.6;
}

.action-section {
  margin: 4rem 0 0;
  padding: 3rem 1.2rem;
  text-align: center;
  background: #f6b93b;
  color: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.action-section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.action-section p {
  margin-bottom: 1.2rem;
}
.action-button {
  display: inline-block;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}
.action-button:hover {
  transform: translateY(-2px);
}
