.about__container {
  text-align: center;
}

.about__content,
.about__more-inner p {
  font-family: var(--font-family-body);
  font-size: var(--font-size-body);
  line-height: var(--line-height-body);
  color: var(--color-text);
}

.about__content {
  margin-bottom: var(--space-5);
}

.about__content p {
  margin: 0 0 var(--space-4);
}

.about__content p:last-child,
.about__more-inner p:last-child {
  margin-bottom: 0;
}

.about__accent {
  display: block;
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.about__accent:last-child {
  margin-bottom: 0;
}
.about__button-wrap {
  margin-top: var(--space-5);
  text-align: center;
}

.about__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}

.about--open .about__more {
  grid-template-rows: 1fr;
}

.about__more-inner {
  overflow: hidden;
}

.about__more:not([aria-hidden="false"]) .about__more-inner {
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}

.about--open .about__more .about__more-inner {
  opacity: 1;
}

.about__trigger-text[data-about-less] {
  display: none;
}

.about--open .about__trigger-text[data-about-more] {
  display: none;
}

.about--open .about__trigger-text[data-about-less] {
  display: inline;
}
@media (max-width: 768px) {
  .about__content,
  .about__more-inner p {
    font-size: 14px;
  }
  .about__accent {
    font-size: 20px;
  }
}
@media (max-width: 478px) {
  .about__accent {
    font-size: 16px;
  }
  .about__btn {
    width: 100%;
  }
}
