/* ============================================
   home_block_7 — APUESTAS EN VIVO Y STREAMING
   3-feature strip with center highlight + cinematic pull-quote
   ============================================ */

.home_block_7 {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.home_block_7::before {
  content: "";
  position: absolute;
  top: 30%;
  left: -10rem;
  width: 50rem;
  height: 50rem;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.home_block_7::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -10rem;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.18) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.home_block_7_inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.home_block_7_head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.home_block_7_title > .text-accent {
  color: var(--accent);
}

.home_block_7_lead {
  color: var(--text-muted);
}

/* ===== Feature strip ===== */
.home_block_7_strip {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.home_block_7_feature {
  background: var(--bg-surface);
  border: 1px solid var(--bg-line);
  border-radius: var(--radius-lg);
  padding: 3rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.home_block_7_feature:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 24px var(--accent-glow);
}

.home_block_7_feature_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 1.8rem;
  font-weight: 700;
  align-self: flex-start;
}

.home_block_7_feature_title {
  margin-top: 0.3rem;
}

.home_block_7_feature_desc {
  color: var(--text-muted);
}

/* ===== Center highlighted feature ===== */
.home_block_7_feature--highlight {
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
  border-color: var(--accent);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 50px var(--accent-glow);
  transform: translateY(-1.5rem);
}

.home_block_7_feature--highlight:hover {
  transform: translateY(-2.5rem);
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    0 0 60px var(--accent-glow-strong);
}

.home_block_7_feature--highlight > .home_block_7_feature_icon {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent-bright);
  box-shadow: 0 0 20px var(--accent-glow-bright);
}

.home_block_7_feature--highlight > .home_block_7_feature_title {
  color: var(--accent-bright);
}

/* ===== Closing pull-quote ===== */
.home_block_7_quote {
  position: relative;
  display: flex;
  gap: 2.5rem;
  padding: 3.2rem 3.4rem 3.2rem 4.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--accent-soft) 0%, transparent 70%),
    var(--bg-surface);
  border: 1px solid var(--accent-line-mid);
  align-items: center;
  overflow: hidden;
}

.home_block_7_quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 50%, var(--accent-2) 100%);
}

.home_block_7_quote_diamond {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  transform: rotate(45deg);
  box-shadow: 0 0 18px var(--accent-glow-bright);
}

.home_block_7_quote_text {
  color: var(--text);
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.home_block_7_cta {
  justify-content: center;
  margin-top: 0;
}

/* ============================================
   Mobile — ≤1024px
   ============================================ */
@media (max-width: 1024px) {
  .home_block_7_inner {
    gap: 6rem;
  }

  .home_block_7_head {
    text-align: left;
    align-items: flex-start;
  }

  .home_block_7_strip {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .home_block_7_feature {
    padding: 4rem 3rem;
    gap: 2rem;
    border-radius: var(--radius);
  }

  .home_block_7_feature--highlight {
    transform: none;
  }

  .home_block_7_feature--highlight:hover {
    transform: translateY(-1rem);
  }

  .home_block_7_feature_icon {
    width: 7rem;
    height: 7rem;
    font-size: 3.4rem;
    border-radius: var(--radius-sm);
  }

  .home_block_7_feature_desc {
    font-size: 2.4rem;
    line-height: 1.55;
  }

  .home_block_7_quote {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding: 3.5rem 3rem 3.5rem 4rem;
    border-radius: var(--radius);
  }

  .home_block_7_quote_diamond {
    width: 3rem;
    height: 3rem;
  }

  .home_block_7_quote_text {
    font-size: 3rem;
    line-height: 1.4;
  }
}
