/* Campus Ambassadors — extends landing-home.css */

.amb-page .lh-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

html:not(.lh-nav-solid) .amb-page .lh-nav a[aria-current="page"] {
  color: #fff;
}

html.lh-nav-solid .amb-page .lh-nav a[aria-current="page"] {
  color: var(--act-brand-strong);
}

.amb-page .amb-page-shell.lh-hero-shell {
  padding-bottom: 0;
}

.amb-page .amb-hero {
  min-height: clamp(420px, 62vh, 640px);
}

.amb-hero-inner {
  grid-template-columns: minmax(0, 1fr);
  padding-bottom: clamp(48px, 8vw, 72px);
}

.amb-hero-kicker {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #93c5fd;
}

.amb-hero-copy .lh-hero-lead {
  max-width: 54ch;
}

.amb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.amb-hero-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.amb-main {
  background: var(--lh-surface, #eef1f7);
}

.amb-section {
  padding: clamp(48px, 8vw, 88px) var(--lh-pad, 24px);
}

.amb-section--muted {
  background: #fff;
}

.amb-section-inner {
  max-width: var(--lh-max, 1200px);
  margin: 0 auto;
}

.amb-do-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.amb-do-card {
  padding: 28px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 41, 0.08);
}

.amb-section--muted .amb-do-card {
  background: var(--lh-surface, #eef1f7);
}

.amb-do-card h3 {
  margin: 0 0 10px;
  font-family: var(--lh-display, Bahnschrift, "Aptos Display", sans-serif);
  font-size: 1.25rem;
  color: var(--lh-navy, #0f1729);
}

.amb-do-card p {
  margin: 0;
  color: var(--lh-muted, #64718c);
  line-height: 1.55;
}

.amb-benefit-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.amb-benefit-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 600;
  color: var(--lh-navy, #0f1729);
  line-height: 1.4;
}

.amb-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--act-brand, #2563eb);
}

.amb-note {
  margin: 24px 0 0;
  max-width: 62ch;
  color: var(--lh-muted, #64718c);
  font-size: 0.95rem;
  line-height: 1.5;
}

.amb-apply-wrap {
  max-width: 760px;
}

.amb-form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.amb-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.amb-form label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lh-navy, #0f1729);
}

.amb-form label em {
  font-weight: 500;
  color: var(--lh-muted, #64718c);
  font-style: normal;
}

.amb-form input,
.amb-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(15, 23, 41, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 500;
  color: var(--lh-navy, #0f1729);
  background: #fff;
}

.amb-form textarea {
  resize: vertical;
  min-height: 120px;
}

.amb-form input:focus,
.amb-form textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 1px;
  border-color: var(--act-brand, #2563eb);
}

.amb-form-full {
  display: grid;
}

.amb-form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
}

.amb-form-status.is-ok {
  background: #ecfdf5;
  color: #065f46;
}

.amb-form-status.is-err {
  background: #fef2f2;
  color: #991b1b;
}

.amb-form button[disabled] {
  opacity: 0.65;
  cursor: wait;
}

@media (max-width: 760px) {
  .amb-do-grid,
  .amb-benefit-list,
  .amb-form-grid {
    grid-template-columns: 1fr;
  }

  .amb-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
