/**
 * NB NOW Homepage — Watch section (YouTube RSS, no plugin)
 * Navy #12163d, Signal red #F05144, minimal grid.
 */

.nbnow-watch {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--nb-color-border-subtle, #e5e7eb);
}

.nbnow-watch__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.nbnow-watch__title-link {
  text-decoration: none;
  color: var(--nb-color-navy, #12163d);
}

.nbnow-watch__title-link:hover {
  color: var(--nb-color-accent, #f05144);
}

.nbnow-watch__title {
  font-family: var(--nb-font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
  color: inherit;
}

.nbnow-watch__channel {
  font-family: var(--nb-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--nb-color-accent, #f05144);
  text-decoration: none;
}

.nbnow-watch__channel:hover {
  text-decoration: underline;
}

.nbnow-watch__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .nbnow-watch__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.nbnow-watch__item {
  margin: 0;
}

.nbnow-watch__link {
  display: block;
  text-decoration: none;
  color: var(--nb-color-navy, #12163d);
}

.nbnow-watch__link:hover .nbnow-watch__label {
  color: var(--nb-color-accent, #f05144);
}

.nbnow-watch__link:hover .nbnow-watch__play {
  opacity: 1;
}

.nbnow-watch__thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--nb-color-border-subtle, #e5e7eb);
  border-radius: 2px;
  overflow: hidden;
}

.nbnow-watch__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nbnow-watch__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.nbnow-watch__play::after {
  content: "";
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  clip-path: polygon(36% 0, 36% 100%, 100% 50%);
  margin-left: 6px;
}

.nbnow-watch__label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--nb-font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .nbnow-watch__label {
    font-size: 0.9375rem;
  }
}
