.story{
  padding: 100px 5%;
  background: linear-gradient(135deg, #0a1f44, #081733);
  color: white;
}

/* GRID */
.story-container{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* TEXTO */
.story-text h2{
  font-size: 36px;
  margin-bottom: 20px;
}

.story-text p{
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: justify;
  font-size: 16px;
  color: rgba(255,255,255,0.9);
}

/* ========================= */
/* 🎬 VIDEO */
/* ========================= */

.video-box{
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: black;
}

/* 🔥 AQUÍ ESTÁ LA CLAVE */
.video-box video{
  position: absolute;
  top: -8%; /* 👈 sube el video */
  left: 0;

  width: 120%;
  height: 95%; /* 👈 agranda solo vertical */

  object-fit: cover;
}

/* BOTÓN */
.btn-audio{
  position: absolute;
  bottom: 10px;
  right: 10px;

  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

/* ========================= */
/* 🔥 BADGES BONITOS */
/* ========================= */

.story-badges{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 🔥 CADA BADGE */
.badge{
  padding: 12px 15px;

  background: rgba(255,255,255,0.08);
  border-left: 4px solid #8b0000;
  border-radius: 8px;

  font-size: 16px;
  color: white;

  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.badge:hover{
  transform: translateX(5px);
}

/* RESPONSIVE */
@media(max-width: 900px){
  .story-container{
    grid-template-columns: 1fr;
  }
}