


.times-square-spotlight-section {
  background-color: #ffffff;
  color: #000000;
  /* padding: clamp(48px, 7vw, 80px) 0; */
  /* padding: clamp(24px, 3vw, 40px) 0; */
  padding: 40px 0px 80px 0px;
  font-family: "Playfair Display", serif;
}

.times-square-spotlight-section * {
  font-family: "Playfair Display", serif;
}

/* ----- Header ----- */
.times-square-spotlight-header {
  margin-bottom: clamp(28px, 4vw, 50px);
}

.times-square-spotlight-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f6823d;
  margin-bottom: 14px;
}

.times-square-spotlight-headline {
  font-size:28px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
  color: #004a80;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.times-square-spotlight-headline-accent {
  display: inline-block;
  margin-top: 6px;
  color: #000000;
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* ----- Video ----- */
.times-square-spotlight-video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.times-square-spotlight-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
  border: 1px solid #004a80;
  box-shadow: 0 10px 40px rgba(0, 74, 128, 0.18);
}

.times-square-spotlight-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

.times-square-spotlight-video-caption {
  margin-top: 14px;
  font-size: 14px;
  color: #5d5d5d;
  text-align: center;
  /* font-style: italic; */
}

/* ----- Pull-quote ----- */
.times-square-spotlight-quote {
  border-left: 4px solid #f6823d;
  padding: 6px 0 6px 22px;
  margin: 0 0 30px;
}

.times-square-spotlight-quote-text {
  /* font-size: clamp(15px, 1.1vw, 16px); */
  font-size:16px;
  line-height: 1.65;
  color: #000;
  margin: 0 0 16px;
}

.times-square-spotlight-quote-text:last-of-type {
  margin-bottom: 14px;
}

.times-square-spotlight-quote-cite {
  display: block;
  font-style: normal;
  font-size: 14px;
  color: #004a80;
  letter-spacing: 0.02em;
  font-weight: bold;
}

/* ----- Button ----- */
.times-square-spotlight-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.times-square-spotlight-cta-button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 13px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 0;
  transition: color 0.4s ease;
  z-index: 1;
}

.times-square-spotlight-cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #004a80;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: -1;
}

.times-square-spotlight-cta-button:hover {
  color: #fff;
}

.times-square-spotlight-cta-button:hover::before {
  transform: scaleY(1);
}

/* ----- Mobile tweaks (Bootstrap lg breakpoint) ----- */
@media (max-width: 991.98px) {
  .times-square-spotlight-quote {
    padding-left: 18px;
  }
  .times-square-spotlight-cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .times-square-spotlight-video-caption {
    font-size: 13px;
  }
  .times-square-spotlight-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}
