:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.border-container {
  position: relative;
}

.border {
  position: absolute;
  background-color: var(--red-30);
}
.border.dark {
  background-color: var(--red-main);
}
.border.light {
  background-color: var(--grey-10);
}
.border.white {
  background-color: var(--white-main);
}
.border.red {
  background-color: var(--red-30);
}
.border.black {
  background-color: var(--black-main, #333032);
}
.border.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.black.transparent {
  background-color: rgba(51, 48, 50, 0.2);
}
.border.white.transparent {
  background-color: rgba(255, 255, 255, 0.2);
}
.border.gray {
  background: rgba(51, 48, 50, 0.2);
}

.border.top {
  top: 0;
  left: 0;
}
[lang=en] .border.top {
  right: 0;
  left: auto;
}
.border.top {
  height: 1px;
  width: 0;
}

.border.top-fullwidth {
  top: 0;
  width: 200vw;
  left: -100vw;
}

.border.horizontal-fullwidth {
  height: 1px;
  width: 200vw;
  right: -100vw;
}

.border.bottom-fullwidth {
  bottom: 0;
  height: 1px;
  width: 200vw;
  left: -100vw;
}

.border.top.active-stroke {
  animation: drawBorderTop 1s forwards;
}

.border.right {
  top: 0;
  right: 0;
}
[lang=en] .border.right {
  left: 0;
  right: auto;
}
.border.right {
  width: 1px;
  height: 0;
}

.border.right.active-stroke {
  animation: drawBorderRight 1s forwards;
}

.border.bottom {
  bottom: 0;
  left: 0;
}
[lang=en] .border.bottom {
  right: 0;
  left: auto;
}
.border.bottom {
  height: 1px;
  width: 0;
}

.border.bottom.active-stroke {
  animation: drawBorderBottom 1s forwards;
}

.border.left {
  top: 0;
  left: 0;
}
[lang=en] .border.left {
  right: 0;
  left: auto;
}
.border.left {
  width: 1px;
  height: 0;
}

.border.left.active-stroke {
  animation: drawBorderLeft 1s forwards;
}

@keyframes drawBorderTop {
  to {
    width: 100%;
  }
}
@keyframes drawBorderRight {
  to {
    height: 100%;
  }
}
@keyframes drawBorderBottom {
  to {
    width: 100%;
  }
}
@keyframes drawBorderLeft {
  to {
    height: 100%;
  }
}
.border.left.one-six {
  left: 16.667%;
}
[lang=en] .border.left.one-six {
  right: 16.667%;
  left: auto;
}
.border.left.one-three {
  left: 33.333%;
}
[lang=en] .border.left.one-three {
  right: 33.333%;
  left: auto;
}
.border.left.one-two {
  left: 50%;
}
[lang=en] .border.left.one-two {
  right: 50%;
  left: auto;
}
.border.left.two-three {
  left: 66.667%;
}
[lang=en] .border.left.two-three {
  right: 66.667%;
  left: auto;
}
.border.left.two-three-vertical {
  left: 33.23%;
}
[lang=en] .border.left.two-three-vertical {
  right: 33.23%;
  left: auto;
}
.border.left.five-six {
  left: 83.333%;
}
[lang=en] .border.left.five-six {
  right: 83.333%;
  left: auto;
}

.border.top.one-six {
  top: 16.667%;
}
.border.top.one-four {
  top: 25%;
}
.border.top.twenty-nine {
  top: 28.4%;
}
.border.top.one-three {
  top: 33.333%;
}
.border.top.two-three {
  top: 66.667%;
}
.border.top.one-two {
  top: 50%;
}
.border.top.sixty-five {
  top: 64.2%;
}
.border.top.three-four {
  top: 75%;
}

.timeline-wrapper.year-active .border.top.one-two {
  top: 24%;
}
.timeline-wrapper.year-active .border.top.three-four {
  top: 85%;
}

:root {
  --header-height: 6.7rem;
}
@media (width > 768px) {
  :root {
    --header-height: 11.2rem;
  }
}

.share-popup {
  margin: 15rem 15rem 0rem 0rem;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.share-popup .share-popup-content {
  direction: ltr;
  background: white;
  border-radius: 0.6rem;
  padding: 2.2rem;
  position: relative;
  width: 40rem;
  box-shadow: 0 0 1.1586rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width > 768px) {
  .share-popup .share-popup-content {
    width: 90%;
    max-width: 40rem;
  }
}
.share-popup .share-popup-content .close-popup {
  position: absolute;
  top: 2.2rem;
  left: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black-main);
  width: 2.1rem;
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.2s ease;
}
.share-popup .share-popup-content .close-popup svg {
  width: 100%;
  height: 100%;
}
.share-popup .share-popup-content .close-popup:hover {
  opacity: 0.7;
}
.share-popup .share-popup-content .popup-header {
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.share-popup .share-popup-content .popup-header svg {
  width: 2.0726rem;
  height: 2.1364rem;
  flex-shrink: 0;
}
.share-popup .share-popup-content .popup-header h3 {
  color: var(--neutral-800, #333032);
  text-align: right;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
}
.share-popup .share-popup-content .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .link-section {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  align-items: flex-end;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .link-section .link-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-800);
  text-align: right;
  margin: 0;
}
.share-popup .share-popup-content .popup-content .link-section .link-container {
  background: rgba(0, 0, 0, 0.02);
  border-radius: 0.4rem;
  padding: 0.8rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .link-url {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(51, 48, 50, 0.5);
  text-transform: uppercase;
  margin: 0;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-800);
  transition: opacity 0.2s ease;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn svg {
  width: 100%;
  height: 100%;
}
.share-popup .share-popup-content .popup-content .link-section .link-container .copy-btn:hover {
  opacity: 0.7;
}
.share-popup .share-popup-content .popup-content .divider {
  width: 100%;
  height: 0.1rem;
  background: var(--neutral-200, #E5E5E5);
}
.share-popup .share-popup-content .popup-content .platform-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons .platform-icon {
  border: none;
  border-radius: 0.4rem;
  width: 3.2818rem;
  height: 3.2818rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-icons .platform-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.share-popup .share-popup-content .popup-content .platform-section .platform-label {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--neutral-800, #333032);
  text-align: right;
  margin: 0;
  white-space: nowrap;
}

body.share-popup-open {
  overflow: hidden;
}

.loading-spinner {
  padding: 4rem 2rem;
  font-size: 1.6rem;
}

.systems-and-specifications {
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.systems-and-specifications::-webkit-scrollbar {
  display: none;
}
.systems-and-specifications .yoast-breadcrumbs {
  padding: 3.9rem 0rem 1.9rem 0rem;
  position: relative;
}
@media (width > 768px) {
  .systems-and-specifications .yoast-breadcrumbs {
    padding: 3.9rem 3.3rem 1.9rem 0rem;
  }
}
@media (width <= 768px) {
  .systems-and-specifications .yoast-breadcrumbs::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100vw;
    width: 200vw;
    height: 1px;
    background-color: var(--red-30);
    z-index: 1;
  }
}
@media (width > 768px) {
  .systems-and-specifications {
    padding: 8rem 0 0 0;
  }
}
.systems-and-specifications__content {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.systems-and-specifications__content::-webkit-scrollbar {
  display: none;
}
.systems-and-specifications__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: right;
  margin-bottom: 4rem;
}
@media (width > 768px) {
  .systems-and-specifications__header {
    padding: 0 3.3rem;
    gap: 3.2rem;
    margin-bottom: 6rem;
  }
}
.systems-and-specifications .border.bottom.full {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 0.1rem;
  background-color: var(--red-30, #F4B2C1);
  margin-bottom: 4rem;
}
@media (width > 768px) {
  .systems-and-specifications .border.bottom.full {
    margin-bottom: 6rem;
  }
}
.systems-and-specifications__title {
  padding-top: 4.1rem;
  font-weight: 900;
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--red-main);
  margin: 0;
}
@media (width > 768px) {
  .systems-and-specifications__title {
    font-size: 7.3rem;
  }
}
.systems-and-specifications__filter {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 100%;
  position: relative;
  z-index: 15;
}
@media (width > 768px) {
  .systems-and-specifications__filter {
    width: auto;
    max-width: 100%;
    gap: 2rem;
    justify-content: flex-start;
  }
}
.systems-and-specifications__filter .filter__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  position: relative;
  z-index: 20;
}
@media (width > 768px) {
  .systems-and-specifications__filter .filter__row {
    flex-wrap: nowrap;
  }
}
.systems-and-specifications__filter .filter__show-all .filter__toggle {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.12;
  color: var(--black-main);
  transition: color 0.1s ease;
}
.systems-and-specifications__filter .filter__show-all .filter__toggle:hover {
  color: var(--red-main);
}
.systems-and-specifications__filter .filter__show-all .filter__toggle .filter__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}
.systems-and-specifications__filter .filter__show-all .filter__toggle .filter__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.systems-and-specifications__filter .filter__category-button {
  position: relative;
  z-index: 25;
}
.systems-and-specifications__filter .filter__category-button .filter__toggle-categories {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.12;
  color: var(--black-main);
  transition: color 0.1s ease;
  position: relative;
  z-index: 30;
}
.systems-and-specifications__filter .filter__category-button .filter__toggle-categories:hover {
  color: var(--red-main);
}
.systems-and-specifications__filter .filter__category-button .filter__toggle-categories .filter__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}
.systems-and-specifications__filter .filter__category-button .filter__toggle-categories .filter__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  pointer-events: none;
}
.systems-and-specifications__filter .filter__category-button .filter__toggle-categories .filter__toggle-text {
  pointer-events: none;
}
.systems-and-specifications__filter .filter__categories {
  display: flex;
  width: 100%;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
}
.systems-and-specifications__filter .filter__categories a {
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (width > 768px) {
  .systems-and-specifications__filter .filter__categories {
    width: 100%;
    gap: 0.8rem;
    max-width: 67.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .systems-and-specifications__filter .filter__categories a {
    max-width: none;
  }
}
.systems-and-specifications__filter .filter__categories.expanded {
  justify-content: flex-start;
}
.systems-and-specifications__filter .filter__categories.expanded .filter__category--hidden {
  display: inline-flex;
}
.systems-and-specifications__filter .filter__categories.expanded .filter__more-count {
  display: none;
}
.systems-and-specifications__filter .filter__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: var(--white-main);
  border: 1px solid var(--red-30);
  border-radius: 0.4rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
  color: var(--red-main);
  text-decoration: none;
  transition: all 0.1s ease;
  cursor: pointer;
  white-space: nowrap;
  touch-action: manipulation;
}
@media (width > 768px) {
  .systems-and-specifications__filter .filter__category {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
  }
}
.systems-and-specifications__filter .filter__category:hover, .systems-and-specifications__filter .filter__category.active {
  background: var(--red-main);
  border: none;
  color: var(--white-main);
}
.systems-and-specifications__filter .filter__category--hidden {
  display: none;
}
.systems-and-specifications__filter .filter__more-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--red-main);
  border: 1px solid var(--red-30);
  border-radius: 0.4rem;
}
@media (width > 768px) {
  .systems-and-specifications__filter .filter__more-count {
    display: none;
  }
}
.systems-and-specifications__filter .filter__clear-all-container {
  display: inline-flex;
  align-items: center;
}
.systems-and-specifications__filter .filter__clear-all {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--black-main, #333032);
  font-family: "Simpler", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: opacity 0.1s ease;
  align-self: flex-end;
  margin-right: 1rem;
}
@media (width > 768px) {
  .systems-and-specifications__filter .filter__clear-all {
    margin-top: 1rem;
    align-self: flex-start;
    margin-right: 0;
  }
}
.systems-and-specifications__filter .filter__clear-all:hover {
  opacity: 0.7;
}
@media (width > 768px) {
  .systems-and-specifications__group {
    gap: 3.2rem;
  }
}
.systems-and-specifications__group {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: visible;
}
@media (width > 768px) {
  .systems-and-specifications__group {
    padding-top: 2rem;
  }
}
.systems-and-specifications__group:first-of-type {
  border-top: none;
  padding-top: 0;
}
.systems-and-specifications__group .group__header {
  padding: 0 3.6rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
@media (width > 768px) {
  .systems-and-specifications__group .group__header {
    padding: 0 3.3rem;
    gap: 0.4rem;
  }
}
.systems-and-specifications__group .group__header .group__title {
  position: relative;
  display: inline-block;
  color: var(--red-main);
  font-weight: 400;
  line-height: 1.1;
  font-size: 2.3rem;
  white-space: nowrap;
  padding-inline-end: 1.6rem;
}
@media (width > 768px) {
  .systems-and-specifications__group .group__header .group__title {
    font-size: 3rem;
  }
}
.systems-and-specifications__group .group__header .group__count {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  font-weight: 600;
  color: var(--red-main);
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
}
.systems-and-specifications__group .group__header .group__title-text {
  font-size: 2.3rem;
}
@media (width > 768px) {
  .systems-and-specifications__group .group__header .group__title-text {
    display: inline-block;
    font-size: 3rem;
  }
}
.systems-and-specifications__group .group__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main);
  text-decoration: none;
  transition: color 0.1s ease;
}
@media (width > 768px) {
  .systems-and-specifications__group .group__view-all {
    padding: 0.4rem 0;
  }
}
.systems-and-specifications__group .group__view-all:hover {
  color: var(--red-main);
}
.systems-and-specifications__group .group__view-all svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: currentColor;
}
.systems-and-specifications__group .group__cards {
  display: grid;
  gap: 2rem;
}
@media (width > 768px) {
  .systems-and-specifications__group .group__cards {
    display: flex;
    flex-direction: row;
    gap: 3.8rem;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    border-top: 1px solid var(--red-30);
  }
  .systems-and-specifications__group .group__cards::-webkit-scrollbar {
    display: none;
  }
  .systems-and-specifications__group .group__cards .specification-card {
    flex: 0 0 calc((100% - 7.6rem) / 3);
    min-width: calc((100% - 7.6rem) / 3);
    max-width: calc((100% - 7.6rem) / 3);
    flex-shrink: 0;
    height: 38rem;
  }
  .systems-and-specifications__group .group__cards .specification-card .specification-card__content {
    justify-content: space-between;
  }
  .systems-and-specifications__group .group__cards .specification-card.snap-point {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .systems-and-specifications__group .group__cards.no-scroll {
    overflow-x: hidden;
  }
  .systems-and-specifications__group .group__cards.single-tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 38rem;
    gap: 8.1rem;
    overflow-x: hidden;
    overflow-y: hidden;
    scroll-snap-type: none;
    align-items: stretch;
  }
  .systems-and-specifications__group .group__cards.single-tab-grid .specification-card {
    flex: unset;
    min-width: unset;
    max-width: unset;
    position: relative;
    height: 100%;
  }
  .systems-and-specifications__group .group__cards.single-tab-grid .specification-card .specification-card__content {
    justify-content: space-between;
  }
  .systems-and-specifications__group .group__cards.single-tab-grid .specification-card:nth-child(3n)::after {
    content: "";
    position: absolute;
    bottom: -4.05rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: var(--red-30);
  }
  .systems-and-specifications__group .group__cards.single-tab-grid .specification-card:nth-child(3n+1):not(:nth-child(1))::before {
    content: "";
    position: absolute;
    top: -4.05rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: var(--red-30);
  }
}
.systems-and-specifications__group .group__cards--mobile {
  width: 100%;
  max-width: 100%;
  overflow-x: visible;
  margin-bottom: 2.7rem;
}
.systems-and-specifications__group .group__cards--mobile .swiper-wrapper {
  display: flex;
  max-width: 100%;
  overflow-x: visible;
}
.systems-and-specifications__group .group__cards--mobile .swiper-slide {
  display: flex;
  height: auto;
  width: 100% !important;
  max-width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow-x: visible;
}
.systems-and-specifications__group .group__cards--mobile .specification-card--mobile {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow-x: visible;
}
.systems-and-specifications__group .group__pagination {
  display: flex;
  height: 0.3rem;
  gap: 1.1rem;
  align-items: flex-start;
  margin: 0 0 3.8rem;
}
.systems-and-specifications__group .group__pagination .pagination__bullet {
  height: 0.1rem;
  width: 1.6rem;
  background-color: var(--red-30);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: 0.1s ease;
}
.systems-and-specifications__group .group__pagination .pagination__bullet.active {
  background-color: var(--red-main);
  height: 0.3rem;
}
.systems-and-specifications__group .group__pagination .pagination__bullet:hover {
  background-color: var(--red-main);
}
.systems-and-specifications__group .group__line {
  display: block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 0.1rem;
  background: var(--red-30, #F4B2C1);
}
.systems-and-specifications__group .group__line--top {
  position: absolute;
  margin-bottom: 4rem;
  top: 26%;
}
.systems-and-specifications__group .group__line--bottom {
  position: absolute;
  top: 100%;
}
.systems-and-specifications .specification-card {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: visible;
}
@media (width > 768px) {
  .systems-and-specifications .specification-card {
    border-left: 1px solid var(--red-30);
    border-right: 1px solid var(--red-30);
  }
}
.systems-and-specifications .specification-card--mobile {
  overflow-x: visible;
}
.systems-and-specifications .specification-card--mobile .border.top.image-bottom {
  top: auto;
  bottom: auto;
}
.systems-and-specifications .specification-card-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: visible;
}
.systems-and-specifications .specification-card__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: visible;
}
@media (width <= 768px) {
  .systems-and-specifications .specification-card__image {
    margin-bottom: 2.5rem;
  }
}
.systems-and-specifications .specification-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 18rem;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
@media (width > 768px) {
  .systems-and-specifications .specification-card__image img {
    height: 20.6rem;
  }
}
.systems-and-specifications .specification-card__image .image-line.top-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 0.1rem;
  background: var(--red-20, #F8CCD6);
  z-index: 2;
}
.systems-and-specifications .specification-card__image .image-line.under-image {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 0.1rem;
  background: var(--red-20, #F8CCD6);
  z-index: 2;
}
.systems-and-specifications .specification-card .border.top.hidden-desktop {
  top: 18rem;
}
.systems-and-specifications .specification-card__content {
  display: flex;
  flex-direction: column;
  gap: 5.2rem;
  flex: 1;
  padding: 0.9rem 1.6rem 1.8rem 1.6rem;
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
.systems-and-specifications .specification-card__content .content-line.under-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 37.6rem;
  height: 0.1rem;
  background: var(--red-20, #F8CCD6);
  z-index: 2;
}
.systems-and-specifications .specification-card__title {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--black-main);
  text-align: right;
  margin: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (width > 768px) {
  .systems-and-specifications .specification-card__title {
    text-align: right;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 2.8rem;
  }
}
.systems-and-specifications .specification-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  max-width: 100%;
  flex-wrap: nowrap;
}
.systems-and-specifications .specification-card__download {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main);
  text-decoration: none;
  transition: color 0.1s ease;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}
