/* === MEDIA SIZING === */

/* Default for individual member portraits */
.epk-members .media-placeholder:not(.wide),
.epk-members .member-image:not(.wide) {
  width: 180px;                  /* Fixed small size — adjust to 160px-220px as needed */
  max-width: 100%;               /* Prevents overflowing on very small screens */
  aspect-ratio: 3 / 4;           /* Keeps your portrait ratio */
  margin: 0 auto 1rem;           /* Centers it, adds space below */
  border-radius: 6px;
  display: block;
}

/* Remove or override any fixed width increases if they're making portraits too big */
@media (min-width: 768px) {
  .epk-members .media-placeholder:not(.wide),
  .epk-members .member-image:not(.wide) {
    width: 200px;                /* Slightly larger on tablets/desktops */
  }
}

@media (min-width: 1024px) {
  .epk-members .media-placeholder:not(.wide),
  .epk-members .member-image:not(.wide) {
    width: 220px;                /* Max comfortable size */
  }
}
/* =========================
   ARTWORK CAROUSEL – MINIMAL & MOBILE-FRIENDLY
   ========================= */

.artwork-carousel-section {
  padding: 4rem 1.5rem;
  margin: 3rem auto;
  max-width: 1200px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border-radius: 24px;
}

.artwork-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.8rem;
  padding: 1rem 0;
  scrollbar-width: none; /* Firefox */
}

.artwork-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.artwork-carousel img {
  width: 260px;
  height: 260px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.artwork-carousel img:hover {
  transform: scale(1.08);
}

/* Mobile adjustments – shows ~3 images */
@media (max-width: 768px) {
  .artwork-carousel img {
    width: 200px;
    height: 200px;
  }
  .artwork-carousel-section {
    padding: 3rem 1rem;
  }
}