.featured-videos {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: #0a0e14; /* Very deep dark charcoal/blue */
  color: #ffffff;
}

.featured-videos__container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.featured-videos__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  gap: 1rem;
}

.featured-videos__title {
  margin: 0;
  font-family:
    "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
}

.featured-videos__cta {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border: 1px solid #b7cce8;
  color: #ffffff;
  font-size: 16px;
  font-family: "Neuzeit Grotesk", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 17.6px;
  letter-spacing: 0.8px;
  word-wrap: break-word;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.featured-videos__cta:hover {
  background: #b7cce8;
  color: #0a0e14;
  border-color: #b7cce8;
}

/* Grid Layout */
.featured-videos__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

/* Common Video Styles */
.featured-videos__thumb-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 1.5rem;
}

.featured-videos__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.featured-videos__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.3s ease;
  opacity: 0.8;
}

.featured-videos__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.featured-videos__thumb-link:hover .featured-videos__thumb img {
  transform: scale(1.05);
  opacity: 1;
}

.featured-videos__thumb-link:hover .featured-videos__play-icon {
  background: #ffffff;
  color: #000000;
  transform: translate(-50%, -50%) scale(1.1);
}

.featured-videos__video-title {
  margin: 0 0 0.5rem;
  color: #b7cce8;
  font-size: 23px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 25.3px;
  word-wrap: break-word;
}

.featured-videos__video-desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 35rem;
}

/* Cards */
.featured-videos__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (max-width: 1024px) {
  .featured-videos__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 650px) {
  .featured-videos__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .featured-videos__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
