.about-hero {
  position: relative;
  min-height: clamp(250px, 34vw, 390px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(95deg, rgba(11, 15, 23, 0.86), rgba(11, 15, 23, 0.76)),
    url("../assets/images/home/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.about-hero-inner {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 2rem;
  padding-inline: clamp(1rem, 5vw, 5.5rem);
}

.about-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
}

.about-hero-copy h1 {
  margin-top: 0.55rem;
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1;
}

.about-breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.35rem;
  font-family: "Space Grotesk", sans-serif;
}

.about-breadcrumbs a {
  color: inherit;
}

.about-main {
  padding-inline: clamp(0.6rem, 2.4vw, 2.2rem);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.aggregator-note {
  margin-bottom: 1rem;
  border-left: 5px solid #e70842;
}

.aggregator-note h2 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.4rem;
}

.aggregator-note p {
  color: var(--muted);
}

.timeline h2 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 1rem;
  color: #141924;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.timeline-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.timeline-item {
  position: relative;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  border-radius: 14px 14px 0 0;
  background: linear-gradient(90deg, #e70842, #bf0833);
}

.timeline-item:hover {
  border-color: #f0cad7;
  box-shadow: 0 18px 28px -24px rgba(0, 0, 0, 0.35);
}

.timeline-item span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  color: #fff;
  background: #e70842;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px #f1f1f1;
}

.timeline-item h3 {
  font-family: "Space Grotesk", sans-serif;
  color: #161b25;
  margin-bottom: 0.35rem;
}

.timeline-item p {
  color: #666d75;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .about-hero-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 2.2rem;
    padding-inline: clamp(0.7rem, 3.2vw, 1.4rem);
  }

  .about-breadcrumbs {
    font-size: 1.05rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .timeline-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 220px;
    background:
      linear-gradient(95deg, rgba(11, 15, 23, 0.9), rgba(11, 15, 23, 0.8)),
      url("../assets/images/home/hero-bg.jpg");
    background-position: 64% center;
  }

  .about-hero-kicker {
    font-size: 0.82rem;
  }

  .about-breadcrumbs {
    font-size: 0.95rem;
  }
}
