/* ABOUT PAGE */
.story {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.story-media img {
  filter: brightness(0.8);
  width: 100%;
}

.story-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--red);
  color: #fff;
  padding: 16px 22px;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.3;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.story-content h2 {
  font-size: 34px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.story-content p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.stats-strip {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-strip-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 44px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-block .sicon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
}

.stat-block .snum { font-size: 26px; font-weight: 900; line-height: 1; }

.stat-block .slabel { font-size: 12.5px; color: var(--text-dim); margin-top: 6px; }

.mv {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 40px;
}

.mv-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.mv-head h2 {
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mv-head p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.7;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}

.mv-card {
  background: var(--bg-panel);
  padding: 44px 40px;
}

.mv-card .micon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--red);
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.mv-card p {
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.75;
}

.values {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 40px 90px;
}

.values-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.values-head h2 {
  font-size: 34px;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--border);
  gap: 0;
}

.value-card {
  background: var(--bg-panel);
  padding: 34px 28px;
  border: 1px solid var(--border);
  margin-left: -1px;
  margin-top: -1px;
}

.value-card .vicon {
  width: 44px;
  height: 44px;
  border: 2px solid var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 1.3;
}

.value-card p {
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.6;
}

.timeline-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 40px 90px;
}

.timeline-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.timeline-head h2 {
  font-size: 34px;
  text-transform: uppercase;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tl-item {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 28px 24px;
}

.tl-item .tl-year {
  font-size: 26px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 12px;
}

.tl-item h4 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tl-item p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .story { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}
