/* ==========================================================================
   MJL Home — About / More Than Just A Game
   Card layout: mjl-image-cards.css (.mjl-image-card-grid)
   ========================================================================== */

.home-about-section {
  background: #020806;
  padding: 88px 0 0;
}

.home-about-section::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.15), transparent);
  margin-top: 10px;
  margin-bottom: 20px;
}

.home-about-layout {
  display: grid;
  grid-template-columns: 32% 68%;
  gap: 28px;
  align-items: stretch;
}

.home-about-copy {
  display: flex;
  flex-direction: column;
  max-width: 360px;
  padding-top: 8px;
  height: 100%;
}

.home-about-eyebrow {
  margin-bottom: 18px;
  color: #00ff88;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-about-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(2.11rem, 3.7vw, 3.17rem);
  line-height: 0.92;
  letter-spacing: -0.5px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-about-title-line {
  display: block;
}

.home-about-title-line:last-of-type {
  white-space: nowrap;
}

.home-about-title-accent {
  color: #00ff88;
  text-shadow: 0 0 28px rgba(0, 255, 136, 0.35);
}

.home-about-text {
  margin: 0 0 24px;
  max-width: 290px;
  color: #b8c5bd;
  font-size: 1rem;
  line-height: 1.65;
}

.home-about-btn {
  min-width: 168px;
  margin-top: auto;
}

@media (max-width: 1023px) {
  .home-about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .home-about-copy {
    max-width: none;
    height: auto;
  }

  .home-about-btn {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .home-about-section {
    padding: 64px 0 0;
  }

  .home-about-title {
    font-size: clamp(1.76rem, 9.7vw, 2.46rem);
  }
}
