/* about */

.about {
  overflow: hidden;
  position: relative;
  background-color: var(--brand-color);
}

.about__content {
  @media (768px <= width) {
    margin-top: 56px;
  }
}

.about__inner {
  position: static;
  z-index: 1;

  @media (768px <= width) {
    position: relative;
  }
}

.about__deco-img {
  position: absolute;
  filter: drop-shadow(0 5.677px 9.083px #b37d07);
}

.about__deco-img--top {
  top: -14.6px;
  right: -56px;
  width: 127px;

  @media (768px <= width) {
    top: -34.6px;
    right: -39px;
    z-index: -1;
    width: 165px;
  }
}

.about__deco-img--bottom {
  bottom: -34px;
  left: -16px;
  width: 118px;

  @media (768px <= width) {
    bottom: -113px;
    left: -42px;
    z-index: -1;
    width: 168px;
  }
}

.about__item {
  @media (768px <= width) {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }
}

.about__item-body {
  padding-inline: 16px;

  @media (768px <= width) {
    flex: 1 1 0;
    width: auto;
    max-width: 548px;
    min-width: 0;
    padding-inline: 0;
  }
}

.about__item-img {
  border-radius: 16px;

  @media (768px <= width) {
    display: block;
    flex: 1 1 0;
    width: 100%;
    height: auto;
    max-width: 460px;
    min-width: 0;
    border-radius: 16px;
  }
}

.about__item-title {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;

  @media (768px <= width) {
    margin-top: 0;
    font-size: 28px;
  }
}

.about__item-sentence-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  color: #fff;

  @media (768px <= width) {
    margin-top: 28px;
  }
}

.about__item-sentence {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2;
}

.about__item-btn-wrap {
  margin-top: 40px;

  @media (768px <= width) {
    margin-top: 24px;
  }
}

.about__item-btn {
  max-width: 256px;

  @media (768px <= width) {
    margin-left: 0;
  }
}

.about__item-btn-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  img {
    display: block;
  }
}
