@charset "UTF-8";
.section-specs {
  background-color: #F6F7FE;
  font-family: var(--font-family-primary);
  font-size: 16px;
  color: var(--color-grey-darker);
  padding-block: 50px;
  --gap: 24px;
}
.section-specs .container {
  container-type: inline-size;
}
@media (min-width: 1366px) {
  .section-specs .container {
    width: 1350px;
  }
}
.section-specs header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--gap);
  align-items: end;
  gap: var(--gap);
}
.section-specs h2 {
  font-family: var(--font-family-title);
  font-size: var(--tg-font-size-h2);
  font-weight: 500;
  line-height: var(--tg-line-height-h2);
  color: var(--color-blue-darker);
  margin-block: 0;
  flex: max-content 99 0;
}
.section-specs .filter.filter.filter.filter {
  gap: 3px;
  flex: 312px 1 0;
}
.section-specs .filter.filter.filter.filter input {
  padding: 0.33em 0.67em;
  font-size: 14px;
  border-radius: 4px;
  background-color: var(--color-white);
}
.section-specs .filter.filter.filter.filter span {
  text-transform: uppercase;
  font-family: var(--font-family-title);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}
.section-specs .filter.filter.filter.filter span:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: currentColor;
  clip-path: path(evenodd, "M6.36 7.78a4 4 0 1 1 1.41-1.41l1.6 1.59a1 1 0 1 1-1.41 1.41l-1.6-1.6Zm-.03-3.45a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z");
  opacity: 0.5;
}
.section-specs .filter.filter.filter.filter:not(:has(input:-moz-placeholder-shown)) input {
  outline: solid 1px var(--color-blue);
}
.section-specs .filter.filter.filter.filter:focus-within input, .section-specs .filter.filter.filter.filter:not(:has(input:placeholder-shown)) input {
  outline: solid 1px var(--color-blue);
}
.section-specs .filter.filter.filter.filter:not(:has(input:-moz-placeholder-shown)) span {
  opacity: 1;
  color: var(--color-blue-dark);
}
.section-specs .filter.filter.filter.filter:focus-within span, .section-specs .filter.filter.filter.filter:not(:has(input:placeholder-shown)) span {
  opacity: 1;
  color: var(--color-blue-dark);
}
.section-specs .filter.filter.filter.filter:not(:has(input:-moz-placeholder-shown)) span:before {
  opacity: 0.67;
}
.section-specs .filter.filter.filter.filter:focus-within span:before, .section-specs .filter.filter.filter.filter:not(:has(input:placeholder-shown)) span:before {
  opacity: 0.67;
}
.section-specs ul {
  list-style: none;
  padding: 0;
}
.section-specs .category:not(:has(.item:not(.hidden))) {
  display: none;
}
.section-specs .category-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  position: relative;
}
.section-specs .category-title span, .section-specs .category-title:after {
  background-color: rgba(67, 105, 132, 0.2);
}
.section-specs .category-title span {
  padding: 5px 0.5em 3px;
  border-start-start-radius: 6px;
  border-start-end-radius: 6px;
}
.section-specs .category-title:after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -6.5px;
  inset-inline: 0;
}
.section-specs .items {
  margin-top: 24px;
  margin-bottom: 72px;
  display: grid;
  gap: 48px var(--gap);
  grid-template-columns: repeat(auto-fit, 312px);
}
@container (width < 678px) {
  .section-specs .items {
    row-gap: var(--gap);
  }
}
.section-specs .item {
  display: grid;
  gap: 0.33em;
  place-content: start;
}
.section-specs .item.hidden {
  display: none;
}
.section-specs .item .title,
.section-specs .item p {
  margin: 0;
  line-height: 1.35;
}
.section-specs .item p {
  text-wrap: pretty;
}
.section-specs .item .highlight {
  background-color: var(--color-mustard-light);
  font-style: unset;
}
.section-specs .item .button-inline-blue span:after {
  content: "→";
  display: inline-block;
  margin-inline-start: 0.25em;
}
.section-specs .category:last-child .items:last-child {
  margin-bottom: 0;
}
.section-specs .reveal-more {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-blue);
  background-color: var(--color-white);
  border: solid 2px currentColor;
  border-radius: 50px;
  line-height: 1;
  padding: 13px 24px 15px;
  margin-inline: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  cursor: pointer;
  transition: all 0.15s ease-out;
}
.section-specs .reveal-more:hover {
  color: var(--color-btn-hover);
  border-color: var(--color-btn-hover);
}
.section-specs .categories {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-out;
  max-height: 560px;
}
.section-specs .categories:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 230px;
  inset-inline: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(to top, #F6F7FE, rgba(246, 247, 254, 0));
}
.section-specs:has(input[type=checkbox]:checked) .reveal-more {
  display: none;
}
.section-specs:has(input[type=checkbox]:checked) .categories {
  max-height: var(--scroll-height, auto);
}
.section-specs:has(input[type=checkbox]:checked) .categories:after {
  opacity: 0;
}
.section-specs:has(.item:not(.hidden)) .message {
  display: none;
}
/*# sourceMappingURL=section-specs.css.map */
