/* Newsletter signup bar */
.newsletter-signup__form--simple {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.newsletter-signup__input {
  padding: 0.6rem 1rem;
  border: 2px solid var(--brand, #009FE3);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 0.9rem;
  min-width: 240px;
  outline: none;
}

.newsletter-signup__input:focus {
  background: rgba(255,255,255,0.05);
}

.block-hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-hero__content {
  width: 100%;
}

.portfolio-card {
  aspect-ratio: 1 / 1;
}

/* Streaming carousel */
.streaming-carousel {
  margin: 1.5rem 0;
}

.streaming-carousel__tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.streaming-carousel__tab {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--brand, #009FE3);
  border-radius: 999px;
  background: transparent;
  color: var(--brand, #009FE3);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.streaming-carousel__tab--active,
.streaming-carousel__tab:hover {
  background: var(--brand, #009FE3);
  color: #fff;
}

.streaming-carousel__frame {
  display: none;
}

.streaming-carousel__frame--active {
  display: block;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .video-grid { grid-template-columns: repeat(3, 1fr); }
}

.video-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-secondary, #1e293b);
  transition: transform 0.2s;
}

.video-card__link:hover { transform: translateY(-3px); }

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.video-card__link:hover .video-card__thumb img { opacity: 1; }

.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.video-card__body {
  padding: 0.75rem 1rem;
}

.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}

.video-card__date {
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* Video single page */
.video-detail__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  margin-bottom: 1.5rem;
}

.video-detail__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-detail__description {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.video-detail__footer {
  margin-top: 2rem;
}

.video-detail__linkout {
  position: relative;
  margin-bottom: 1.5rem;
  text-align: center;
}

.video-detail__thumb {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.video-detail__watch-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
}
