.page-index {
  color: #FFF6D6; /* Text Main color for dark background */
  background-color: #0A0A0A; /* Background color */
}

.page-index__promo-hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  margin-bottom: 60px;
  background-color: #0A0A0A; /* Match body background */
}

.page-index__promo-hero-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.page-index__promo-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index__promo-hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index__promo-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-index__promo-hero-content {
  text-align: left;
  padding: 20px;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
}

.page-index__promo-hero-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color for title prominence */
  line-height: 1.2;
}

.page-index__promo-hero-subtitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFF6D6; /* Text Main */
}

.page-index__promo-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #FFF6D6; /* Text Main */
}

.page-index__promo-hero-cta {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #111111; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-index__promo-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}