.people-highlight {
  background: linear-gradient(to right, #173442 0%, rgba(23, 52, 66, 0.95) 100%);
  color: white;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  box-shadow: 0 8px 15px -5px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.people-highlight-content {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse; /* ✅ Image on right, text on left */
}

.people-highlight-text {
  flex: 0.8;
}

.people-highlight-title {
  font-size: 12px;
  color: #f3c21c;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.people-highlight-quote {
  background-color: #e6f0f5;
  color: #173442;
  padding: 25px 30px;
  border-left: 6px solid #193442;
  font-style: italic;
  font-size: 16px;
  transition: all 0.3s ease;
  transform-origin: center;
  will-change: transform;
}

.people-highlight-quote:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.people-highlight-person {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: white;
}

.people-highlight-image {
  flex: 1.2;
  text-align: right;
}

.people-highlight-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  transition: all 0.3s ease;
  transform-origin: center;
  will-change: transform;
}

.people-highlight-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* MOBILE STYLING */
@media (max-width: 768px) {
  .people-highlight-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .people-highlight-image {
    text-align: center;
    width: 100%;
  }

  .people-highlight-image img {
    width: 90%;
    max-width: 320px;
    margin-bottom: 1rem;
  }

  .people-highlight-text {
    padding: 0 1rem;
  }

  .people-highlight-quote {
    padding: 20px;
    font-size: 15px;
  }
}
