.characteristics {
  background-color: var(--background-color);
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 80px;
}


.characteristics .container {
  display: flex;
  justify-content: space-between;
  gap: 125px;
}
.characteristic-content {
  display: flex;
  flex-direction: column;
  gap: 40px;

  width: 100%;
  max-width: 400px;
}
.characteristics .container:not(:has(.characteristic-dropdown)) .characteristic-content {
  max-width: none;
}
.characteristic-content-text {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
}
.characteristic-content-title {
  font-weight: 700;
  color: var(--heading);
  font-size: 32px;
  line-height: 1.2;
}
.product-info__description {
  font-size: 16px;
  line-height: 1.6;
}
.characteristic-content-button {
  padding: 16px 30px;
}

.characteristic-dropdown .dropdown {
  display: flex;
  flex-direction: column;
}


.dropdown.opened .dropdown__toggler {
  transform: rotateZ(-45deg);
}
.characteristic-dropdown .dropdown__label {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading);
}

.characteristic-dropdown .dropdown {
  --padding: 24px;
  --border-radius: 5px;

  border-radius: 4px;

  width: 100%;
  cursor: pointer;
  background-color: var(--white);
}



@media (max-width:992px) {
  .characteristics .container {
    flex-direction: column;
    gap: 30px;
  }
  .characteristic-content {
    max-width: 500;
    gap: 20px;
  }
  .characteristics {
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.product-info__description p,
.characteristic-content-text p {
  margin: 0 0 1.1em 0;
}
.product-info__description p:first-child,
.characteristic-content-text p:first-child {
  margin-top: 0;
}
.product-info__description p:last-child,
.characteristic-content-text p:last-child {
  margin-bottom: 0;
}
.product-info__description ul,
.product-info__description ol,
.characteristic-content-text ul,
.characteristic-content-text ol {
  margin: 0 0 1em 1.5em;
}
.product-info__description li,
.characteristic-content-text li {
  margin-bottom: 0.25em;
}
.product-info__description strong,
.characteristic-content-text strong {
  font-weight: 700;
}
.product-info__description em,
.characteristic-content-text em {
  font-style: italic;
}
.product-info__description h1,
.product-info__description h2,
.product-info__description h3,
.product-info__description h4,
.product-info__description h5,
.product-info__description h6,
.characteristic-content-text h1,
.characteristic-content-text h2,
.characteristic-content-text h3,
.characteristic-content-text h4,
.characteristic-content-text h5,
.characteristic-content-text h6 {
  margin: 1.4em 0 0.5em;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.3;
}
.characteristic-content-text h1,
.characteristic-content-text h2 {
  font-size: 22px;
}
.characteristic-content-text h3,
.characteristic-content-text h4 {
  font-size: 18px;
}
.characteristic-content-text h5,
.characteristic-content-text h6 {
  font-size: 16px;
}
.product-info__description h1,
.product-info__description h2 {
  font-size: 18px;
}
.product-info__description h3,
.product-info__description h4,
.product-info__description h5,
.product-info__description h6 {
  font-size: 16px;
}
.product-info__description :is(h1, h2, h3, h4, h5, h6):first-child,
.characteristic-content-text :is(h1, h2, h3, h4, h5, h6):first-child {
  margin-top: 0;
}
.product-info__description a,
.characteristic-content-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

.product-info__description body,
.characteristic-content-text body {
  display: contents;
  margin: 0;
  font: inherit;
}
.product-info__description [style*="font-size"],
.product-info__description [style*="font-family"],
.product-info__description [style*="line-height"],
.characteristic-content-text [style*="font-size"],
.characteristic-content-text [style*="font-family"],
.characteristic-content-text [style*="line-height"] {
  font-size: inherit !important;
  font-family: inherit !important;
  line-height: inherit !important;
}