/* Leadership Page Styles (served from src/assets) */

.hero-leadership {
  min-height: 70vh;
  background-image: url('../images/production/our_leadership.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.hero-leadership::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.hero-leadership .container {
  position: relative;
  z-index: 2;
}

/* Producer Cards */
.producer-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}

.producer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Strong, Bootstrap-proof sizing */
.producer-card .card-image-wrapper {
  width: 100%;
  height: 120px !important;
  position: relative;
  overflow: hidden;
}

.producer-card .card-image-wrapper .producer-photo {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.producer-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
}

.producer-title {
  font-size: .9rem;
}

@media (max-width: 991.98px) {
  .producer-card .card-image-wrapper {
    height: 100px !important;
  }
}

@media (max-width: 575.98px) {
  .producer-card .card-image-wrapper {
    height: 90px !important;
  }
}