/* About page */
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 10px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.tl-item { position: relative; margin-bottom: 32px; }
.tl-item::before { content: ''; position: absolute; left: -24px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); border: 2px solid #fff; box-shadow: 0 0 0 3px rgba(249,115,22,.25); }
.tl-year  { font-family: var(--fp); font-size: .70rem; font-weight: 700; color: var(--orange); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.tl-title { font-family: var(--fp); font-size: .92rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tl-text  { font-size: .79rem; color: var(--muted); line-height: 1.68; }

.leadership-card { background: #fff; border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--sh-sm); transition: all .3s; height: 100%; display: flex; flex-direction: column; }
.leadership-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.lc-img { height: 240px; overflow: hidden; flex-shrink: 0; }
.lc-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .4s; display: block; }
.leadership-card:hover .lc-img img { transform: scale(1.06); }
.lc-info { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.lc-info h5  { font-family: var(--fp); font-size: .94rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.lc-info .role { font-size: .68rem; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.lc-info p { font-size: .78rem; color: var(--muted); line-height: 1.65; flex: 1; }

.value-card { background: var(--slate); border-radius: var(--r); padding: 22px; height: 100%; border: 1px solid var(--border); transition: all .3s; display: flex; flex-direction: column; }
.value-card:hover { background: var(--navy); border-color: var(--navy); }
.value-card:hover .vc-title, .value-card:hover .vc-text { color: #fff; }
.value-card:hover .vc-icon { background: rgba(249,115,22,.20); }
.vc-icon  { width: 46px; height: 46px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; transition: background .3s; flex-shrink: 0; }
.vc-title { font-family: var(--fp); font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; transition: color .3s; }
.vc-text  { font-size: .78rem; color: var(--muted); line-height: 1.65; transition: color .3s; flex: 1; }
@media (max-width: 767px) {
  .lc-img { height: 190px; }
  .timeline { padding-left: 24px; }
  .tl-item::before { left: -20px; }
}
@media (max-width: 575px) {
  .lc-img { height: 175px; }
  .value-card { padding: 18px; }
  .vc-icon { width: 40px; height: 40px; font-size: 1.1rem; }
  .timeline::before { left: 8px; }
}
