/* ============================================================
   GDB INTERNATIONAL SCHOOL — ABOUT PAGE STYLES
   ============================================================ */

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 480px;
  max-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.page-hero:hover .page-hero-bg img { transform: scale(1); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,30,10,0.92) 0%, rgba(10,30,10,0.72) 55%, rgba(150,10,10,0.3) 100%);
}
.page-hero-content {
  position: relative; z-index: 10;
  max-width: 1440px; width: 100%; margin: 0 auto;
  padding: 0 clamp(28px,7vw,100px);
}
.ph-breadcrumb {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 20px;
}
.ph-breadcrumb a { color: var(--green); transition: color 0.2s; }
.ph-breadcrumb a:hover { color: var(--green-bright); }
.ph-breadcrumb i { font-size: 0.55rem; color: rgba(255,255,255,0.3); }
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 18px;
}
.ph-title em { font-style: italic; color: var(--green); }
.ph-sub {
  font-family: var(--font-body); font-size: clamp(0.95rem,1.5vw,1.1rem);
  color: rgba(255,255,255,0.75); max-width: 560px;
  line-height: 1.75; margin-bottom: 28px;
}
.ph-tags {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.ph-tags span {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 7px 16px; border-radius: 100px;
}
.ph-tags i { color: var(--green); }
.page-hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 10; color: rgba(255,255,255,0.4); font-size: 1rem;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%,100%{transform: translateX(-50%) translateY(0)}
  50%{transform: translateX(-50%) translateY(8px)}
}

/* ── QUICK STATS BAR ── */
.quick-stats {
  background: var(--green-dim);
  border-bottom: 2px solid rgba(26,122,26,0.3);
}
.qs-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 clamp(20px,4vw,56px);
  display: flex; align-items: center;
  justify-content: space-around; flex-wrap: wrap;
}
.qs-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px; text-align: center; gap: 6px;
}
.qs-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,3.5vw,3rem);
  font-weight: 900; color: var(--yellow);
  line-height: 1;
}
.qs-num-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.6rem,2.5vw,2.2rem);
  font-weight: 900; color: var(--yellow);
}
.qs-label {
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 6px;
}
.qs-label i { color: var(--green); }
.qs-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── SECTION DARK (Story) ── */
.section-dark {
  background: var(--black);
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px);
}
.sd-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.sd-img-stack {
  position: relative; height: 560px;
}
.sd-main-img {
  position: absolute; top: 0; left: 0;
  width: 78%; height: 85%;
  object-fit: cover; border-radius: var(--rlg);
  box-shadow: var(--shadow-dark);
}
.sd-accent-img {
  position: absolute; bottom: 0; right: 0;
  width: 56%; height: 52%;
  object-fit: cover; border-radius: var(--rlg);
  border: 4px solid var(--black);
  box-shadow: var(--shadow-dark);
}
.sd-years-badge {
  position: absolute; top: 28px; right: 28px; z-index: 5;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--green); color: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-green);
}
.syb-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 900; line-height: 1;
}
.syb-text {
  font-family: var(--font-sans); font-size: 0.52rem; font-weight: 700;
  letter-spacing: 1px; text-align: center; line-height: 1.3; margin-top: 2px;
}
.sd-heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem,3vw,2.8rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 20px;
}
.sd-heading em { font-style: italic; color: var(--green); }
.sd-lead {
  font-family: var(--font-body); font-size: 1.05rem;
  color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 16px;
}
.sd-body {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--light-grey); line-height: 1.8; margin-bottom: 16px;
}
.sd-quote {
  border-left: 3px solid var(--green);
  padding: 20px 24px; margin-top: 28px;
  background: rgba(26,122,26,0.06);
  border-radius: 0 var(--r) var(--r) 0;
  position: relative;
}
.sd-quote-icon {
  color: var(--green); opacity: 0.4; font-size: 1.5rem;
  margin-bottom: 10px; display: block;
}
.sd-quote p {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.75;
  margin-bottom: 10px;
}
.sd-quote span {
  font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--green);
}

/* ── TIMELINE ── */
.timeline-section {
  background: var(--off-white);
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px);
}
.tl-wrap { max-width: 1000px; margin: 0 auto; }
.tl-header { margin-bottom: 64px; }
.tl-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 700; color: var(--black); line-height: 1.2;
}
.tl-title em { font-style: italic; color: var(--red); }

.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--green), var(--red), var(--green));
  transform: translateX(-50%);
}

.tl-item {
  display: flex; align-items: flex-start;
  gap: 40px; margin-bottom: 56px; position: relative;
}
.tl-left  { flex-direction: row;         padding-right: calc(50% + 40px); }
.tl-right { flex-direction: row-reverse; padding-left:  calc(50% + 40px); }

.tl-content {
  background: var(--white);
  border-radius: var(--rlg);
  padding: 28px 30px;
  box-shadow: 0 4px 28px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.tl-content:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.13); }
