.showcase-row {
  direction: ltr;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 90px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  background: #fff;
}

.showcase-gallery-col {
  width: 100%;
  height: 550px;
}

.showcase-globe-col {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  --flag-rect-width: 60px;
  box-sizing: border-box;
  padding: 48px;
  border-radius: 28px;
  /* a field backdrop that drifts at a different rate than the page while
     scrolling (classic fixed-attachment parallax) */
  background-image: url("../gallery/field-plain.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.globe-root {
  position: relative;
  width: 100%;
  max-width: 560px;
}

.flag-rect {
  width: var(--flag-rect-width);
  flex-shrink: 0;
  border-radius: 16px;
}
.flag-rect--green {
  background: #009246;
  margin-right: 10px;
}
.flag-rect--red {
  background: #ce2b37;
  margin-left: 10px;
}

@media (max-width: 900px) {
  .showcase-row {
    padding: 60px 24px;
    gap: 40px;
  }
  .showcase-gallery-col {
    height: 420px;
  }
  .showcase-globe-col {
    --flag-rect-width: 28px;
    padding: 24px;
    /* fixed-attachment parallax is unreliable on mobile browsers */
    background-attachment: scroll;
  }
}

.globe-root canvas {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  cursor: grab;
}
.globe-root canvas:active {
  cursor: grabbing;
}

.globe-hint {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 4px 10px;
  border-radius: 6px;
  background: #171717;
  color: #a3a3a3;
  font-size: 12px;
  font-family: rubik, sans-serif;
}

.globe-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #a3a3a3;
  font-size: 14px;
  font-family: rubik, sans-serif;
  text-align: center;
  padding: 16px;
}
