.go-global {
  width: 100%;
  font-family: sans-serif;
}

/* Desktop section */
.go-global-desktop {
  width: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: white;
}

.go-global-heading {
     position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.go-global-heading h2 {
  font-size: 64px;
  font-weight: 600;
  line-height: 64px;
  text-transform: uppercase;
  margin: 0;
}

.go-global-heading p {
  font-size: 21px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 8px;
}

.go-global-desktop img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile section */
.go-global-mobile {
  background: url('https://assets.corsair.com/image/upload/v1746435859/pages/careers/World_Map_Mobile.png') no-repeat center center;
  background-size: cover;
  padding: 56px 16px;
  color: white;
  display: none;
}

.go-global-mobile h2 {
  font-size: 40px;
line-height: 44px;
text-align: center;
  text-transform: uppercase;
  margin: 0;
}

.go-global-mobile p {
  margin-top: 8px;
  margin-bottom: 36px;
  font-size: 16px;
  font-weight: 22px;
  text-align: center;
}

.go-global-mobile .region {
  margin-bottom: 24px;
}

.go-global-mobile .region:last-child {
  margin-bottom: unset;
}

.go-global-mobile .region h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.go-global-mobile .region ul {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.go-global-mobile .region li {
  color: #C1C6C8;
  margin-bottom: 0.3rem;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .go-global-desktop {
    display: none;
  }

  .go-global-mobile {
    display: block;
  }
}
