.showcase {
  background-color: #111;
  color: #fff;
  padding: 120px 0;
}
.showcase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.showcase-text h2 {
  font-size: 48px;
  margin-bottom: 24px;
}
.showcase-text p {
  color: #aaa;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 450px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item-tall {
  grid-row: span 2;
  height: 500px;
}
.gallery-item-wide {
  grid-column: span 2;
  height: 240px;
}
.gallery-item-std {
  height: 240px;
}
