/* ============================================================
   ATLAS LEADERSHIP — Clean Corporate Profile
   ============================================================ */

.atlas-leadership-section {
  background: #F4F7FA;
  padding: 70px 0;
}

/* ---- Two-column grid ---- */
.alp-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 60px;
}

/* ============================================================
   LEFT: Profile card
   ============================================================ */
.alp-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Photo */
.alp-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  background: #E8EEF4;
}
.alp-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.alp-card:hover .alp-photo img { transform: scale(1.04); }

.alp-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10,24,40,0.82);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 13px;
  border-radius: 5px;
  backdrop-filter: blur(6px);
}

/* Info */
.alp-info {
  padding: 26px 28px 28px;
}
.alp-name {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #0A1828 !important;
  margin: 0 0 5px !important;
  text-transform: none !important;
  letter-spacing: -0.3px !important;
  line-height: 1.2 !important;
}
.alp-role {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #138EDF;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.alp-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.alp-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #6A8090;
  font-weight: 500;
}
.alp-meta-row span i {
  color: #138EDF;
  font-size: 11px;
}
.alp-bio {
  font-size: 14px !important;
  color: #5A7080 !important;
  line-height: 1.72 !important;
  margin-bottom: 18px !important;
}
.alp-email {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: #138EDF !important;
  text-decoration: none !important;
  margin-bottom: 22px;
  transition: color .25s;
}
.alp-email i { font-size: 12px; }
.alp-email:hover { color: #1C5982 !important; }

/* Stats */
.alp-stats {
  display: flex;
  border-top: 1px solid #EAECEF;
  padding-top: 18px;
}
.alp-stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid #EAECEF;
  padding: 0 8px;
}
.alp-stat:last-child { border-right: none; }
.alp-stat strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #0A1828;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.alp-stat span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #8A9FAE;
  margin-top: 3px;
}

/* ============================================================
   RIGHT: Quote + Join Team
   ============================================================ */
.alp-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Quote block */
.alp-quote {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 4px solid #138EDF;
  border-radius: 0 12px 12px 0;
  padding: 32px 36px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  position: relative;
}
.alp-qmark {
  display: block;
  font-size: 72px;
  line-height: 0.5;
  color: rgba(19,142,223,0.12);
  font-family: Georgia, serif;
  font-weight: 900;
  margin-bottom: 14px;
}
.alp-quote p {
  font-size: 17px !important;
  color: #1A2A3A !important;
  font-style: italic;
  line-height: 1.75 !important;
  margin: 0 0 14px !important;
}
.alp-quote footer {
  font-size: 11.5px;
  font-weight: 700;
  color: #138EDF;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Join Our Team card */
.alp-join {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 12px;
  padding: 32px 36px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.alp-join-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.alp-join-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: #0A1828;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 18px;
}
.alp-join-head h4 {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #0A1828 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 0 6px !important;
  line-height: 1.2 !important;
}
.alp-join-head p {
  font-size: 13.5px !important;
  color: #5A7080 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* Perks list */
.alp-perks {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.alp-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  background: #F6F9FC;
  border: 1px solid #E8EEF4;
  border-radius: 8px;
  transition: border-color .25s, background .25s;
}
.alp-perks li:hover {
  background: #EDF4FB;
  border-color: rgba(19,142,223,0.22);
}
.alp-perks li > i {
  color: #138EDF;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
}
.alp-perks li strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #0A1828;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 2px;
}
.alp-perks li span {
  font-size: 13px;
  color: #5A7080;
  line-height: 1.5;
}

/* CTA button */
.alp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #138EDF;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 7px;
  text-decoration: none !important;
  transition: background .3s, transform .25s;
  letter-spacing: 0.2px;
}
.alp-cta:hover {
  background: #0A1828;
  transform: translateY(-2px);
  color: #fff !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .alp-grid { grid-template-columns: 340px 1fr; gap: 36px; }
}
@media (max-width: 991px) {
  .atlas-leadership-section { padding: 50px 0; }
  .alp-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
  .alp-photo { aspect-ratio: 4 / 3.5; }
}
@media (max-width: 600px) {
  .alp-quote, .alp-join { padding: 24px 20px; }
  .alp-quote p { font-size: 15px !important; }
  .alp-join-head { flex-direction: column; gap: 10px; }
}

/* ---- Extra mobile fixes ---- */
@media (max-width: 480px) {
  .alp-stats { flex-wrap: wrap; gap: 0; }
  .alp-stat {
    flex: 1 1 calc(50% - 1px);
    padding: 10px 6px;
    border-right: none;
    border-bottom: 1px solid #EAECEF;
  }
  .alp-stat:nth-child(odd) { border-right: 1px solid #EAECEF; }
  .alp-stat:last-child:nth-child(odd) { border-right: none; }
  .alp-stat strong { font-size: 18px; }
  .alp-name { font-size: 20px !important; }
  .alp-bio { font-size: 13.5px !important; }
}
