/* SNC Management CSS - Exact Match for leadership-grid */

.leadership-grid {
  display: grid;
  gap: 50px;
  margin: 50px 0;
}

.leadership-card {
  border: 2px solid #e8e8e8;
  border-left: 6px solid #d72e34;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  background: white;
}

.leadership-card:hover {
  border-left-color: #ffc90d;
  border-color: #f0f0f0;
}

.leadership-photo {
  margin-bottom: 25px;
  position: relative;
}

.leadership-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(215,46,52,0.9);
  color: white;
  padding: 20px;
  opacity: 0;
  transition: 0.3s ease;
}

.leadership-card:hover .photo-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
}

.overlay-content i {
  font-size: 30px;
  margin-bottom: 10px;
}

.overlay-content h5 {
  color: #fff;
  margin: 0;
  font-weight: bold;
}

.leadership-info h3 {
  color: #d72e34;
  font-size: 28px;
  margin: 0 0 10px 0;
}

.leadership-info h4 {
  color: #ffc90d;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.leadership-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.achievements {
  list-style: none;
  padding: 0;
}

.achievements li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #555;
}

.achievements li i {
  position: absolute;
  left: 0;
  color: #ffc90d;
}

.leadership-info blockquote {
  background: #f9f9f9;
  border-left: 4px solid #ffc90d;
  padding: 20px;
  margin: 25px 0 0 0;
  font-style: italic;
  color: #d72e34;
  font-size: 16px;
}

.leadership-card.reverse .leadership-photo {
  order: 2;
}

.leadership-card.reverse .leadership-info {
  order: 1;
}

/* Remove philosophy section styles */
.leadership-philosophy {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .leadership-photo img {
    height: auto;
  }
}

