.booth-showcase {
  display: grid;
  grid-template-columns: 1.35fr .5fr .5fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 1rem;
  padding: 0 3vw 1rem;
}

.booth-showcase figure {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  background: #ddd;
}

.booth-showcase .showcase-main {
  grid-row: 1 / 3;
  min-height: 620px;
}

.booth-showcase > figure:nth-child(2) {
  grid-column: 2 / 4;
}

.booth-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.booth-showcase figure:hover img { transform: scale(1.025); }

.booth-showcase figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 4.5rem 1.6rem 1.5rem;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .76));
}

.booth-showcase figcaption span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.booth-showcase figcaption b {
  font: 600 clamp(1.25rem, 2vw, 2rem) / 1.1 "Space Grotesk";
}

@media (max-width: 900px) {
  .booth-showcase {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .booth-showcase .showcase-main {
    grid-column: 1 / 4;
    grid-row: auto;
    min-height: 500px;
  }

  .booth-showcase > figure:nth-child(2) {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .booth-showcase {
    grid-template-columns: 1fr;
    padding-inline: 1rem;
  }

  .booth-showcase .showcase-main {
    grid-column: auto;
    min-height: 380px;
  }

  .booth-showcase > figure:nth-child(2) { grid-column: auto; }

  .booth-showcase figure { min-height: 280px; }
}

.team-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
  margin: .8rem 0 1rem;
}

.team-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: .55rem;
}

.team-gallery .team-gallery-wide {
  grid-column: 1 / 3;
  aspect-ratio: 3 / 1.45;
}
