/* ==========================================================================
   About — history timeline + framed media
   ========================================================================== */
.about__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.timeline{
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item{
  position: relative;
  padding: 0 0 32px 32px;
  border-left: 1px solid var(--border);
}
.timeline-item:last-child{ border-left-color: transparent; padding-bottom: 0; }

.timeline-item::before{
  content: '';
  position: absolute;
  left: -6.5px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--red-500);
  box-shadow: 0 0 12px rgba(255,59,78,.6);
}

.timeline-item time{
  display: block;
  font-weight: 700;
  color: var(--red-400);
  font-size: .85rem;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.timeline-item h3{ font-size: 1.1rem; margin-bottom: 6px; }
.timeline-item p{ color: var(--text-2); font-size: .96rem; }

.about__media{
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-strong);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}

.about__media img{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform .8s var(--ease-out);
}
.about__media:hover img{ transform: scale(1.12); }

.about__media::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,7,.85));
}

.about__media-caption{
  position: absolute;
  left: 24px; right: 24px; bottom: 22px;
  z-index: 2;
  color: #fff;
}
.about__media-caption strong{ font-size: 1.2rem; display: block; }
.about__media-caption span{ font-size: .85rem; color: var(--text-1); }
