.mv-block {
  padding: 96px 0;
  background: #ffffff;
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
}

.mv-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

/* ---------- Media ---------- */
.mv-media {
  position: relative;
}

.mv-media__frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
  z-index: 2;
}

.mv-video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mv-media__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}

.mv-media__accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: #af281e;
  z-index: 3;
}

.mv-media__deco {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 55%;
  height: 55%;
  border: 3px solid #af281e;
  border-radius: 8px;
  opacity: .35;
  z-index: 1;
}

/* ---------- Contenido ---------- */
.mv-eyebrow {
  margin: 0 0 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #af281e;
}

.mv-title {
  margin: 0 0 32px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 900;
  color: #1a1a1a;
  position: relative;
  padding-bottom: 24px;
  text-transform: none;
}

.mv-title__hl {
  display: block;
  color: #7d201c !important;
  margin-top: 6px;
  font-weight: 700;
}

.mv-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 68px;
  height: 4px;
  background: #af281e;
}

.mv-text p {
  margin: 0 0 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 20px !important;
  font-weight: 500 !important;
  line-height: 1.7;
  color: #1a1a1a !important;
}
}

.mv-text p:last-child {
  margin-bottom: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .mv-block {
    padding: 64px 0;
  }

  .mv-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .mv-video {
    aspect-ratio: 16 / 9;
  }

  .mv-media__deco {
    display: none;
  }

  .mv-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .mv-block {
    padding: 48px 0;
  }

  .mv-title {
    font-size: 27px;
  }

  .mv-text p {
    font-size: 16px;
  }
}