
  .arris-rtr {
    background: #0b0b0b;
    color: #fff;
    padding: 84px 24px 94px;
    overflow: hidden;
  }

  .arris-rtr__inner {
    max-width: 1440px;
    margin: 0 auto;
  }

  .arris-rtr__head {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .arris-rtr__eyebrow {
    margin: 0 0 12px;
    color: #ff7a1a;
    font-size: 12px;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 800;
  }

  .arris-rtr__head h2 {
    margin: 0;
    color: #fff;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
    font-weight: 900;
  }

  .arris-rtr__head p {
    margin: 16px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 17px;
    line-height: 1.6;
  }

  .arris-rtr__showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
    gap: 20px;
    align-items: stretch;
  }

  .arris-rtr__hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    padding: 34px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    border: 1px solid rgba(255,255,255,.12);
    text-decoration: none;
  }

  .arris-rtr__hero img {
    width: 100%;
    height: 100%;
    max-height: 470px;
    object-fit: contain;
    display: block;
    transition: transform .7s ease;
  }

  .arris-rtr__hero:hover img {
    transform: scale(1.035);
  }

  .arris-rtr__list {
    display: grid;
    gap: 12px;
  }

  .arris-rtr__item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    min-height: 132px;
    padding: 12px;
    border-radius: 8px;
    background: #111;
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    text-decoration: none;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
  }

  .arris-rtr__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,122,26,.55);
    background: #151515;
  }

  .arris-rtr__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 108px;
    padding: 8px;
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff, #f2f2f2);
  }

  .arris-rtr__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .arris-rtr__info strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.15;
    text-transform: uppercase;
    font-weight: 900;
  }

  .arris-rtr__info em {
    display: block;
    margin-top: 7px;
    color: rgba(255,255,255,.62);
    font-size: 13px;
    line-height: 1.45;
    font-style: normal;
  }

  .arris-rtr__arrow {
    color: #ff8a2a;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
  }

  .arris-rtr__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 4px;
    background: #ff7a1a;
    color: #050505;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
  }

  .arris-rtr__all:hover {
    background: #ff943d;
    transform: translateY(-1px);
  }

  @media screen and (max-width: 1024px) {
    .arris-rtr__showcase {
      grid-template-columns: 1fr;
    }

    .arris-rtr__hero {
      min-height: 430px;
    }

    .arris-rtr__hero img {
      max-height: 360px;
    }

    .arris-rtr__head h2 {
      font-size: 36px;
    }
  }

  @media screen and (max-width: 768px) {
    .arris-rtr {
      padding: 58px 16px 70px;
    }

    .arris-rtr__head {
      margin-bottom: 28px;
    }

    .arris-rtr__head h2 {
      font-size: 30px;
      line-height: 1.1;
    }

    .arris-rtr__head p {
      font-size: 15px;
      line-height: 1.6;
    }

    .arris-rtr__hero {
      min-height: auto;
      aspect-ratio: 4 / 3;
      padding: 20px;
    }

    .arris-rtr__hero img {
      max-height: 100%;
    }

    .arris-rtr__item {
      grid-template-columns: 96px minmax(0, 1fr);
      min-height: 112px;
      gap: 14px;
    }

    .arris-rtr__thumb {
      height: 88px;
      padding: 7px;
    }

    .arris-rtr__info strong {
      font-size: 16px;
    }

    .arris-rtr__arrow {
      display: none;
    }

    .arris-rtr__all {
      width: 100%;
    }
  }
