:root {
  --home-red: #e00012;
  --home-ink: #111;
  --home-copy: #5f5a54;
  --home-muted: #c9c2b8;
  --home-dark: #121110;
  --home-radius: 8px;
  --home-shell: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: var(--home-ink);
  font-family: var(--site-font-sans);
}

img {
  max-width: 100%;
}

.home-page {
  overflow: hidden;
  background: #fff;
}

.home-page + site-footer .Footer_content {
  margin-top: 0;
}

.home-shell {
  width: min(100% - 40px, var(--home-shell));
  margin: 0 auto;
}

@media (min-width: 641px) and (max-width: 1024px) {
  .home-shell {
    width: min(100% - 30px, var(--home-shell));
  }
}

.home-section {
  padding: 72px 0 0;
}

.home-section--products {
  padding-bottom: 72px;
}

.home-section-head {
  max-width: 820px;
  margin: 0 0 34px;
}

.home-section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--home-red);
}

.home-section-title {
  margin: 0;
  color: var(--home-ink);
}

.home-section-copy {
  margin: 0;
  color: var(--home-copy);
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .home-shell {
    width: min(100% - 30px, var(--home-shell));
  }

  .home-section {
    padding-top: 56px;
  }

  .home-section--products {
    padding-bottom: 56px;
  }

  .home-section-head {
    margin-bottom: 28px;
  }

}

/* Hero carousel */
.slider {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  background: #151515;
  cursor: pointer;
  touch-action: pan-y;
}

@media (max-width: 1440px) {
  .slider {
    height: 600px;
  }
}

@media (max-width: 1024px) {
  .slider {
    height: 500px;
  }
}

@media (max-width: 320px) {
  .slider {
    height: 400px;
  }
}

.slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s ease;
}

.slide {
  position: relative;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

.slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  padding: 15px 0 35px;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  cursor: default;
}

.text-content {
  width: 65%;
  text-align: center;
  cursor: default;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.text-content.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.text-content #slide-title.home-hero-title,
.text-content #slide-subtitle {
  margin: 0;
  color: #fff;
  cursor: default;
}

.text-content #slide-title.home-hero-title {
  display: block;
  margin-bottom: 5px;
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  font-size: clamp(28px, 4vw, 52px) !important;
  font-weight: 600 !important;
  line-height: 1.3;
  opacity: 1 !important;
}

.text-content #slide-subtitle {
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 300;
  line-height: 1.4;
}

.dots {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.dot {
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  appearance: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
}

@media (max-width: 640px) {
  .text-content {
    width: 90%;
  }

  .text-content #slide-title.home-hero-title {
    font-size: clamp(24px, 3.5vw, 46px);
    line-height: 1.2;
  }
}

