/* ─── MITN Section Header ───────────────────────────────── */
.mitn-sh {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mitn-sh--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mitn-sh__left {
  flex: 1;
  min-width: 0;
}

/* Eyebrow */
.mitn-sh__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #dd3333;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* Title sizes */
.mitn-sh__title {
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
}
.mitn-sh__title--lg  { font-size: clamp(1.25rem, 2vw,  1.5rem); }
.mitn-sh__title--xl  { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
.mitn-sh__title--2xl { font-size: clamp(1.5rem, 3vw,  2.25rem); }
.mitn-sh__title--3xl { font-size: clamp(1.75rem, 4vw,  2.75rem); }

.mitn-sh__title span   { color: #dd3333; }
.mitn-sh__title strong { font-weight: 900; }

/* Subtitle */
.mitn-sh__sub {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}
.mitn-sh--center .mitn-sh__sub {
  margin-inline: auto;
}

/* Link */
.mitn-sh__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #dd3333 !important;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap 0.2s;
}
.mitn-sh__link:hover {
  gap: 10px;
  text-decoration: none !important;
}
.mitn-sh__link svg { flex-shrink: 0; }

.mitn-sh__link-center {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

/* Mobile */
@media (max-width: 640px) {
  .mitn-sh {
    gap: 12px;
  }
  .mitn-sh__link {
    width: 100%;
    justify-content: flex-start;
  }
}
