#rfnc-preview {
  --rfnc-blue: #0878e5;
  --rfnc-blue-strong: #0067d8;
  --rfnc-ink: #1d1f23;
  --rfnc-muted: #687384;
  --rfnc-line: #dbe1e8;
  --rfnc-soft: #f5f7f9;
  --rfnc-radius: 18px;
  background: #fff;
  color: var(--rfnc-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  overflow: hidden;
  padding: clamp(52px, 5vw, 82px) 0;
}

#rfnc-preview[hidden] {
  display: none !important;
}

#rfnc-preview *,
#rfnc-preview *::before,
#rfnc-preview *::after {
  box-sizing: border-box;
}

#rfnc-preview a {
  text-decoration: none;
}

.rfnc__shell {
  margin: 0 auto;
  max-width: 1680px;
  padding: 0 clamp(18px, 2vw, 32px);
}

.rfnc__header {
  align-items: flex-end;
  border-bottom: 1px solid var(--rfnc-line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 22px;
}

.rfnc__header h2 {
  color: var(--rfnc-ink);
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 750;
  letter-spacing: -0.052em;
  line-height: 0.98;
  margin: 0;
}

.rfnc__header p {
  color: var(--rfnc-muted);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.5;
  margin: 12px 0 0;
}

.rfnc__view-all {
  align-items: center;
  color: var(--rfnc-blue-strong);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 700;
  gap: 10px;
  padding: 12px 2px;
  transition: color 180ms ease, transform 180ms ease;
}

.rfnc__view-all:hover,
.rfnc__view-all:focus-visible {
  color: #0054b1;
  transform: translateX(2px);
}

.rfnc__layout {
  align-items: stretch;
  display: grid;
  gap: clamp(22px, 2vw, 34px);
  grid-template-columns: minmax(292px, 320px) minmax(0, 1fr);
}

.rfnc__sidebar {
  align-self: start;
  background: #f5f5f7;
  border: 1px solid #e0e2e6;
  border-radius: var(--rfnc-radius);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  padding: 0 10px 10px;
}

.rfnc__hero {
  background: linear-gradient(135deg, var(--rfnc-hero-start, #f8fafc), var(--rfnc-hero-end, #eef3f8));
  border: 0;
  border-bottom: 1px solid rgba(22, 36, 52, 0.1);
  border-radius: calc(var(--rfnc-radius) - 1px) calc(var(--rfnc-radius) - 1px) 0 0;
  color: var(--rfnc-ink);
  display: block;
  margin: 0 -10px;
  min-height: 212px;
  overflow: hidden;
  padding: 22px;
  position: relative;
  isolation: isolate;
}

.rfnc__hero::after {
  background: linear-gradient(90deg, rgba(248, 250, 252, 0.97) 0%, rgba(248, 250, 252, 0.82) 45%, rgba(248, 250, 252, 0) 78%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.rfnc__hero img {
  height: 104%;
  object-fit: contain;
  object-position: var(--rfnc-hero-position, right center);
  pointer-events: none;
  position: absolute;
  right: -5%;
  top: -2%;
  width: 70%;
  z-index: -2;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
}

.rfnc__hero:hover img,
.rfnc__hero:focus-visible img {
  transform: scale(1.025) translateX(-2px);
}

.rfnc__hero-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  max-width: 64%;
  position: relative;
  z-index: 2;
  transition: opacity 160ms ease, transform 160ms ease;
}

.rfnc__hero.is-changing .rfnc__hero-copy {
  opacity: .72;
  transform: translateY(2px);
}

.rfnc__hero strong {
  color: var(--rfnc-ink);
  font-size: 23px;
  letter-spacing: -0.034em;
  line-height: 1.05;
  margin-top: 0;
  max-width: 220px;
}

.rfnc__hero-subtitle {
  color: #485466;
  font-size: 15px;
  margin-top: 9px;
}

.rfnc__hero-link {
  color: var(--rfnc-blue-strong);
  font-size: 13px;
  font-weight: 750;
  margin-top: 24px;
}

.rfnc__categories-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 16px 2px 9px 6px;
}

.rfnc__categories-head h3 {
  color: var(--rfnc-ink);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.02em;
  margin: 0;
}

.rfnc__categories-all {
  align-items: center;
  background: #0866ff;
  border: 1px solid #0866ff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font: 720 11px/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  gap: 6px;
  justify-content: center;
  min-height: 34px;
  min-width: 96px;
  padding: 0 14px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.rfnc__categories-all:hover,
.rfnc__categories-all:focus-visible {
  background: #075be3;
  border-color: #075be3;
  box-shadow: 0 8px 18px -14px rgba(8, 102, 255, 0.9);
  color: #fff;
  transform: translateY(-1px);
}

.rfnc__category-viewport {
  max-height: 252px;
  min-height: 186px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 7px 2px 0;
  scrollbar-color: var(--rfnc-blue) #dfe5eb;
  scrollbar-width: thin;
}

.rfnc__category-viewport::-webkit-scrollbar {
  width: 5px;
}

.rfnc__category-viewport::-webkit-scrollbar-track {
  background: #dfe5eb;
  border-radius: 20px;
}

.rfnc__category-viewport::-webkit-scrollbar-thumb {
  background: var(--rfnc-blue);
  border-radius: 20px;
}

.rfnc__category-viewport:focus-visible {
  border-radius: 10px;
  outline: 2px solid rgba(8, 120, 229, 0.35);
  outline-offset: 3px;
}

.rfnc__categories {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rfnc__category {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dde3e9;
  border-radius: 11px;
  color: #24282e;
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 7px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  min-height: 55px;
  padding: 8px 9px;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.rfnc__category:hover {
  background: #fff;
  border-color: #cbd4dd;
  transform: translateY(-1px);
}

.rfnc__category.is-active {
  background: #fff;
  border-color: #187cf0;
  box-shadow: 0 5px 16px -10px rgba(0, 108, 219, 0.62);
  color: var(--rfnc-blue-strong);
}

.rfnc__category:focus-visible {
  outline: 3px solid rgba(8, 120, 229, 0.24);
  outline-offset: 1px;
}

.rfnc__category-icon {
  align-items: center;
  color: #343c47;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.rfnc__category.is-active .rfnc__category-icon {
  color: var(--rfnc-blue-strong);
}

.rfnc__category-icon svg,
.rfnc__category-icon img {
  display: block;
  height: 24px;
  object-fit: contain;
  width: 24px;
}

.rfnc__category-name {
  font-size: 12px;
  font-weight: 720;
  line-height: 1.15;
  min-width: 0;
}

.rfnc__category-count {
  align-items: center;
  background: #e8edf2;
  border-radius: 999px;
  color: #566171;
  display: inline-flex;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 740;
  height: 25px;
  justify-content: center;
  min-width: 25px;
  padding: 0 7px;
}

.rfnc__category.is-active .rfnc__category-count {
  background: #e6f2ff;
  color: var(--rfnc-blue-strong);
}

.rfnc__products {
  min-width: 0;
  padding: 8px 0 3px;
}

.rfnc__stage {
  min-width: 0;
  position: relative;
}

.rfnc__product-viewport {
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.rfnc__product-viewport::-webkit-scrollbar {
  display: none;
}

.rfnc__product-viewport:focus-visible {
  border-radius: 17px;
  outline: 2px solid rgba(8, 120, 229, 0.35);
  outline-offset: 4px;
}

.rfnc__track {
  display: grid;
  gap: 14px;
  /* Four complete cards plus 30% of the next card as a continuation cue. */
  grid-auto-columns: calc(23.2558% - 13.03px);
  grid-auto-flow: column;
  padding: 2px 2px 14px;
  transition: opacity 160ms ease, transform 180ms ease;
}

@media (min-width: 1400px) {
  .rfnc__stage::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92) 72%, #fff);
    bottom: 14px;
    content: "";
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 2px;
    width: 36px;
    z-index: 4;
  }
}

.rfnc__products.is-loading .rfnc__track {
  opacity: 0.38;
  pointer-events: none;
  transform: translateY(4px);
}

.rfnc-card {
  background: #fff;
  border: 1px solid #dce2e8;
  border-radius: 17px;
  display: grid;
  grid-template-rows: 210px minmax(145px, 1fr) auto;
  min-height: 470px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: border-color 200ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.rfnc-card:hover {
  border-color: #ccd5de;
  box-shadow: 0 18px 40px -29px rgba(14, 42, 75, 0.45);
  transform: translateY(-2px);
}

.rfnc-card__media {
  background: #f6f7f8;
  overflow: hidden;
  position: relative;
}

.rfnc-card__image {
  align-items: center;
  background: #f6f7f8;
  color: var(--rfnc-ink);
  display: flex;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.rfnc-card__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 350ms cubic-bezier(.2,.7,.2,1);
  width: 100%;
}

.rfnc-card:hover .rfnc-card__image img {
  transform: scale(1.025);
}


.rfnc-card__quick {
  align-items: center;
  appearance: none;
  backdrop-filter: blur(10px);
  background: rgba(35, 38, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  bottom: 14px;
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.8);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: 720 12px/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  gap: 7px;
  justify-content: center;
  left: 50%;
  min-height: 38px;
  opacity: 0;
  padding: 0 14px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 9px);
  transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
  z-index: 3;
}

.rfnc-card__quick svg {
  height: 17px;
  width: 17px;
}

.rfnc-card:hover .rfnc-card__quick,
.rfnc-card:focus-within .rfnc-card__quick {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.rfnc-card__quick:hover,
.rfnc-card__quick:focus-visible {
  background: #111318;
  color: #fff;
  transform: translate(-50%, 0) scale(1.025);
}

.rfnc-card__stock {
  background: rgba(30, 33, 38, 0.82);
  border-radius: 999px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  left: 10px;
  letter-spacing: 0.04em;
  padding: 6px 9px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
  z-index: 2;
}

.rfnc-card__body {
  padding: 16px 14px 12px;
}

.rfnc-card__eyebrow {
  color: var(--rfnc-blue-strong);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rfnc-card__body h3 {
  font-size: 14px;
  font-weight: 750;
  letter-spacing: -0.026em;
  line-height: 1.25;
  margin: 11px 0 0;
}

.rfnc-card__body h3 a {
  color: var(--rfnc-ink);
}

.rfnc-card__body h3 a:hover,
.rfnc-card__body h3 a:focus-visible {
  color: var(--rfnc-blue-strong);
}

.rfnc-card__body p {
  color: var(--rfnc-muted);
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.5;
  margin: 12px 0 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.rfnc-card__footer {
  align-items: center;
  border-top: 1px solid #e2e6ea;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 10px 12px 11px;
}

.rfnc-card__price {
  color: var(--rfnc-ink);
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 780;
  letter-spacing: -0.035em;
  min-height: 22px;
  white-space: nowrap;
}

.rfnc-card__price del {
  color: #8b95a1;
  font-size: 12px;
  font-weight: 500;
}

.rfnc-card__price ins {
  text-decoration: none;
}

.rfnc-card__cart {
  align-items: center;
  appearance: none;
  background: #0866ff;
  border: 1px solid #0866ff;
  border-radius: 999px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: 720 11px/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  gap: 7px;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  white-space: nowrap;
  width: auto;
}

.rfnc-card__cart:hover,
.rfnc-card__cart:focus-visible {
  background: #075be3;
  border-color: #075be3;
  box-shadow: 0 8px 18px -14px rgba(8, 102, 255, 0.9);
  color: #fff;
  transform: translateY(-1px);
}

.rfnc-card__cart:disabled {
  cursor: wait;
  opacity: 0.68;
}

.rfnc__arrow {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d8e0e8;
  border-radius: 50%;
  box-shadow: 0 8px 22px -14px rgba(21, 46, 77, 0.68);
  color: var(--rfnc-blue);
  cursor: pointer;
  display: inline-flex;
  font: 400 34px/1 Arial, sans-serif;
  height: 48px;
  justify-content: center;
  padding: 0 0 4px;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
  width: 48px;
  z-index: 5;
}

.rfnc__arrow:hover,
.rfnc__arrow:focus-visible {
  background: #fff;
  box-shadow: 0 12px 30px -17px rgba(0, 82, 179, 0.75);
  color: var(--rfnc-blue-strong);
  transform: translateY(-50%) scale(1.04);
}

.rfnc__arrow:disabled {
  cursor: default;
  opacity: 0.25;
}

.rfnc__arrow--prev {
  left: -24px;
}

.rfnc__arrow--next {
  right: -24px;
}

.rfnc__progress {
  background: #d7dde3;
  border-radius: 999px;
  height: 4px;
  margin: 27px 2px 0;
  overflow: hidden;
  position: relative;
}

.rfnc__progress span {
  background: var(--rfnc-blue);
  border-radius: inherit;
  display: block;
  height: 100%;
  transform-origin: left center;
  transition: transform 160ms ease, width 160ms ease;
  width: 20%;
}

.rfnc__status:not(.screen-reader-text) {
  color: var(--rfnc-muted);
  font-size: 13px;
  margin: 12px 0 0;
}

@media (max-width: 1399px) {
  .rfnc__track {
    grid-auto-columns: calc((100% - 42px) / 4);
  }
}

@media (max-width: 1179px) {
  .rfnc__layout {
    grid-template-columns: minmax(290px, 320px) minmax(0, 1fr);
  }

  .rfnc__track {
    grid-auto-columns: calc((100% - 28px) / 3);
  }

  .rfnc-card {
    grid-template-rows: 198px minmax(145px, 1fr) auto;
  }

  .rfnc__arrow--prev {
    left: -18px;
  }

  .rfnc__arrow--next {
    right: -18px;
  }
}

@media (max-width: 899px) {
  #rfnc-preview {
    padding: 48px 0;
  }

  .rfnc__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .rfnc__view-all {
    font-size: 14px;
  }

  .rfnc__layout {
    grid-template-columns: 1fr;
  }

  .rfnc__sidebar {
    align-self: stretch;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    padding: 14px;
  }

  .rfnc__hero {
    border: 1px solid rgba(22, 36, 52, 0.1);
    border-radius: 14px;
    grid-row: 1 / span 2;
    margin: 0;
    min-height: 330px;
  }

  .rfnc__categories-head {
    margin: 0 6px;
  }

  .rfnc__category-viewport {
    max-height: 210px;
  }

  .rfnc__products {
    padding-top: 0;
  }

  .rfnc__track {
    grid-auto-columns: calc((100% - 28px) / 3);
  }

  .rfnc__arrow--prev {
    left: 5px;
  }

  .rfnc__arrow--next {
    right: 5px;
  }
}

@media (max-width: 680px) {
  .rfnc__shell {
    padding: 0 14px;
  }

  .rfnc__header h2 {
    font-size: 36px;
  }

  .rfnc__sidebar {
    display: flex;
  }

  .rfnc__hero {
    min-height: 245px;
  }

  .rfnc__category-viewport {
    max-height: 252px;
  }

  .rfnc__track {
    grid-auto-columns: calc((100% - 14px) / 2);
  }

  .rfnc-card {
    grid-template-rows: 190px minmax(145px, 1fr) auto;
  }

  .rfnc-card__footer {
    grid-template-columns: 1fr;
  }

  .rfnc-card__cart {
    width: 100%;
  }
}

@media (max-width: 440px) {
  .rfnc__categories {
    grid-template-columns: 1fr;
  }

  .rfnc__category-viewport {
    max-height: 236px;
  }

  .rfnc__track {
    grid-auto-columns: minmax(255px, 86%);
  }

  .rfnc__arrow {
    height: 42px;
    width: 42px;
  }
}


body.rfnc-qv-open {
  overflow: hidden;
}

.rfnc-qv[hidden] {
  display: none;
}

.rfnc-qv {
  display: grid;
  inset: 0;
  padding: 24px;
  place-items: center;
  position: fixed;
  z-index: 1000000;
}

.rfnc-qv__backdrop {
  appearance: none;
  backdrop-filter: blur(7px);
  background: rgba(18, 21, 26, 0.62);
  border: 0;
  cursor: default;
  inset: 0;
  padding: 0;
  position: absolute;
}

.rfnc-qv__dialog {
  background: #fff;
  border: 1px solid rgba(23, 31, 42, 0.12);
  border-radius: 24px;
  box-shadow: 0 34px 90px -34px rgba(0, 0, 0, 0.62);
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  max-height: calc(100vh - 48px);
  max-width: 820px;
  overflow: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

.rfnc-qv__close {
  align-items: center;
  appearance: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dce2e8;
  border-radius: 50%;
  color: #20242a;
  cursor: pointer;
  display: inline-flex;
  font: 400 25px/1 Arial, sans-serif;
  height: 40px;
  justify-content: center;
  padding: 0 0 3px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  z-index: 3;
}

.rfnc-qv__close:hover,
.rfnc-qv__close:focus-visible {
  background: #f1f3f5;
}

.rfnc-qv__visual {
  align-items: center;
  background: #f4f5f6;
  display: flex;
  justify-content: center;
  min-height: 420px;
  overflow: hidden;
}

.rfnc-qv__visual img {
  height: 100%;
  object-fit: contain;
  padding: 24px;
  width: 100%;
}

.rfnc-qv__content {
  align-self: center;
  padding: 48px 42px;
}

.rfnc-qv__eyebrow {
  color: #0866ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rfnc-qv__content h2 {
  color: #1d1f23;
  font-size: clamp(27px, 3vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 16px 0 0;
}

.rfnc-qv__price {
  color: #1d1f23;
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.035em;
  margin-top: 22px;
}

.rfnc-qv__price del {
  color: #858e99;
  font-size: 13px;
  font-weight: 500;
}

.rfnc-qv__price ins {
  text-decoration: none;
}

.rfnc-qv__description {
  color: #667180;
  font-size: 14px;
  line-height: 1.58;
  margin: 18px 0 0;
}

.rfnc-qv__link {
  align-items: center;
  background: #0866ff;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 740;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  min-height: 44px;
  padding: 0 19px;
}

.rfnc-qv__link:hover,
.rfnc-qv__link:focus-visible {
  background: #075be3;
  color: #fff;
}

@media (hover: none) {
  .rfnc-card__quick {
    bottom: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

@media (max-width: 680px) {
  .rfnc-qv {
    padding: 12px;
  }

  .rfnc-qv__dialog {
    border-radius: 20px;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
  }

  .rfnc-qv__visual {
    min-height: 240px;
  }

  .rfnc-qv__visual img {
    padding: 18px;
  }

  .rfnc-qv__content {
    padding: 28px 24px 30px;
  }

  .rfnc-qv__content h2 {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #rfnc-preview *,
  #rfnc-preview *::before,
  #rfnc-preview *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Homepage assurance breaker — Option 1: precision line */
#rfnc-trust-breaker {
  background: #f2f5f8;
  padding: 0 0 54px;
}

.rfnc-trust__shell {
  margin: 0 auto;
  max-width: 1680px;
  padding: 0 40px;
  width: 100%;
}

.rfnc-trust__grid {
  background: #fff;
  border-bottom: 1px solid #dce3ea;
  border-top: 1px solid #dce3ea;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rfnc-trust__item {
  align-items: center;
  display: grid;
  gap: 13px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-height: 108px;
  min-width: 0;
  padding: 22px 24px;
}

.rfnc-trust__item + .rfnc-trust__item {
  border-left: 1px solid #dce3ea;
}

.rfnc-trust__icon {
  align-items: center;
  background: #e8f3ff;
  border-radius: 50%;
  color: #087de8;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.rfnc-trust__icon svg {
  height: 21px;
  width: 21px;
}

.rfnc-trust__copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rfnc-trust__copy strong {
  color: #202327;
  font: 700 14px/1.3 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.012em;
}

.rfnc-trust__copy small {
  color: #697585;
  font: 400 12px/1.4 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top: 4px;
}

@media (max-width: 980px) {
  #rfnc-trust-breaker {
    padding-bottom: 46px;
  }

  .rfnc-trust__shell {
    padding: 0 24px;
  }

  .rfnc-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rfnc-trust__item:nth-child(3) {
    border-left: 0;
  }

  .rfnc-trust__item:nth-child(-n + 2) {
    border-bottom: 1px solid #dce3ea;
  }
}

@media (max-width: 560px) {
  .rfnc-trust__shell {
    padding: 0 14px;
  }

  .rfnc-trust__grid {
    grid-template-columns: 1fr;
  }

  .rfnc-trust__item {
    min-height: 0;
    padding: 17px 14px;
  }

  .rfnc-trust__item + .rfnc-trust__item {
    border-left: 0;
    border-top: 1px solid #dce3ea;
  }

  .rfnc-trust__item:nth-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  #rfnc-trust-breaker *,
  #rfnc-trust-breaker *::before,
  #rfnc-trust-breaker *::after {
    transition-duration: 0.01ms !important;
  }
}
