@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900');
/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  background-image: url('30th_celebration_gold_1080.jpeg');
  background-size: cover;
  background-position: center 68%;
  background-repeat: no-repeat;
  border-bottom: 1px solid #d4af37;
  overflow: hidden;
  margin-bottom: -70px;
}

.set-hero {
  text-align: center;
  margin-bottom: 50px;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills section nicely */
  object-position: center; /* keeps focus centered */
}


/* PAGE LAYOUT */
.set-page {
  padding: 40px 5%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 60px;
}

.pcard-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.set-subtitle {
  color: var(--gold-dark);
  margin-top: 10px;
}

/* INFO */
.set-info {
  margin-bottom: 60px;
}

.set-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
  font-weight: 600;
  font-size: 24px;
  font-family: 'Cinzel', serif;
}

.set-description {
  line-height: 1.6;
  color: #F8F9FA;
  font-size: 18px;
  font-family: 'Cinzel', serif;
}

/* CHASE SECTION */

.chase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.chase-card {
  background: #1E2329;
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  transition: 0.3s;
}

.chase-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-mid);
}

.chase-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.chase-card p {
  font-size: 16px;
  color: #F8F9FA;
  margin-top: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .chase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
