.site-page-text-block {
  margin: 0 auto;
  width: 1050px;
}

.site-page-container-gray {
  background-color: #F5F5F5;
}

.site-page-infobox {
  background-color: #ffffff;
  padding: 75px 50px 100px 50px;
  margin: 100px 0;
}

.site-page-infobox-title {
  font-size: 30px;
  font-weight: 500;
}

.site-page-title {
  font-size: 60px;
  font-weight: 600;
}

.site-page-intro {
  font-size: 35px;
  font-weight: 500;
}

.site-page-main-image {
  display: block;
  margin: 0 auto 100px;
  width: 100%;
  max-width: 1430px;
  aspect-ratio: 1430 / 650;
  object-fit: cover;
}

.site-page-image-full {
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
  max-width: unset;
}

.site-page-image-medium,
.site-page-image-small {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  object-fit: cover;
  background-color: #F8F8F8;
}

.site-page-image-medium {
  width: 730px;
  height: 340px;
}

.site-page-video-medium {
  display: block;
  margin: 0 auto;
  width: 730px;
  max-width: 100%;
}

.site-page-video-medium .site-page-caption {
  padding-left: 0;
  padding-right: 0;
}

.site-page-image-small {
  width: 560px;
  height: 260px;
}

.site-page-block-title {
  font-size: 45px;
  font-weight: 600;
}

.site-page-block-intro {
  font-size: 25px;
  font-weight: 500;
  line-height: 120%;
}

.site-page-p {
  font-size: 20px;
  font-weight: 300;
  line-height: 140%;
}

.site-page-caption {
  padding: 35px 35px 55px;
  font-size: 18px;
  font-weight: 300;
  line-height: 135%;
}


@media screen and (max-width: 1200px) {
  .site-page-text-block {
    width: 100%;
    box-sizing: border-box;
    padding: 0 60px;
  }

  .site-page-title {
    font-size: 50px;
  }

  .site-page-intro {
    font-size: 25px;
    line-height: 120%;
  }

  .site-page-main-image {
    width: 100%;
    margin: 0 0 65px;
  }

  .site-page-image-medium {
    width: 636px;
    height: 290px;
  }

  .site-page-video-medium {
    width: 636px;
  }

  .site-page-image-small {
    width: 578px;
    height: 263px;
  }

  .site-page-block-title {
    font-size: 30px;
  }

  .site-page-block-intro {
    font-size: 20px;
    line-height: 130%;
  }

  .site-page-p {
    font-size: 18px;
    line-height: 130%;
  }

  .site-page-caption {
    line-height: 130%;
    padding: 27px 0px 40px;
  }

  .hardware-table-wrapper {
    padding: 0;
  }

  .site-page-infobox {
    margin: 65px 0;
    padding: 60px 30px 60px 30px;
  }
  
  .site-page-infobox-title {
    font-size: 25px;
  }
}

@media screen and (max-width: 767px) {
  .site-page-text-block {
    width: 90%;
    max-width: 740px;
  }

  .site-page-main-image {
    margin: 0 0 60px;
  }
}

/* TABLE */
.site-page-table {
  box-sizing: border-box;
  overflow: auto;
  width: 100%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  text-align: center;
  border-radius: 15px;
}

.site-page-table-row {
  display: contents;
}

.site-page-table-row > * {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-content: flex-start;
  flex-flow: column wrap;
}

.site-page-table-row > *[class^="site-page-table-cell"],
.site-page-table-row > *[class*="site-page-table-cell"] {
  background: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  transition: 0.3s all linear;
  font-size: 13px;
}

.site-page-table-row:hover > *[class^="site-page-table-cell"],
.site-page-table-row:hover > *[class*="site-page-table-cell"] {
  background: rgba(255, 255, 255, 0.5);
}

.site-page-table-row > *[class^="site-page-table-header"],
.site-page-table-row > *[class*="site-page-table-header"] {
  background: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  transition: 0.3s all linear;
}

.site-page-table-row:hover > *[class^="site-page-table-header"],
.site-page-table-row:hover > *[class*="site-page-table-header"] {
  background: rgba(255, 255, 255, 0.75);
}

.site-page-table-cell-short {
  grid-column: span 1;
  justify-content: flex-start;
  padding-right: 0.4rem;
  padding-left: 0.4rem;
  font-size: 12px;
  text-align: left;
  color: #000;
}

.site-page-table-header-short {
  grid-column: span 1;
  padding: 0.8rem 0.4rem 0.4rem 0.4rem;
  font-size: 14px;
  color: #000;
  background-color: #dadada;
  text-align: left;
}

.site-page-table-header-short:hover {
  color: #000;
  background-color: #dadada;
}

.left-anchors {
  justify-content: flex-start;
}