.tl-year {
  font-family: var(--font-display); font-size: 2.2rem;
  font-weight: 900; color: rgba(26,122,26,0.18);
  line-height: 1; margin-bottom: 10px;
}
.tl-content h4 {
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700;
  color: var(--black); margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.tl-content h4 i { color: var(--green); font-size: 0.85rem; }
.tl-content p {
  font-family: var(--font-body); font-size: 0.86rem;
  color: #555; line-height: 1.72; margin: 0;
}

.tl-dot {
  position: absolute; left: 50%; top: 28px;
  transform: translateX(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; z-index: 2;
  box-shadow: 0 0 0 5px var(--off-white), var(--shadow-green);
  flex-shrink: 0;
}

/* ── VISION MISSION ── */
.vm-section {
  position: relative; overflow: hidden;
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px);
}
.vm-bg-img {
  position: absolute; inset: 0;
}
.vm-bg-img img { width: 100%; height: 100%; object-fit: cover; }
.vm-overlay {
  position: absolute; inset: 0;
  background: rgba(10,25,10,0.92);
}
.vm-inner { position: relative; z-index: 5; max-width: 1440px; margin: 0 auto; }
.vm-header { margin-bottom: 56px; }
.vm-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 700; color: #fff; line-height: 1.2;
}
.vm-title em { font-style: italic; color: var(--green); }

.vm-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.vm-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(26,122,26,0.22);
  border-radius: var(--rlg); padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.vm-card:hover {
  border-color: rgba(26,122,26,0.6);
  background: rgba(26,122,26,0.08);
  transform: translateY(-5px);
}
.vm-card--featured {
  border-color: var(--green);
  background: rgba(26,122,26,0.1);
}
.vm-card-icon {
  width: 56px; height: 56px;
  background: rgba(26,122,26,0.15);
  border: 1px solid rgba(26,122,26,0.3);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.4rem; margin-bottom: 24px;
}
.vm-card--featured .vm-card-icon {
  background: var(--green); color: var(--black);
}
.vm-card h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: #fff; margin-bottom: 14px;
}
.vm-card p {
  font-family: var(--font-body); font-size: 0.88rem;
  color: rgba(255,255,255,0.7); line-height: 1.8;
}
.vm-card-accent {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--green-bright));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.vm-card:hover .vm-card-accent,
.vm-card--featured .vm-card-accent { transform: scaleX(1); }

/* delay helpers */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }

/* ── CORE VALUES ── */
.values-section {
  background: var(--black);
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px);
}
.vals-inner { max-width: 1440px; margin: 0 auto; }
.vals-header { margin-bottom: 56px; max-width: 680px; }
.vals-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 14px;
}
.vals-title em { font-style: italic; color: var(--green); }
.vals-sub {
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--light-grey); line-height: 1.78;
}
.vals-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.val-card {
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--rlg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.val-card:hover {
  transform: translateY(-5px);
  background: var(--black-4);
}
.val-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 20px;
}
.val-icon--gold  { background: rgba(245,208,0,0.12); color: var(--yellow); border: 1px solid rgba(245,208,0,0.2); }
.val-icon--green { background: rgba(26,122,26,0.14); color: var(--green);  border: 1px solid rgba(26,122,26,0.25); }
.val-icon--red   { background: rgba(204,17,17,0.12);  color: var(--red);    border: 1px solid rgba(204,17,17,0.22); }

.val-num {
  font-family: var(--font-display); font-size: 4rem;
  font-weight: 900; color: rgba(255,255,255,0.03);
  position: absolute; top: 10px; right: 20px; line-height: 1;
}
.val-card:hover .val-num { color: rgba(26,122,26,0.08); }
.val-card h4 {
  font-family: var(--font-sans); font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 12px;
}
.val-card p {
  font-family: var(--font-body); font-size: 0.85rem;
  color: var(--light-grey); line-height: 1.75;
}
.val-card:nth-child(1) { border-top: 2px solid var(--yellow); }
.val-card:nth-child(2) { border-top: 2px solid var(--green); }
.val-card:nth-child(3) { border-top: 2px solid var(--red); }
.val-card:nth-child(4) { border-top: 2px solid var(--yellow); }
.val-card:nth-child(5) { border-top: 2px solid var(--green); }
.val-card:nth-child(6) { border-top: 2px solid var(--red); }

/* ── LEADERSHIP ── */
.leadership-section {
  background: var(--off-white);
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px);
}
.ls-inner { max-width: 1440px; margin: 0 auto; }
.ls-header { margin-bottom: 60px; max-width: 700px; }
.ls-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 700; color: var(--black); line-height: 1.2; margin-bottom: 14px;
}
.ls-title em { font-style: italic; color: var(--red); }
.ls-sub {
  font-family: var(--font-body); font-size: 0.9rem; color: #555; line-height: 1.8;
}

