.events-shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  background: #f7fbf9;
}

.events-hero {
  background: linear-gradient(135deg, #0a211b, #0d2e25 60%, #0a211b);
  color: #e8f5ef;
  border-radius: 18px;
  padding: clamp(1.2rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
}

.hero-text h1 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
}

.lead {
  margin: 0;
  color: #cde9e0;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #b7e0d5;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00624d, #19a186);
  color: #f7fbf9;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 98, 77, 0.3);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-primary.ghost {
  background: transparent;
  color: #00624d;
  border: 1px solid rgba(0, 98, 77, 0.3);
  box-shadow: none;
}

.btn-red {
  background: #b91c1c;
  color: #fff;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-red:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(185, 28, 28, 0.25);
}

.events-table {
  background: #ffffff;
  border: 1px solid rgba(0, 98, 77, 0.08);
  border-radius: 14px;
  padding: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 10px 24px rgba(10, 33, 27, 0.06);
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  min-width: 680px;
}

.plans-table th,
.plans-table td {
  border: 1px solid rgba(0, 98, 77, 0.12);
  padding: 10px 12px;
  text-align: left;
}

.plans-table th {
  background: rgba(0, 98, 77, 0.08);
  color: #0b1f1a;
  font-weight: 700;
}

.plans-table tbody tr:hover {
  background: rgba(0, 98, 77, 0.04);
}

.plans-table td a {
  color: #00624d;
  text-decoration: none;
  font-weight: 700;
}

.plans-table td a:hover {
  text-decoration: underline;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 98, 77, 0.12);
  color: #0b1f1a;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .events-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .plans-table {
    font-size: 0.92rem;
  }
}
