/* Clean stack: no background, no border */
.guest-card {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  height: 100%;
}

/* Image fills the top of the stack */
.guest-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  cursor: pointer;
}

/* Heading sits directly under the image */
.guest-heading {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
}

.guest-subtitle {
  color: #6c757d;
  font-size: .9rem;
  margin-bottom: .5rem;
}

/* Modal image sizing */
.modal-guest-img {
  width: 100%;
  height: auto;
  max-height: 50vh;
  object-fit: cover;
  border-radius: 6px;
}

/* Make grid rows consistent height */
.guest-col {
  display: flex;
}

/* --- Special Guests Slider --- */
.guest-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.guest-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease-in-out;
}

.guest-slide {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 992px) {
  .guest-slide {
    flex: 0 0 calc(25% - 1.125rem);
    max-width: calc(25% - 1.125rem);
  }
}

.guest-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--egg-black);
  color: var(--egg-cream);
  border: 2px solid var(--egg-blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.guest-nav-btn:hover {
  background-color: var(--egg-blue);
  color: var(--egg-cream);
  border-color: var(--egg-cream);
  transform: translateY(-50%) scale(1.05);
}

.guest-prev-btn {
  left: -5px;
}

.guest-next-btn {
  right: -5px;
}

@media (min-width: 992px) {
  .guest-prev-btn {
    left: -15px;
  }
  .guest-next-btn {
    right: -15px;
  }
}

/* --- Modal Text Color --- */
#guestModalLabel,
#guestModalBio,
#guestModalBio p {
  color: #111111 !important;
}