/* ==========================================================
   Enlight Runway 1331 - About Us Stylesheet
   ========================================================== */

.story-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.story-card-grid.reverse {
  direction: rtl;
}

.story-card-grid.reverse > * {
  direction: ltr;
}

.story-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  position: relative;
}

.story-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.story-card-grid:hover .story-img-wrap img {
  transform: scale(1.03);
}

.story-text h2 {
  font-family: var(--disp);
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.25;
}

.story-text p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
  padding: 36px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.stat-item {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-val {
  font-family: var(--disp);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--tangerine);
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.story-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.story-cta-row .btn {
  padding: 10px 22px;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .story-card-grid,
  .story-card-grid.reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr !important;
  }

  .story-img-wrap img {
    height: 260px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .story-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .story-cta-row .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 16px;
  }

  .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
