/* about */

.about {
  overflow: hidden;
  position: relative;
  background-color: var(--brand-color);
}

.about__deco-img {
  position: absolute;
  mix-blend-mode: screen;
}

.about__deco-img--top {
  top: 33px;
  left: 0;
  width: 375px;

  @media (768px <= width) {
    top: -21px;
    right: -51px;
    left: initial;
    width: 500px;
    rotate: 30deg;
  }
}

.about__deco-img--bottom {
  right: -17px;
  bottom: -26px;
  width: 375px;

  @media (768px <= width) {
    right: initial;
    bottom: -110px;
    left: -54px;
    width: 375px;
    rotate: 30deg;
  }
}

.about__inner {
  position: relative;
  z-index: 1;
}

.about__content {
  @media (768px <= width) {
    margin-top: 56px;
  }
}

.about__item {
  @media (768px <= width) {
    display: flex;
    justify-content: space-between;
    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: fit-content;
    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: 26px;
  }
}

.about__item-sentence {
  font-size: 14px;
  font-weight: 400;
  line-height: 2.2;
}

.about__item-btn-wrap {
  margin-top: 40px;
}

.about__item-btn {
  max-width: 256px;
}
