

/* HEADER */
.sna-header h1 {
  color: var(--primary-blue);
  font-weight: 700;
}

.sna-header .subtitle {
  color: #666;
  margin-top: 10px;
}

/* LAYOUT */
.sna-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

/* LEFT */
.sna-left .intro {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #444;
}

/* TIMELINE */
.sna-timeline {
  position: relative;
  padding-left: 30px;
}

.sna-timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary-blue);
}

/* ITEM */
.timeline-item {
  position: relative;
  background: #fff;
  padding: 15px 18px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* DOT */
.timeline-item::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: var(--accent-red);
  border-radius: 50%;
}

/* HOVER */
.timeline-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* HIGHLIGHT */
.timeline-item.highlight {
  background: var(--primary-blue);
  color: #fff;
  font-weight: 500;
}

/* RIGHT CARD */
.leadership-card {
  background: linear-gradient(135deg, var(--primary-blue), #1a2665);
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: sticky;
  top: 20px;
}

.leadership-card h3 {
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-red);
  display: inline-block;
  padding-bottom: 5px;
}

.leadership-card ul {
  padding: 0;
}

.leadership-card li {
  list-style: none;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width: 768px) {

  .sna-layout {
    grid-template-columns: 1fr;
  }

  .leadership-card {
    margin-top: 20px;
    position: relative;
  }

  .sna-timeline {
    padding-left: 20px;
  }

}