.systems-and-specifications .specification-card__download span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.systems-and-specifications .specification-card__download:hover {
  color: var(--red-main);
}
.systems-and-specifications .specification-card__download svg {
  color: var(--red-main);
  width: 1.765rem;
  height: 1.749rem;
}
.systems-and-specifications .specification-card__icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.systems-and-specifications .specification-card__view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  color: var(--red-main);
  transition: transform 0.1s ease;
}
.systems-and-specifications .specification-card__view:hover {
  transform: scale(1.1);
}
.systems-and-specifications .specification-card__view svg {
  width: 1.588rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
}
.systems-and-specifications .specification-card__share {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.1s ease;
}
.systems-and-specifications .specification-card__share:hover {
  transform: scale(1.1);
}
.systems-and-specifications .specification-card__share a {
  display: none;
}
.systems-and-specifications .specification-card__share img {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.systems-and-specifications__pagination {
  display: flex;
  justify-content: flex-start;
  padding: 4rem 0 0;
}
@media (width > 768px) {
  .systems-and-specifications__pagination {
    padding: 6rem 0 0;
  }
}
.systems-and-specifications__pagination .pagination__nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
@media (width > 768px) {
  .systems-and-specifications__pagination .pagination__nav {
    gap: 2.5rem;
  }
}
.systems-and-specifications__pagination .pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  color: var(--black-main);
  transition: color 0.1s ease;
}
.systems-and-specifications__pagination .pagination__arrow:hover {
  color: var(--red-main);
}
.systems-and-specifications__pagination .pagination__arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.systems-and-specifications__pagination .pagination__numbers {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.systems-and-specifications__pagination .pagination__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.6rem;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main);
  text-decoration: none;
  transition: all 0.1s ease;
}
.systems-and-specifications__pagination .pagination__number:hover, .systems-and-specifications__pagination .pagination__number.active {
  font-weight: 900;
  color: var(--red-main);
}
.systems-and-specifications__pagination .pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--black-main);
}
.systems-and-specifications__empty {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
}
.systems-and-specifications__empty p {
  font-size: 1.8rem;
  color: var(--black-40);
  margin: 0;
}
