/* ══════════════════════════════════════════════════════
   NEWSLETTER PAGE
   Extends the existing theme (uses --primary-blue, --primary-orange,
   --primary-dark, --text-gray, --bg-light, --light-clr, --fs-* vars
   already defined in css/style.css). All new selectors are namespaced
   with "nl-" so nothing here overrides existing site styles.
   ══════════════════════════════════════════════════════ */

/* ── BANNER (matches .about-banner / .college_space pattern) ── */
.newsletter-banner {
  background-image: url(../newsletter/newsletter.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0;
  align-content: center;
  background-position: center;
  position: relative;
}

.newsletter-banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, rgb(13 11 58 / 67%) 0%, rgba(13, 11, 58, 0.80) 45%, rgb(13 11 58 / 52%) 75%, rgb(13 11 58 / 68%) 100%);
}

.newsletter-banner a {
  color: white;
  text-decoration: none;
}

.nl-issue-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 168, 36, 0.15);
  border: 1px solid rgba(249, 168, 36, 0.4);
  color: var(--primary-orange);
  font-size: var(--fs-x-small);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

/* ── OPENING QUOTE ── */
.nl-quote-section {
  background: var(--bg-light);
  padding: 90px 0 80px;
  text-align: center;
}

.nl-quote-mark {
  font-family: Georgia, serif;
  font-size: 64px;
  color: var(--primary-orange);
  opacity: .5;
  line-height: 1;
  display: block;
  margin-bottom: -6px;
}

.nl-quote-text {
  font-size: 45px;
  font-weight: 700;
  color: var(--primary-dark);
  max-width: 630px;
  /* margin: 0 auto 22px; */
  line-height: 1.55;
  text-align: left;
}

.nl-quote-text em {
  color: var(--primary-orange);
  font-style: italic;
}

.nl-quote-attr {
  font-size: var(--fs-small);
  color: var(--text-gray);
  font-weight: 600;
  text-align: left;
}

.nl-quote-sub {
  max-width: 640px;
  /* margin: 22px auto 0; */
  color: var(--text-gray);
  font-size: var(--fs-small);
  line-height: 1.8;
  text-align: left;
}

/* ── DIRECTOR'S DESK ── */
.nl-director-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.nl-director-card {
  background: var(--primary-blue);
  border-radius: 20px;
  padding: 34px 30px;
  color: #fff;
  position: sticky;
  top: 100px;
}

.nl-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-orange), #e6940d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.nl-director-card .nl-who {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.nl-director-card .nl-role {
  font-size: 12.5px;
  color: var(--primary-orange);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .02em;
}

.nl-director-card .nl-org {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.nl-director-body p {
  color: var(--text-gray);
  font-size: var(--fs-small);
  margin-bottom: 18px;
  line-height: 1.8;
}

.nl-director-body p:last-of-type {
  margin-bottom: 0;
}

.nl-signoff {
  margin-top: 24px;
  font-style: italic;
  color: var(--primary-blue);
  font-size: 19px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .nl-director-grid {
    grid-template-columns: 1fr;
  }

  .nl-director-card {
    position: static;
  }
}

/* ── TIMELINE / "THIS QUARTER'S TRAIL" ── */
.nl-timeline {
  position: relative;
  padding-left: 56px;
}

.nl-timeline-svg {
  position: absolute;
  left: 23px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  z-index: 0;
}

.nl-timeline-bg {
  stroke: #e2e8f0;
  stroke-width: 2;
}

.nl-timeline-progress {
  stroke: var(--primary-orange);
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset .1s linear;
}

.nl-milestone {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.nl-milestone:last-child {
  margin-bottom: 0;
}

.nl-milestone-node {
  position: absolute;
  left: -56px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--primary-blue);
  box-shadow: 0 0 0 5px rgba(249, 168, 36, 0.15);
  z-index: 1;
}

.nl-milestone-card {
  background: #fff;
  border: 1.5px solid #e8edf5;
  border-radius: 20px;
  padding: 30px 32px;
  box-shadow: 0 4px 20px rgba(30, 27, 110, 0.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.nl-milestone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(30, 27, 110, 0.10);
  border-color: #c7cff0;
}

.nl-milestone-date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--primary-orange);
  display: block;
  margin-bottom: 8px;
}

.nl-milestone-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: rgba(30, 27, 110, 0.08);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.nl-milestone-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
  line-height: 1.35;
}

.nl-milestone-card p {
  font-size: var(--fs-small);
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.nl-milestone-card p:last-child {
  margin-bottom: 0;
}

.nl-milestone-media {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nl-milestone-media figure+figure {
  margin-top: 16px;
}

.nl-milestone-media figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8edf5;
}

.nl-milestone-media img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.nl-milestone-media figure:hover img {
  transform: scale(1.06);
}

.nl-milestone-media figcaption {
  font-size: 12px;
  color: var(--text-gray);
  padding: 8px 12px;
  background: #f8fafc;
}

.nl-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.nl-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
}

.nl-pill.active {
  background: rgba(249, 168, 36, 0.15);
  color: #b45309;
}

@media (max-width: 767px) {
  .nl-timeline {
    padding-left: 44px;
  }

  .nl-milestone-node {
    left: -44px;
    width: 38px;
    height: 38px;
    font-size: 12px;
  }

  .nl-milestone-media {
    margin-top: 4px;
  }

  .nl-milestone-media img {
    height: 220px;
  }

  .nl-milestone-card {
    padding: 24px 20px;
  }

  .nl-director-card {
    padding: 28px 24px;
  }
}

@media (max-width: 575px) {
  .nl-quote-section {
    padding: 60px 0 56px;
  }

  .nl-quote-mark {
    font-size: 46px;
  }

  .nl-quote-text {
    font-size: 24px !important;
  }

  .nl-quote-sub {
    font-size: var(--fs-x-small);
  }

  .nl-milestone-card {
    padding: 20px 16px;
  }

  .nl-milestone-card h3 {
    font-size: 18px;
  }

  .nl-milestone-media img {
    height: 200px;
  }

  .nl-closing-line {
    font-size: 17px;
    margin-top: 40px;
  }
}

/* ── CLOSING LINE ── */
.nl-closing-line {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-dark);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.65;
  margin-top: 40px;
}

.nl-closing-line .hl {
  color: var(--primary-orange);
}

.looking-ahead {
  position: relative;
}

.looking-ahead .ahead-clock {
 position: absolute;
    left: -150px;
    width: 550px;
    height: 550px;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
    top: 36px;
}

/* ==========================
   Clock Rotation Animation
========================== */

@keyframes clockMinuteSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Looking Ahead Clock */
#aheadClockMinuteHand {
  transform-origin: 0px 123px;
  transform-box: fill-box;
  animation: clockMinuteSpin 150s linear infinite;
}

/* Hero Compass */
.hero-compass {
  position: relative;
  transition: transform .25s ease-out;
  will-change: transform;
}