.alta-videos {
  position: relative;
  width: 100%;
  color: #fff;
  font-family: Satoshi, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.alta-videos__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 24px 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.alta-videos__title {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
  color: #fff;
}

.alta-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.alta-videos__card {
  position: relative;
  aspect-ratio: 10 / 9;
  border-radius: 16px;
  border: 1px solid rgba(124, 108, 240, 0.55);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alta-videos__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.alta-videos__thumb--placeholder {
  background: linear-gradient(135deg, #1a1438, #0a0716);
}

.alta-videos__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.42);
}

.alta-videos__card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 24px;
  text-align: center;
}

.alta-videos__card-title {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.15;
  font-weight: 500;
  color: #fff;
}

.alta-videos__watch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border: 0;
  border-radius: 9999px;
  background: #fff;
  color: #0a0a14;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.alta-videos__watch:hover:not(:disabled) {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.alta-videos__watch:disabled {
  opacity: 0.5;
  cursor: default;
}

.alta-videos__channel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 9999px;
  background: #fff;
  color: #0a0a14;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.alta-videos__channel:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.alta-videos__channel svg {
  display: block;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .alta-videos__inner {
    padding: 64px 16px 80px;
    gap: 40px;
  }
  .alta-videos__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .alta-videos__card {
    aspect-ratio: 16 / 9;
  }
  .alta-videos__card-content {
    gap: 16px;
  }
}

