/* Leader Section - Unified Design */

.leader {
  padding: 12px 20px 40px;
  background: var(--paper);
  position: relative;
}

.leader .wrap {
  max-width: 1120px;
  margin: 0 auto;
}

/* Leader Card */
.leader__card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}

/* Photo */
.leader__photo {
  position: relative;
}

.leader__photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(5%) contrast(1.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.leader__photo:hover img {
  filter: grayscale(0%) contrast(1.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Content */
.leader__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.leader__name {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  margin: 0 0 12px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  position: relative;
}

.leader__name::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.leader__role {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}

.leader__story {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 960px) {
  .leader__card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .leader__photo {
    margin: 0 auto;
  }
  
  .leader__photo img {
    width: 140px;
    height: 140px;
  }
  
  .leader__content {
    align-items: center;
  }
  
  .leader__name::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .leader {
    padding: 10px 20px 35px;
  }
  
  .leader__card {
    gap: 25px;
  }
  
  .leader__photo img {
    width: 120px;
    height: 120px;
  }
  
  .leader__name {
    font-size: 24px;
  }
  
  .leader__story {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .leader {
    padding: 8px 16px 30px;
  }
  
  .leader__card {
    gap: 20px;
  }
  
  .leader__photo img {
    width: 100px;
    height: 100px;
  }
  
  .leader__name {
    font-size: 22px;
  }
  
  .leader__role {
    font-size: 13px;
  }
  
  .leader__story {
    font-size: 15px;
  }
}