.video-spotlight {
  padding: 4rem var(--page-gutter);
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-card) 45%);
  border-top: 1px solid var(--color-border);
}

.video-spotlight__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.video-spotlight__head {
  text-align: center;
  margin-bottom: 2rem;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.video-spotlight__kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.video-spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.video-spotlight__lead {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  margin: 0;
}

.video-spotlight__lead a {
  font-weight: 600;
}

.video-spotlight__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
}

.video-spotlight__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-text);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.video-spotlight__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-spotlight__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(145deg, #2a3210 0%, var(--color-primary-dark) 50%, #4d6322 100%);
  color: #fffdf6;
}

.video-spotlight__placeholder-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.video-spotlight__placeholder-text {
  font-size: 0.875rem;
  opacity: 0.9;
  margin: 0 0 1rem;
  max-width: 22rem;
}

.video-spotlight__placeholder-link {
  display: inline-flex;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fffdf6 0%, #f5eedc 100%);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.video-spotlight__placeholder-link:hover {
  text-decoration: none;
  opacity: 0.95;
}

.video-spotlight__panel {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.video-spotlight__caption-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 0.35rem;
}

.video-spotlight__video-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}

.video-spotlight__caption {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0 0 1rem;
  flex: 1;
}

.video-spotlight__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.video-spotlight__btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: rgba(107, 142, 35, 0.1);
  border: 1px solid rgba(107, 142, 35, 0.25);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.video-spotlight__btn:hover {
  background: rgba(107, 142, 35, 0.18);
}

.video-spotlight__counter {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.video-spotlight__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.video-spotlight__thumb {
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.video-spotlight__thumb:hover,
.video-spotlight__thumb.is-active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.video-spotlight__thumb-num {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-primary);
}

.video-spotlight__thumb-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .video-spotlight__stage {
    grid-template-columns: 1fr;
  }

  .video-spotlight__thumbs {
    grid-template-columns: 1fr;
  }
}