.site-page-table-header-short.left-anchors {
  font-size: 12px;
  font-weight: 500;
}

.table-text-align-left {
  text-align: left;
}

.site-page-table-cell-short.table-text-align-left {
  font-size: 12px;
  font-weight: 500;
}

.site-page-table .site-page-table-row p + p {
  margin-top: 8px;
}

.site-page-table.site-page-table-glass {
  gap: 0;
  background-color: #eeeeee;
  scroll-margin-top: 75px;
  margin: 0;
  width: 100%;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.site-page-table.site-page-table-glass .site-page-table-row {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row > * {
  border: 0;
  border-top: none !important;
  border-left: none !important;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row > *:last-child {
  border-right: none !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row:last-child > * {
  border-bottom: none !important;
}

.site-page-table.site-page-table-glass > .site-page-table-row:nth-child(n + 2) > * {
  min-height: 150px;
  align-self: stretch;
}

.site-page-table.site-page-table-glass .site-page-table-row > *[class^="site-page-table-cell"],
.site-page-table.site-page-table-glass .site-page-table-row > *[class*="site-page-table-cell"] {
  background: #F4F4F4 !important;
  font-weight: 500;
  transition: 0.3s all linear;
}

.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class^="site-page-table-cell"],
.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class*="site-page-table-cell"] {
  background: #C9C9C9 !important;
}

.site-page-table.site-page-table-glass .site-page-table-row > *[class^="site-page-table-header"],
.site-page-table.site-page-table-glass .site-page-table-row > *[class*="site-page-table-header"] {
  background: #E8E8E8;
  font-weight: 600;
  transition: 0.3s all linear;
}

.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class^="site-page-table-header"],
.site-page-table.site-page-table-glass .site-page-table-row:hover > *[class*="site-page-table-header"] {
  background: #C9C9C9;
}

.hardware-table-wrapper {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
}

.table-header-anchor {
  color: #000 !important;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 2px;
  font-size: 14px;
  font-weight: 500;
}

.table-header-anchor:hover {
  text-underline-offset: 3px;
}

.hardware-table-link {
  color: #000 !important;
  text-decoration: underline;
  cursor: pointer;
  text-underline-offset: 2px;
}

.hardware-table-link:hover {
  text-underline-offset: 3px;
}

.site-page-table .hardware-table-link + .hardware-table-link {
  margin-top: 8px;
}

@media screen and (max-width: 1200px) {
  .hardware-table-wrapper {
    max-width: 100%;
    padding: 0 60px;
  }

  .site-page-table {
    border-radius: 10px;
  }
}

@media screen and (max-width: 768px) {
  .site-page-table.site-page-table-glass {
    width: 100% !important;
    margin: 0 !important;
  }

  .site-page-text-block {
    width: 100%;
    box-sizing: border-box;
    padding: 0 14px;
  }

  .site-page-table {
    border-radius: 5px;
  }

  .site-page-title {
    font-size: 30px;
  }

  .site-page-intro {
    font-size: 21px;
    line-height: 120%;
  }

  .site-page-image-medium,
  .site-page-image-small {
    width: 351px;
    height: 160px;
  }

  .site-page-video-medium {
    width: 351px;
  }

  .site-page-block-title {
    font-size: 22px;
  }

  .site-page-block-intro {
    font-size: 18px;
    line-height: 120%;
  }

  .site-page-p {
    font-size: 16px;
    line-height: 120%;
  }

  .site-page-caption {
    font-size: 11px;
    line-height: 110%;
    padding: 17px 0px 27px;
  }

  .hardware-table-wrapper {
    width: 100%;
    max-width: none;
    padding: 0 7px;
  }

  .site-page-infobox {
    margin: 55px 0;
    padding: 30px 15px 30px 15px;
  }

  .site-page-infobox-title {
    font-size: 18px;
  }

  .site-page-table.site-page-table-glass > .site-page-table-row:nth-child(n + 2) > * {
    min-height: 115px;
  }
  
  .table-header-anchor,
  .site-page-table-header-short {
    font-size: 12px !important;
  }
  .site-page-table-header-short.left-anchors,
  .site-page-table-cell-short {
    font-size: 10px !important;
  }

  .site-page-table .site-page-table-row p + p,
  .site-page-table .hardware-table-link + .hardware-table-link {
    margin-top: 5px;
  }
}

@media (max-width: 550px) {
  .table-header-anchor,
  .site-page-table-header-short {
    font-size: 8px !important;
  }
  .site-page-table-header-short.left-anchors,
  .site-page-table-cell-short {
    font-size: 7px !important;
  }

  .site-page-table-header-short {
    padding: 0.3rem 0.2rem 0.2rem;
  }

  .site-page-table-cell-short {
    padding: 0.3rem 0.2rem 0.2rem;
  }
}
