.identity-inner .collaborations {
  background: #19161f;
}
.collaborations-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.collaborations-copy > p:not(.jis-eyebrow) {
  color: #bbb6c6;
  margin-top: 25px;
  max-width: 520px;
}
.collaborations-destinations {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.collaborations-destinations button {
  font: inherit;
  font-size: 16px;
  border: 0;
  border-top: 1px solid #49404f;
  padding: 17px 0;
  color: #f2f0e9;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
  cursor: pointer;
  transition: color 200ms;
}
.collaborations-destinations button span:first-child {
  font:
    italic 13px Georgia,
    serif;
  color: #a89aba;
}
.collaborations-destinations button span:last-child {
  margin-left: auto;
}
.collaborations-destinations button[aria-pressed='true'],
.collaborations-destinations button:hover {
  color: #e39de0;
}
.collaborations-destinations button:focus-visible {
  outline: 2px solid #c1b2ee;
  outline-offset: 5px;
}
.collaborations-earth {
  margin: 0;
  min-width: 0;
}
.globe-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.globe-stage img,
.globe-stage svg {
  display: block;
  width: 100%;
  height: 100%;
}
.globe-stage svg {
  position: absolute;
  inset: 0;
  overflow: visible;
}
.globe-route {
  stroke: #bd8ccc;
  stroke-width: 1.4;
  opacity: 0.3;
  stroke-linecap: round;
}
.globe-route.is-active {
  opacity: 1;
  stroke: #ed8ada;
  stroke-width: 2;
}
.globe-point {
  fill: #c1b2ee;
  stroke: #19161f;
  stroke-width: 2;
}
.globe-point.is-active {
  fill: #ec039f;
  stroke: #f2f0e9;
}
.globe-traveller {
  fill: #fff;
  stroke: #ec039f;
  stroke-width: 2;
  opacity: 0;
}
.globe-traveller.is-moving {
  opacity: 1;
}
.collaborations-earth figcaption {
  text-align: center;
  color: #c1b2ee;
  font-size: 13px;
}
.collaborations-earth small {
  display: block;
  color: #aaa2b4;
  font-size: 10px;
  margin-top: 8px;
}
@media (max-width: 850px) {
  .collaborations-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .collaborations-earth {
    width: min(100%, 500px);
    justify-self: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .collaborations-destinations button {
    transition: none;
  }
}
