.about__section {
  border-top: 10px;
  border-style: solid;
  border-color: var(--decoration);
}

.about__section .container > svg {
  fill: #fff;
  display: block;
  width: 111px;
  height: 66px;
  margin: -25px auto 0;
}

.about__section__content {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 48px;
}

.about__section__text > *:not(:last-child) {
  margin-bottom: 20px;
}

.about__section__content h2,
.about__section__content p {
  margin: 0 auto;
}

.about__section__content h2 {
  max-width: 96%;
}

.about__section__content p {
  line-height: 1.5;
  max-width: 80%;
}

.about__section__image {
  width: 100%;
  max-width: 400px;
  height: auto;
  /* margin-top: -50px; */
  margin-top: 60px;
}

.about__section__content .link__button {
  max-width: 65%;
  margin: 0 auto;
  padding: 20px 30px;
  line-height: 1;
}

.about__section__content .link__button span {
  display: block;
  flex: 1;
}

@media (min-width: 1024px) {
  .about__section .container > svg {
    width: 152px;
    height: 152px;
    margin-top: -78px;
  }
  .about__section__content {
    padding-top: 50px;
    gap: 40px;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .about__section__text {
    width: 50%;
    text-align: left;
    font-size: 19px;
  }

  .about__section__content p,
  .about__section__content h2 {
    max-width: 100%;
  }
  .about__section__image {
    width: 50%;
    max-width: 800px;
    margin-top: 0;
    height: 534px;
    object-fit: cover;
  }
  .about__section__content .link__button {
    margin: 0;
  }
}