@media (max-width: 320px) {
  .text-content {
    width: 95%;
  }

  .dots {
    gap: 8px;
    margin-top: 12px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

/* Brand introduction */
.home-brand {
  padding: 32px 0 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #e00012 0%, #b9000f 100%);
}

.home-brand__panel {
  position: relative;
  display: grid;
  min-height: 280px;
  padding: 48px 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.home-brand__year {
  grid-column: 1;
  justify-self: start;
  color: #fff;
  text-align: right;
  transform: translateY(-28px);
}

.home-brand__year span {
  display: inline-flex;
  min-height: 32px;
  margin-right: -0.46em;
  margin-bottom: 18px;
  padding: 0;
  align-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.46em;
  line-height: 1;
  text-transform: uppercase;
}

.home-brand__year strong {
  display: block;
  color: #fff;
  font-size: clamp(76px, 11vw, 154px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.home-brand__content {
  grid-column: 2 / 4;
  width: 100%;
}

.home-brand__statement {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.home-brand__copy {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.home-brand__link {
  display: inline-flex;
  min-height: 46px;
  margin-top: 30px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: var(--home-red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.home-brand__link:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

@media (min-width: 1025px) {
  .home-brand__panel {
    align-items: start;
    row-gap: 0;
  }

  .home-brand__year {
    grid-row: 1 / 3;
    align-self: end;
    transform: none;
  }

  .home-brand__content {
    display: contents;
  }

  .home-brand__statement,
  .home-brand__copy,
  .home-brand__link {
    grid-column: 2 / 4;
  }

  .home-brand__statement {
    grid-row: 1;
  }

  .home-brand__copy {
    grid-row: 2;
  }

  .home-brand__link {
    grid-row: 3;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .home-brand__panel {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px 22px;
    align-items: center;
  }

  .home-brand__year {
    grid-column: 1;
    justify-self: start;
    text-align: right;
    transform: none;
  }

  .home-brand__year span {
    min-height: 18px;
    margin-right: 0;
    margin-bottom: 9px;
    font-size: 10px;
    letter-spacing: 0.32em;
  }

  .home-brand__content {
    display: contents;
  }

  .home-brand__statement {
    grid-column: 2;
    align-self: center;
    font-size: clamp(22px, 7vw, 32px);
    line-height: 1.04;
  }

  .home-brand__year strong {
    font-size: clamp(48px, 15vw, 66px);
  }

  .home-brand__copy,
  .home-brand__link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .home-brand {
    padding: 26px 0 0;
  }

  .home-brand__panel {
    min-height: 0;
    padding: 38px 0;
  }

  .home-brand__copy {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.68;
  }

  .home-brand__link {
    display: flex;
    width: fit-content;
    min-height: 40px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 24px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .home-brand__statement {
    font-size: clamp(21px, 6.6vw, 28px);
  }
}

/* Product cards */
.feature-container,
.feature-grid {
  width: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-item {
  position: relative;
  display: block;
  overflow: visible;
  color: inherit;
  text-decoration: none;
}

.feature-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--home-red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.3s linear;
}

.feature-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.feature-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--home-radius);
  background: rgba(255, 255, 255, 0.05);
}

.feature-item--od .feature-img-container {
  background: #ffcf63;
}

.feature-item--dd .feature-img-container {
  background: #7ac7cc;
}

.feature-item--rv .feature-img-container {
  background: #ffd9ac;
}

.feature-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transition: transform 0.3s linear;
}

.feature-item:hover .feature-img {
  transform: scale(1.02);
}

.feature-content {
  width: 100%;
  padding: 16px 2px 0;
  text-align: left;
}

.feature-title {
  display: inline;
  margin: 0;
  color: var(--home-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
}

.feature-subtitle {
  display: inline-flex;
  min-height: 22px;
  margin-left: 9px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--home-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  vertical-align: 2px;
}

.feature-excerpt {
  margin: 11px 0 0;
  color: var(--home-copy);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-content {
    padding: 14px 0 0;
  }

  .feature-title {
    font-size: 15px;
    line-height: 1.2;
  }

  .feature-subtitle {
    min-height: 19px;
    margin-left: 6px;
    padding: 0 7px;
    font-size: 11px;
    letter-spacing: 0.02em;
    vertical-align: 1px;
  }

  .feature-excerpt {
    font-size: 12px;
    line-height: 1.52;
  }
}

@media (max-width: 360px) {
  .feature-grid {
    gap: 26px 14px;
  }

  .feature-title {
    font-size: 14px;
  }

  .feature-subtitle {
    min-height: 18px;
    margin-left: 5px;
    padding: 0 6px;
    font-size: 10px;
  }
}

/* TECH & INFO */
.home-section--tech {
  padding: 76px 0;
  background: var(--home-dark);
}

@media (max-width: 640px) {
  .home-section--tech {
    padding-bottom: 42px;
  }
}

.home-section--tech .home-section-head {
  margin-bottom: 40px;
}

.home-section--tech .home-section-title {
  color: #fff;
}

.news-container,
.news-section,
.news-list {
  width: 100%;
}

.news-container {
  margin-bottom: 0;
}

.news-list {
  --news-side-gap: 0;
  --news-compact-height: auto;
  --news-featured-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.9fr);
  align-items: start;
  gap: clamp(34px, 4vw, 58px);
}

.news-item {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.24s ease;
}

.news-item:hover {
  opacity: 0.88;
}

.news-item-featured {
  grid-column: 1;
  height: var(--news-featured-height);
  flex-direction: column;
}

.news-side-list {
  display: flex;
  height: var(--news-featured-height);
  min-width: 0;
  flex-direction: column;
  gap: var(--news-side-gap);
  grid-column: 2;
}

.news-item-compact {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.news-item-compact:first-child {
  padding-top: 0;
}

.news-item-compact:last-child {
  border-bottom: 0;
}

.news-img-container {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}

.news-item-featured > .news-img-container {
  width: 100%;
  height: 332px;
  margin: 0;
}

.news-item-compact > .news-img-container {
  width: 178px;
  height: 112px;
  margin: 0 22px 0 0;
}

.news-img-frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--home-radius);
  background: rgba(255, 255, 255, 0.06);
}

.news-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transition: transform 0.3s linear;
}

.news-item:hover .news-img {
  transform: scale(1.012);
}

.news-content {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
}

.news-item-featured > .news-content {
  padding: 24px 0 0;
}

.news-item-compact > .news-content {
  gap: 8px;
  overflow: hidden;
  padding: 0;
}

.news-title {
  display: -webkit-box;
  margin: 0 0 5px;
  overflow: hidden;
  color: #f4f1ea;
  font-weight: 600;
  letter-spacing: -0.02em;
  -webkit-box-orient: vertical;
}

.news-item-featured .news-title {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.12;
  -webkit-line-clamp: 2;
}

.news-item-compact .news-title {
  font-size: 1.02rem;
  line-height: 1.25;
  -webkit-line-clamp: 1;
}

.news-date {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--home-red);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-item-compact .news-date {
  margin-bottom: 0;
}

.news-excerpt {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
}

.news-item-featured .news-excerpt {
  max-height: none;
  max-width: 720px;
  font-size: 1rem;
  -webkit-line-clamp: 3;
}

.news-item-compact .news-excerpt {
  max-height: 4.5em;
  -webkit-line-clamp: 3;
}

.news-top-row,
.news-top-row + .news-content {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .news-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
  }

  .news-side-list {
    display: contents;
    height: auto;
  }

  .news-item-featured,
  .news-item-compact {
    height: auto;
    flex-direction: column;
    padding: 0;
    border-bottom: 0;
  }

  .news-item > .news-img-container {
    width: 100%;
    height: auto;
    margin: 0 0 14px;
    aspect-ratio: 16 / 9;
    flex: none;
  }

  .news-item > .news-img-container + .news-content {
    width: 100%;
    padding: 0;
    gap: 8px;
    justify-content: flex-start;
    flex: none;
  }

  .news-item .news-title {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  .news-item .news-date {
    margin: 0;
  }

  .news-item .news-excerpt {
    max-height: none;
    font-size: 0.92rem;
    line-height: 1.45;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 640px) {
  .news-list {
    --news-featured-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .news-side-list {
    height: auto;
    grid-column: 1;
    gap: 18px;
  }

  .news-item-featured,
  .news-item-compact {
    height: auto;
  }

  .news-item-featured > .news-img-container {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .news-list {
    display: block;
  }

  .news-list > .news-item-featured {
    margin-bottom: 20px;
  }

  .news-side-list {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 24px;
    gap: 0;
  }

  .news-item {
    display: block;
    margin-bottom: 20px;
    padding: 0;
    box-shadow: none;
  }

  .news-item-compact {
    margin-bottom: 0;
    padding: 16px 0;
  }

  .news-side-list .news-item {
    margin-bottom: 0;
  }

  .news-item > .news-img-container,
  .news-item > .news-img-container + .news-content {
    display: none;
  }

  .news-top-row {
    display: flex;
    margin-bottom: 8px;
    align-items: flex-start;
  }

  .news-top-row + .news-content {
    display: block;
  }

  .news-item-compact .news-top-row .news-img-container {
    width: 120px;
    height: 68px;
    margin: 0 15px 0 0;
    border-radius: 6px;
  }

  .news-item-compact .news-title-date-container {
    display: flex;
    min-height: 68px;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
  }

  .news-item-compact .news-date {
    line-height: 1;
    transform: translateY(-1px);
  }

  .news-item-featured {
    display: block;
  }

  .news-item-featured > .news-img-container {
    display: block !important;
    width: 100% !important;
    height: clamp(185px, 56vw, 260px) !important;
    margin: 0 0 14px !important;
  }

  .news-item-featured > .news-img-container + .news-content {
    display: flex !important;
    width: 100%;
    padding: 0 2px 2px;
    flex-direction: column;
    gap: 8px;
  }

  .news-item-featured .news-top-row,
  .news-item-featured .news-top-row + .news-content {
    display: none !important;
  }

  .news-item-featured .news-title {
    margin: 0;
    font-size: clamp(1.08rem, 4.8vw, 1.28rem);
    line-height: 1.25;
  }

  .news-item-compact .news-title {
    font-size: 1rem;
    line-height: 1.2;
    -webkit-line-clamp: 2;
  }

  .news-item-featured .news-date {
    margin: 0;
  }

  .news-item-featured .news-excerpt {
    max-height: none;
    font-size: 0.92rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .news-list > .news-item-featured,
  .news-item {
    margin-bottom: 16px;
  }

  .news-side-list {
    gap: 16px;
  }

  .news-item-compact .news-top-row .news-img-container {
    width: 100px;
    height: 56px;
    margin-right: 12px;
  }

  .news-item-compact .news-title-date-container {
    min-height: 56px;
  }
}

@media (max-width: 320px) {
  .news-item-compact .news-top-row .news-img-container {
    width: 86px;
    height: 48px;
    margin-right: 10px;
  }

  .news-item-compact .news-title-date-container {
    min-height: 48px;
  }
}

/* Recommended products */
.home-section--recommended {
  --product-ref-red: var(--home-red);
  --product-ref-radius: var(--home-radius);
}

.product-related {
  background: #fff;
  color: #111;
  margin-bottom: 60px;
  padding: 72px 20px 0;
}

.product-related__inner {
  width: 100%;
  max-width: var(--site-shell-width, var(--home-shell));
  margin: 0 auto;
}

.product-section-title {
  max-width: 780px;
  margin-left: 0;
  color: currentColor;
}

.product-related__carousel {
  display: block;
  background: transparent;
}

.product-related__viewport {
  min-width: 0;
  overflow: hidden;
  background: transparent;
  touch-action: pan-y;
}

.product-related__track {
  --related-gap: 18px;
  display: flex;
  gap: var(--related-gap);
  align-items: flex-start;
  transform: translate3d(0, 0, 0);
  transition: transform 1.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-related__dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  min-height: 14px;
  margin-top: 28px;
}

.product-related__dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.24);
  cursor: pointer;
  transition: background-color 0.28s ease, transform 0.28s ease;
}

.product-related__dot.is-active {
  background: var(--product-ref-red);
  transform: scale(1.18);
}

@media (hover: hover) and (pointer: fine) {
  .product-related__dot:hover {
    background: var(--product-ref-red);
    transform: scale(1.18);
  }
}

.product-related__card {
  position: relative;
  display: block;
  flex: 0 0 calc((100% - var(--related-gap) * 3) / 4);
  align-self: start;
  min-width: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  box-shadow: none;
}

.product-related__card:hover {
  background: transparent;
}

.product-related__card::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--product-ref-red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.28s ease;
}

.product-related__card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-related__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--product-ref-radius);
  background: rgba(255, 255, 255, 0.05);
}

.product-related__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  transition: transform 0.3s linear;
}

.product-related__card:hover .product-related__image img {
  transform: scale(1.02);
}

.product-related__content {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 2px 0;
  text-align: left;
  transform-origin: center center;
}

.product-related__card:hover .product-related__content {
  transform: none;
}

.product-related__content h3 {
  display: inline;
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.32;
}

.product-related__content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin-left: 9px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--product-ref-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  vertical-align: 2px;
}

.product-related__content p {
  margin: 11px 0 0;
  color: #4b4b4b;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .product-related {
    padding-top: 58px;
  }
}

@media (min-width: 561px) and (max-width: 1024px) {
  .home-section--recommended.product-related {
    padding-right: 15px;
    padding-left: 15px;
  }

  .home-section--recommended .product-related__track {
    --related-gap: 28px;
  }

  .product-related__card {
    flex-basis: calc((100% - var(--related-gap) * 2) / 3);
  }
}

@media (max-width: 560px) {
  .product-related {
    margin-bottom: 30px;
    padding: 50px 12px 0;
  }

  .product-related__track {
    --related-gap: 12px;
  }

  .product-related__dots {
    gap: 10px;
    margin-top: 20px;
  }

  .product-related__dot {
    width: 11px;
    height: 11px;
  }

  .product-related__card {
    flex-basis: calc((100% - var(--related-gap)) / 2);
  }

  .product-related__content {
    padding: 13px 0 0;
  }

  .product-related__content h3 {
    font-size: 14px;
    line-height: 1.2;
  }

  .product-related__content span {
    min-height: 18px;
    margin-left: 5px;
    padding: 0 6px;
    font-size: 10px;
    letter-spacing: 0.02em;
    vertical-align: 1px;
  }

  .product-related__content p {
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.52;
  }
}

@media (max-width: 360px) {
  .product-related {
    margin-bottom: 0;
  }
}
