.event-page {
  background: #f4f8ff;
  color: #071d51;
}

.event-hero {
  padding: 96px 24px 34px;
  background: linear-gradient(180deg, #eef6ff 0%, #f7fbff 100%);
}

.event-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 34px;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: center;
}

.event-eyebrow {
  margin: 0 0 14px;
  color: #178b75;
  font-size: 16px;
  font-weight: 900;
}

.event-hero h1 {
  max-width: 780px;
  margin: 10px 0 30px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.32;
  letter-spacing: 0;
}

.event-hero-copy {
  max-width: 680px;
  margin: 0;
  color: #1b2f57;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.05;
}

.event-hero-visual {
  justify-self: center;
  width: min(330px, 80%);
}

.event-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.event-list-section {
  padding: 28px 24px 74px;
}

.event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.event-card {
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  min-height: 238px;
  border: 1px solid #dbe7f7;
  border-radius: 8px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 18px 46px rgba(10, 37, 88, 0.08);
}

.event-card:nth-child(2) {
  min-height: 360px;
}

.event-card.featured {
  min-height: 230px;
  background: #08276b;
  color: #ffffff;
}

.event-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 142px;
  margin: 22px 0 4px;
}

.event-card-image img {
  display: block;
  width: min(100%, 310px);
  max-height: 190px;
  object-fit: contain;
}

.event-card-image-coupon img {
  width: min(100%, 360px);
  max-height: 130px;
}

.event-card.featured .event-card-image {
  min-height: 118px;
}

.event-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0b3d91;
  font-size: 14px;
  font-weight: 900;
}

.event-card.featured .event-label {
  background: rgba(255, 255, 255, 0.16);
  color: #8cf2d4;
}

.event-card h2 {
  margin: 18px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.event-card p {
  margin: 16px 0 0;
  color: #5f7089;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.event-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.event-note {
  width: min(1120px, 100%);
  margin: 22px auto 0;
  color: #6a7890;
  font-size: 14px;
  line-height: 1.6;
}

.event-bottom-cta {
  display: flex;
  justify-content: center;
  width: min(1120px, 100%);
  margin: 30px auto 0;
}

.event-bottom-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 8px;
  background: #08276b;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(8, 39, 107, 0.18);
}

.event-bottom-cta a:hover {
  background: #0c347e;
}

@media (max-width: 860px) {
  .event-hero {
    padding-top: 70px;
  }

  .event-hero-inner {
    grid-template-columns: 1fr;
  }

  .event-hero-visual {
    display: none;
  }

  .event-list {
    grid-template-columns: 1fr;
  }

  .event-card.featured {
    grid-column: span 1;
  }

  .event-card {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .event-hero,
  .event-list-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .event-card {
    padding: 24px;
  }

  .event-bottom-cta a {
    width: 100%;
    min-height: 56px;
  }
}
