/* ================================
   SECTION 2 — Meet Our GM
================================ */
.meet-gm {
  padding: 90px 20px;
  text-align: center;
  background: #f2f2f2;
  overflow: hidden;
}

.gm-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.gm-photo {
  position: relative;
  width: 360px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.gm-photo:hover { transform: translateY(-6px); }

.gm-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: 16px;
  z-index: 0;
}
.gm-photo-img.active {
  opacity: 1;
  z-index: 1;
}

.gm-details {
  flex: 1;
  max-width: 520px;
  text-align: left;
}
.gm-details h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
}
.gm-details h3 {
  font-size: 1.5rem;
  color: #d63384;
  margin-bottom: 4px;
}
.gm-details h4 {
  font-size: 1rem;
  color: #666;
  margin-bottom: 18px;
}
.gm-bio {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.6;
}
.gm-quote {
  font-style: italic;
  color: #777;
  border-left: 3px solid #d63384;
  padding-left: 14px;
}

/* Fade animation */
.meet-gm.fade-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease-out;
}
.meet-gm.fade-item.show {
  opacity: 1;
  transform: translateY(0);
}
