/* GOSHIP Videos — list + single */

.videos-hero .videos-hero__subtitle {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.videos-list {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.videos-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.videos-filters button {
  padding: 0.4rem 0.95rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.videos-filters button.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.videos-filters button:hover:not(.is-active) {
  border-color: #c01400;
  color: #c01400;
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .videos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .videos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.videos-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.videos-card:hover {
  border-color: #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.videos-card[hidden] {
  display: none;
}

.videos-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a1a1a;
}

.videos-card__media img,
.videos-card__media-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videos-card__media-fallback {
  background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
}

.videos-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: rgba(192, 20, 0, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.videos-card__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.55rem 0 0.55rem 0.9rem;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}

.videos-card__media:hover .videos-card__play {
  transform: scale(1.06);
  background: #c01400;
}

.videos-card__duration {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}

.videos-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #111;
}

.videos-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1rem 1.15rem;
}

.videos-card__cat {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #c01400;
}

.videos-card__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
}

.videos-card__title a {
  color: inherit;
  text-decoration: none;
}

.videos-card__title a:hover {
  color: #c01400;
}

.videos-card__tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #6b7280;
}

.videos-empty {
  margin: 2rem 0;
  text-align: center;
  color: #6b7280;
}

/* Single */

.videos-single__player-wrap {
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
  background: #0f0f0f;
}

.videos-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #000;
}

.videos-player iframe,
.videos-player__video,
.videos-player img {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.videos-player--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #9ca3af;
}

.videos-player--empty img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.videos-single__content {
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(3rem, 6vw, 4rem);
}

.videos-single__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .videos-single__layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    align-items: start;
  }
}

.videos-single__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: #6b7280;
}

.videos-single__crumb a {
  color: #c01400;
  text-decoration: none;
}

.videos-single__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #111;
}

.videos-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  color: #6b7280;
}

.videos-single__tagline {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #374151;
}

.videos-single__body {
  font-size: 1rem;
  line-height: 1.7;
  color: #262626;
}

.videos-single__body p:first-child {
  margin-top: 0;
}

.videos-single__aside-title {
  margin: 0 0 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #111;
}

.videos-single__related {
  display: grid;
  gap: 1rem;
}

.videos-single__related .videos-card__title {
  font-size: 0.95rem;
}

.videos-single__all {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c01400;
  text-decoration: none;
}

.videos-single__all:hover {
  text-decoration: underline;
}
