.awyb-local-landmarks {
  width: 100%;
  box-sizing: border-box;
  background-color: var(--awyb-theme-primary-color);
}

.awyb-local-landmarks__content {
  display: flex;
  gap: 32px;
  justify-content: center;
  padding: 120px 64px;
}

.awyb-local-landmarks__divider {
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0.2;
  margin: 16px 0;
}

.awyb-local-landmarks__title_container {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.awyb-local-landmarks__title_wrapper {
  writing-mode: sideways-lr;
  align-self: stretch;
}

.awyb-local-landmarks__title {
  position: relative;
  z-index: 1;
  font-size: 110px;
  line-height: 90px;
  letter-spacing: -2px;
  font-weight: 700;
  margin: 0 25px 0 0;
}

.awyb-local-landmarks__title_divider {
  width: 2px;
  height: 100%;
  background: black;
  position: relative;
  z-index: 1;
}

.awyb-local-landmarks__emblem_wrapper {
  position: absolute;
  top: -148px;
  left: -200px;
  width: 485px;
  height: 485px;
  z-index: 0;
}

.awyb-local-landmarks__emblem_image {
  width: 100%;
  aspect-ratio: 1/1;
  opacity: 0.3;
}

.awyb-local-landmarks__landmark {
  position: relative;
  z-index: 1;
  padding: 32px 24px 0 24px;
}

.awyb-local-landmarks__landmark-title {
  margin: 0;
  margin-bottom: 25px;
  font-size: 44px;
  line-height: 34px;
  font-weight: 700;
}
.awyb-local-landmarks__landmark-description {
  margin: 0;
  font-size: 24px;
  line-height: 37px;
}

.awyb-local-landmarks__divider {
  height: 2px;
  margin: 0;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .awyb-local-landmarks__content {
    flex-direction: column;
    padding: 64px 24px;
    gap: 64px;
  }
  
  .awyb-local-landmarks__title {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -0.6px;
  }
  .awyb-local-landmarks__title_divider {
    width: 100%;
    height: 2px;
    background: black;
    position: relative;
    z-index: 1;
    margin: 18px 0 0 0;
  }

  .awyb-local-landmarks__emblem_wrapper {
    width: 316px;
    height: 316px;
    left: -41px;
    top: -100px;
  }

  .awyb-local-landmarks__title_wrapper {
    writing-mode: unset;
  }
  
  .awyb-local-landmarks__landmarks_container {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .awyb-local-landmarks__landmark {
    padding: 0;
  }

  .awyb-local-landmarks__landmark-title {
    font-size: 36px;
    line-height: 38px;
  }

  .awyb-local-landmarks__landmark-description {
    font-size: 22px;
    line-height: 28px;
  }
}