.quiz-landing-main {
  padding: 2.5rem 0 4rem;
}

.quiz-landing-header {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.quiz-landing-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2563eb;
}

.quiz-landing-header h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.quiz-landing-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
}

.quiz-card-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.quiz-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.quiz-card__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 5.5rem;
  padding: 1.15rem 1.75rem;
  border: 1px solid #93c5fd;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 50%, #eff6ff 100%);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.quiz-card:hover .quiz-card__inner,
.quiz-card:focus-visible .quiz-card__inner {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.16);
}

.quiz-card__copy {
  flex: 1 1 auto;
  min-width: 0;
}

.quiz-card__title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
}

.quiz-card__desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #475569;
}

.quiz-card__button {
  flex: 0 0 auto;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #2563eb;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.quiz-landing-empty {
  text-align: center;
  color: #64748b;
}

@media (max-width: 720px) {
  .quiz-card__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    min-height: 0;
    padding: 1.1rem 1.25rem;
  }

  .quiz-card__button {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}
