/* ==========================================
   MEET OUR LEADERSHIP STYLES
=========================================== */
.leadership-section {
  padding: 5rem 1.5rem;
  background-color: #0b132b;
  position: relative;
}

.leadership-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header */
.leadership-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.leadership-badge {
  display: inline-block;
  color: var(--accent-orange, #ff6b00);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.25);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.leadership-title {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.leadership-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* 4-Card Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

/* Profile Card */
.leadership-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.25rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.leadership-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 0, 0.35);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), 
              0 0 18px rgba(255, 107, 0, 0.08);
}

/* Circular Photo Ring */
.leadership-photo-wrapper {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent-orange, #ff6b00), rgba(16, 185, 129, 0.6)); /* Orange & Green brand accent */
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.leadership-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  background-color: #1a233a; /* Fallback frame while loading */
}

/* Card Content */
.leadership-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

.leadership-role {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.leadership-desc {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Statement Container */
.leadership-statement-box {
  background: linear-gradient(135deg, rgba(22, 34, 59, 0.8) 0%, rgba(11, 19, 43, 0.95) 100%);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-left: 4px solid var(--accent-orange, #ff6b00);
  border-radius: 12px;
  padding: 1.75rem 2rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.leadership-statement-text {
  color: #f1f5f9;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* Centered CTA Button */
.leadership-cta-wrapper {
  text-align: center;
}

.leadership-cta-btn {
  background: var(--accent-orange, #ff6b00);
  color: #ffffff;
  padding: 0.9rem 2.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.35);
}

.leadership-cta-btn:hover {
  background-color: #e05f00;
  transform: translateY(-2px);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.45);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  
  .leadership-card {
    padding: 1.75rem 1.25rem;
  }
  
  .leadership-statement-box {
    padding: 1.25rem 1.25rem;
  }
}


.leadership-name {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.leadership-role {
  color: var(--accent-orange, #ff6b00);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  display: block;
}