/* Principal featured card */
.ls-principal {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 0; border-radius: var(--rlg); overflow: hidden;
  background: var(--black-2); margin-bottom: 48px;
  box-shadow: var(--shadow-dark);
}
.lsp-img-wrap {
  position: relative; overflow: hidden; min-height: 480px;
}
.lsp-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.lsp-img-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black-2) 100%);
}
.lsp-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: var(--green); color: var(--black);
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 1.5px; padding: 8px 16px; border-radius: 100px;
  display: flex; align-items: center; gap: 6px;
}
.lsp-content {
  padding: clamp(40px,6vw,64px) clamp(36px,5vw,56px);
  display: flex; flex-direction: column; justify-content: center;
}
.lsp-name {
  font-family: var(--font-display); font-size: 2rem;
  font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1;
}
.lsp-role {
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.lsp-qual {
  font-family: var(--font-body); font-size: 0.82rem;
  color: var(--light-grey); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.lsp-qual i { color: var(--green); }
.lsp-bio {
  font-family: var(--font-body); font-size: 0.88rem;
  color: var(--light-grey); line-height: 1.78; margin-bottom: 12px;
}
.lsp-stats {
  display: flex; gap: 32px; margin: 24px 0;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lsp-stat { display: flex; flex-direction: column; }
.lsp-stat-num {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 900; color: var(--green); line-height: 1;
}
.lsp-stat-lbl {
  font-family: var(--font-sans); font-size: 0.62rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}
.lsp-social { display: flex; gap: 10px; margin-top: 20px; }
.lsp-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--light-grey); font-size: 0.85rem;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lsp-social a:hover { background: var(--green); color: var(--black); border-color: var(--green); }

/* Team grid */
.leaders-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.leader-card {
  background: var(--white);
  border-radius: var(--rlg); overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.leader-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }
.lc-img { height: 240px; position: relative; overflow: hidden; }
.lc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; }
.leader-card:hover .lc-img img { transform: scale(1.06); }
.lc-overlay {
  position: absolute; inset: 0;
  background: rgba(10,30,10,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.leader-card:hover .lc-overlay { opacity: 1; }
.lc-socials { display: flex; gap: 10px; }
.lc-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
  transition: background 0.2s;
}
.lc-socials a:hover { background: var(--green); border-color: var(--green); color: var(--black); }
.lc-body { padding: 24px; }
.lc-body h4 {
  font-family: var(--font-sans); font-size: 1rem; font-weight: 700;
  color: var(--black); margin-bottom: 5px;
}
.lc-role {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
  display: flex; align-items: center; gap: 6px;
}
.lc-qual {
  font-family: var(--font-body); font-size: 0.78rem;
  color: var(--mid-grey); margin-bottom: 10px; font-style: italic;
}
.lc-bio {
  font-family: var(--font-body); font-size: 0.83rem;
  color: #555; line-height: 1.7;
}

/* ── AWARDS ── */
.awards-section {
  background: var(--black-2);
  padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px);
}
.aw-inner { max-width: 1440px; margin: 0 auto; }
.aw-header { margin-bottom: 56px; }
.aw-title {
  font-family: var(--font-display);
  font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 700; color: #fff; line-height: 1.2;
}
.aw-title em { font-style: italic; color: var(--green); }
.aw-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.aw-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(26,122,26,0.15);
  border-radius: var(--rlg); padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.aw-card:hover {
  border-color: rgba(26,122,26,0.45);
  transform: translateY(-4px);
  background: rgba(26,122,26,0.06);
}
.aw-icon {
  width: 52px; height: 52px;
  background: rgba(26,122,26,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1.3rem; margin-bottom: 18px;
}
.aw-card h4 {
  font-family: var(--font-sans); font-size: 0.95rem; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.aw-year {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.aw-card p {
  font-family: var(--font-body); font-size: 0.84rem;
  color: var(--light-grey); line-height: 1.72;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid; grid-template-columns: repeat(5,1fr);
  height: 260px; overflow: hidden;
}
.ps-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.ps-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.ps-item:hover img { transform: scale(1.08); }
.ps-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,30,10,0.88), transparent);
  color: #fff; padding: 16px 14px 12px;
  font-family: var(--font-sans); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
  transform: translateY(100%); transition: transform 0.35s;
}
.ps-item:hover .ps-caption { transform: translateY(0); }
.ps-caption i { color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .sd-inner { grid-template-columns: 1fr; gap: 60px; }
  .sd-img-stack { height: 420px; }
  .vm-cards { grid-template-columns: 1fr 1fr; }
  .vals-grid { grid-template-columns: 1fr 1fr; }
  .ls-principal { grid-template-columns: 1fr; }
  .lsp-img-wrap { min-height: 380px; }
  .leaders-grid { grid-template-columns: 1fr 1fr; }
  .aw-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: repeat(3,1fr); height: auto; }
  .ps-item { height: 200px; }
}
@media (max-width: 768px) {
  .qs-inner { gap: 0; }
  .qs-divider { display: none; }
  .qs-item { width: 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .vm-cards { grid-template-columns: 1fr; }
  .vals-grid { grid-template-columns: 1fr; }
  .leaders-grid { grid-template-columns: 1fr; }
  .aw-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 22px; }
  .tl-item { flex-direction: column !important; padding: 0 0 0 72px !important; }
  .tl-dot { left: 22px; top: 0; }
  .tl-content { width: 100%; }
  .lsp-img-wrap::after { background: linear-gradient(to top, var(--black-2) 0%, transparent 60%); }
}
@media (max-width: 480px) {
  .ph-title { font-size: 2.8rem; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .ps-item { height: 180px; }
  .ps-caption { transform: translateY(0); }
}
