.awyb-why-you-belong {
  display: flex;
  flex-direction: column;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

.awyb-why-you-belong__content {
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 64px;
  justify-content: space-between;
  /* background: var(--awyb-theme-primary-color); */
  gap: 28px;
}

.awyb-why-you-belong__reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 800px;
  flex: 1;
}

.awyb-why-you-belong__reason-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 40px;
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  line-height: 36px;
  background: var(--awyb-theme-accent-ornament);
}

.awyb-why-you-belong__copy-container {
  display: flex;
  flex-direction: column;
  gap: 34px;
  text-align: right;
  max-width: 494px;
}

.awyb-why-you-belong__image-grid {
  position: relative;
  display: flex;
  gap: 56px;
  align-items: center;
  padding: 120px 60px;
}

.awyb-why-you-belong__image-item {
  position: relative;
  flex: 1;
  max-width: 566px;
}

.awyb-why-you-belong__image-item img {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  object-fit: cover;
}

.awyb-why-you-belong__location-pin {
  position: absolute;
  bottom: -52px;
  left: -64px;
  z-index: 1;
}

.awyb-why-you-belong__location-pin svg {
  height: 112px;
  width: 112px;
}

.arrow-container {
  position: absolute;
  bottom: -70px;
  right: -226px;
  z-index: 1;
}

.arrow-container-mobile {
  display: none;
}

.arrow-container-mobile {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1023px) {
  .awyb-why-you-belong__content {
    flex-direction: column-reverse;
    padding: 40px 24px;
  }

  .awyb-why-you-belong__reason-grid {
    max-width: 100%;
  }

  .awyb-why-you-belong__copy-container {
    text-align: left;
    max-width: 100%;
  }

  .awyb-why-you-belong__image-grid {
    padding: 40px 24px;
    gap: 32px;
  }

  .arrow-container {
    display: none;
  }

  .arrow-container-mobile {
    display: block;
    position: absolute;
    top: 25px;
    transform-origin: center;
    right: -25px;
    z-index: 1;
    aspect-ratio: 1 / 1;
    width: 310px;
  }
}

@media screen and (max-width: 767px) {
  .awyb-why-you-belong__content {
    padding: 32px 16px;
    gap: 24px;
  }

  .awyb-why-you-belong__reason-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .awyb-why-you-belong__reason-item {
    padding: 32px 24px;
  }

  .awyb-why-you-belong__image-grid {
    flex-direction: column;
    gap: 40px;
  }

  .arrow-container-mobile {
    display: block;
    position: absolute;
    top: 115px;
    transform-origin: center;
    right: -40px;
    z-index: 1;
    aspect-ratio: 1 / 1;
    width: 240px;
  }

  .awyb-why-you-belong__location-pin {
    bottom: unset;
    top: -50px;
    left: -10px;
  }

  .awyb-why-you-belong__location-pin svg {
    height: 80px;
    width: 80px;
  }

  .awyb-why-you-belong__image-item {
    max-width: 312px;
  }
}
