/* GT AFRIK — About: story, timeline, advantages, founder quote */

.about-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.about-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.about-story__media {
  height: 420px;
  border-radius: 20px;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 18px 0 20px;
  color: var(--color-text);
}

.about-heading--tight {
  margin-bottom: 0;
}

.about-heading--lg {
  font-size: clamp(30px, 3.2vw, 46px);
  margin-bottom: 0;
}

.about-text {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--color-text-body);
  margin: 0 0 18px;
}

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

/* ── timeline band ── */
.timeline-band {
  padding: 110px 32px;
  background: #060a14;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 32px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline__item {
  padding-right: 28px;
}

.timeline__rule {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.timeline__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.timeline__item--green .timeline__dot,
.timeline__item--green .timeline__year {
  background: var(--color-running);
  color: var(--color-running);
}

.timeline__item--green .timeline__year {
  background: none;
}

.timeline__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline__year {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  margin: 0 0 10px;
}

.timeline__title {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px;
}

.timeline__desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--color-text-body);
  margin: 0;
}

/* ── founder quote ── */
.founder {
  background: linear-gradient(135deg, #0c1428 0%, #0a0f1e 100%);
  border: 1px solid rgba(56, 102, 255, 0.2);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 64px);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: center;
}

.founder__media {
  width: 120px;
  height: 120px;
  border-radius: 26.8px;
  overflow: hidden;
  border-bottom: none;
  padding: 12px;
}

.founder__media .img-slot__hint {
  font-size: 8px;
  letter-spacing: 0.12em;
}

.founder__quote {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--color-text);
  margin: 0 0 20px;
}

.founder__name {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.founder__role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
}

@media (max-width: 620px) {
  .founder {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-story__media {
    height: 300px;
  }

  .timeline-band {
    padding: 80px 24px;
  }
}
