/* about */

.about {
  overflow: hidden;
  position: relative;
  background-color: var(--brand-color);
}

.about__content {
  @media (768px <= width) {
    margin-top: 56px;
  }
}

.about__deco-img {
  position: absolute;
  filter: drop-shadow(0 4px 8px rgb(48 21 0 / 23%));
}

.about__deco-img--top {
  top: -30.6px;
  left: -90px;
  width: 205px;
  rotate: -15deg;

  @media (768px <= width) {
    top: -26.6px;
    left: -76px;
    z-index: -1;
    width: 252px;
  }
}

.about__deco-img--bottom {
  right: -148px;
  bottom: -29px;
  width: 241px;
  rotate: 29.98deg;

  @media (768px <= width) {
    right: -5px;
    bottom: -52px;
    z-index: -1;
  }
}

.about__inner {
  position: static;
  z-index: 1;

  @media (768px <= width) {
    position: relative;
  }
}

.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 {
  height: fit-content;
  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: 24px;
  }
}

.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;
}

.about__item-btn {
  max-width: 256px;
}
