/* Constrained hero with cacao gradient */
.full-page-hero{
  position:relative;
  color:#fff;
  padding: clamp(2rem, 4vw, 3rem) 1rem;
  background:
	radial-gradient(900px 500px at 115% 120%, rgba(247,181,58,.10), transparent 55%),
	radial-gradient(1100px 600px at -10% -10%, rgba(255,255,255,.06), transparent 60%),
	linear-gradient(165deg, var(--ehca-plum) 0%, var(--ehca-plum-dk) 100%);
  max-width: 1100px;  /* constrain section itself */
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

/* Left card — stretch to full column height */
.general-card{
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  padding: clamp(1.1rem, 2.4vw, 1.8rem) clamp(1.2rem, 2.8vw, 2rem);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  height: 100%;            /* fill the grid row height */
  font-weight: 800;
  font-size: 1.1rem;
}
.general-card a{
	color: var(--ehca-gold);
	text-decoration: none;
}
.general-card .eyebrow{
  display:inline-block;
  background: rgba(253,231,184,.18);
  color: var(--ehca-gold);
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:.28rem .62rem;
  border-radius:999px;
  font-size:.92rem;
  margin-bottom:.7rem;
}
.general-card h1{
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 2.4rem);
  line-height:0.9;
  margin:.1rem 0 .8rem;
  text-shadow: 0 1px 0 rgba(255,255,255,.08), 0 14px 28px rgba(0,0,0,.35);
}

/* Gold underline as an <hr> after the time row */
.gold-hr{
  height: 3px;
  border: 0;
  width: 240px;
  background: linear-gradient(90deg, var(--ehca-gold), rgba(247,181,58,0));
  border-radius: 2px;
  margin: .4rem 0 0;
}

.terms-service {
	background-color:white;
	color:black;
	padding-left:30px;
	margin: 2rem;
	border-radius:18px;
}
.terms-service p{
	padding:1.2rem;
}

.terms-service ul{
	padding-left:4rem;
}

/* Mobile tweaks */
@media (max-width: 980px){
	.terms-service {
		padding-left:5px;
		margin: 0.1rem;
	}
	.terms-service ul{
		padding-left:1rem;
	}
}
