/* ── Hero banner ── */

.hero-banner {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  margin-bottom: 0;
  border-top: 5px solid var(--muted);
  border-bottom: 5px solid var(--muted);
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(25, 40, 65, 0.72) 0%,
    rgba(25, 40, 65, 0.18) 55%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
}

.hero-banner-text {
  padding-bottom: 2rem;
  color: #ffffff;
}

.hero-banner-label {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: .3rem;
}

.hero-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.15;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero-banner-credit {
  position: absolute;
  bottom: .5rem;
  right: .75rem;
  font-size: .65rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: .04em;
}

@media (max-width: 767px) {
  .hero-banner { height: 260px; }
  .hero-banner-title { font-size: 1.6rem; }
}

/* ── Key dates bar ── */

.key-dates-bar {
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 12px 12px;
  background: var(--card-bg);
  padding: 1rem 1.5rem 1.25rem;
}

.key-dates-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .9rem;
}

.key-dates-heading-label {
  font-family: 'Playfair Display', serif;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.key-dates-all {
  font-size: .8rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .04em;
}

.key-dates-all:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}

.key-dates-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: .75rem;
}

.key-date-item {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  flex: 1 1 0;
  min-width: 120px;
}

.key-date-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-weight: 600;
}

.key-date-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.2;
}

.key-date-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 1rem;
  align-self: center;
}

@media (max-width: 575px) {
  .key-date-divider { display: none; }
  .key-date-item { min-width: 45%; }
}


/* ── ISCA card ── */

.isca-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.isca-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #f0f4f9;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.isca-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0 0 .1rem;
}

.isca-card-subtitle {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: .02em;
}

.isca-card-body {
  padding: 1.25rem 1.5rem;
  font-size: .975rem;
  line-height: 1.75;
}

