.rod-page {
  --ink:#24272a;
  --anth:#424242;
  --gold:#bea885;
  --gold-dark:#7a5825;
  --cream:#f2ece3;
  --paper:#fbfaf7;
  --line:#ded4c7;
  --muted:#5f5850;
  color: var(--ink);
  background: #fff;
}
.rod-page * {
  box-sizing: border-box;
}
.rod-wrap {
  width: min(1220px, calc(100% - 28px));
  margin: auto;
}
.rod-kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 850;
  color: #805a24;
}
.rod-page h1,
.rod-page h2 {
  font-family:
    Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -.035em;
}
.rod-hero {
  background: var(--cream);
  padding: 30px 0 58px;
}
.rod-breadcrumbs {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
  color: #6f675e;
}
.rod-breadcrumbs a {
  color: #51483e;
}
.rod-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}
.rod-hero h1 {
  font-size: clamp(46px, 5vw, 76px);
  line-height: .98;
  margin: 0 0 20px;
  max-width: 700px;
}
.rod-lead {
  font-size: 18px;
  line-height: 1.72;
  color: #504941;
  max-width: 720px;
}
.rod-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.rod-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.rod-btn--dark {
  background: var(--ink);
  color: #fff;
}
.rod-btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #202321;
}
.rod-btn--line {
  color: var(--ink);
  background: transparent;
}
.rod-hero__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 26px;
}
.rod-hero__facts div {
  border-top: 2px solid var(--gold);
  padding-top: 9px;
}
.rod-hero__facts strong,
.rod-hero__facts span {
  display: block;
}
.rod-hero__facts strong {
  font-size: 14px;
}
.rod-hero__facts span {
  font-size: 12px;
  color: #6e665d;
  margin-top: 3px;
}
.rod-media {
  margin: 0;
  position: relative;
}
.rod-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
}
.rod-media figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(36, 39, 42, .92);
  color: #fff;
  padding: 13px 15px;
  font-size: 13px;
  line-height: 1.5;
}
.rod-section {
  padding: 72px 0;
}
.rod-section--cream {
  background: var(--cream);
}
.rod-section--dark {
  background: var(--ink);
  color: #fff;
}
.rod-head {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 28px;
}
.rod-head h2 {
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.04;
  margin: 0;
}
.rod-head p {
  margin: 0;
  line-height: 1.75;
  color: var(--muted);
}
.rod-section--dark .rod-head p {
  color: #e6e2dc;
}
.rod-section--dark .rod-kicker {
  color: #e2c28d;
}
.rod-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.rod-choice {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.rod-choice img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.rod-choice__body {
  padding: 22px;
}
.rod-choice h3 {
  margin: 0 0 8px;
  font-size: 25px;
}
.rod-choice p {
  margin: 0 0 16px;
  color: #5b544c;
  line-height: 1.65;
}
.rod-choice a {
  font-weight: 850;
  color: #4f3920;
}
.rod-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.rod-feature {
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}
.rod-section--dark .rod-feature {
  background: #2d3032;
  border-color: #4b4f51;
}
.rod-feature strong {
  display: block;
  font-size: 19px;
  margin-bottom: 8px;
}
.rod-feature p {
  margin: 0;
  line-height: 1.65;
  color: #625b53;
}
.rod-section--dark .rod-feature p {
  color: #e2ded8;
}
.rod-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.rod-step {
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
}
.rod-step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e9dac4;
  color: #604317;
  font-weight: 900;
  font-size: 11px;
  margin-bottom: 13px;
}
.rod-step strong {
  display: block;
  font-size: 16px;
}
.rod-step p {
  margin: 6px 0 0;
  color: #625b53;
  line-height: 1.55;
  font-size: 13px;
}
.rod-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: center;
}
.rod-split img {
  display: block;
  width: 100%;
  height: auto;
}
.rod-copy h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  margin: 0 0 16px;
  line-height: 1.05;
}
.rod-copy p {
  line-height: 1.75;
  color: #574f47;
}
.rod-copy ul {
  padding-left: 18px;
  line-height: 1.7;
  color: #574f47;
}
.rod-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.rod-faq details {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 17px;
}
.rod-faq summary {
  font-weight: 850;
  cursor: pointer;
  padding: 17px 28px 17px 0;
  position: relative;
}
.rod-faq summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 11px;
  font-size: 24px;
  color: #815c25;
}
.rod-faq details[open] summary:after {
  content: "–";
}
.rod-faq p {
  margin: 0 0 17px;
  color: #5d554d;
  line-height: 1.7;
}
.rod-linkcards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.rod-linkcard {
  border: 1px solid var(--line);
  padding: 16px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
}
.rod-linkcard strong {
  display: block;
}
.rod-linkcard span {
  display: block;
  margin-top: 5px;
  color: #665e56;
  font-size: 12px;
  line-height: 1.45;
}
.rod-free {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #e6d4ba;
  padding: 20px 22px;
}
.rod-free b {
  font-size: 18px;
}
.rod-free span {
  font-size: 13px;
  line-height: 1.55;
}
.rod-final {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 55px max(24px, calc((100vw - 1220px)/2));
  background: #e6d4ba;
}
.rod-final h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  margin: 0;
}
.rod-final p {
  max-width: 780px;
  line-height: 1.65;
}
.rod-shopbar {
  position: sticky;
  top: 0;
  z-index: 15;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}
.rod-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.rod-filter button {
  border: 1px solid #d6ccbf;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.rod-filter button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.rod-filter-search {
  margin-left: auto;
  min-width: 260px;
  height: 40px;
  border: 1px solid #d6ccbf;
  padding: 0 12px;
  font: inherit;
}
.rod-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.rod-product {
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.rod-product[hidden] {
  display: none !important;
}
.rod-product__visual {
  display: grid;
  place-items: center;
  min-height: 150px;
  background: #f5f1ea;
  padding: 18px;
}
.rod-product__visual span {
  position: relative;
  display: block;
}
.rod-icon-roede {
  width: 85%;
  height: 18px;
  border-radius: 12px;
  background: #2f3133;
}
.rod-product[data-color=rvs] .rod-icon-roede {
  background:
    linear-gradient(
      180deg,
      #eeeeec,
      #9f9f9c 52%,
      #dadad8);
}
.rod-icon-ring {
  width: 84px;
  height: 84px;
  border: 14px solid #2f3133;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #676767;
}
.rod-product[data-color=rvs] .rod-icon-ring {
  border-color: #b8b8b5;
  box-shadow: inset 0 0 0 2px #f2f2ef;
}
.rod-icon-support {
  width: 26px;
  height: 86px;
  background: #2f3133;
  border-radius: 6px;
}
.rod-icon-support:after {
  content: "";
  position: absolute;
  width: 78px;
  height: 18px;
  background: inherit;
  left: 0;
  top: 0;
  border-radius: 10px;
}
.rod-product[data-color=rvs] .rod-icon-support {
  background: #b9b9b6;
}
.rod-icon-cap {
  width: 72px;
  height: 72px;
  background: #2f3133;
  border-radius: 50%;
}
.rod-product[data-color=rvs] .rod-icon-cap {
  background:
    linear-gradient(
      135deg,
      #efefed,
      #969692);
}
.rod-icon-connector {
  width: 100px;
  height: 16px;
  border: 3px solid #777;
  border-radius: 8px;
  background: #d0d0cd;
}
.rod-product__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.rod-product__type {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: #7a5a2b;
  font-weight: 850;
}
.rod-product h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 8px 0;
}
.rod-product p {
  margin: 0;
  color: #625b53;
  line-height: 1.6;
  font-size: 13px;
}
.rod-product__foot {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 17px;
}
.rod-product__price {
  font-size: 21px;
  font-weight: 900;
}
.rod-product__price small {
  display: block;
  font-size: 10px;
  color: #756d65;
  font-weight: 600;
}
.rod-product__link {
  display: inline-flex;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  padding: 10px 12px;
}
.rod-empty {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
}
.rod-product-page .rod-hero__grid {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
}
.rod-item-visual {
  min-height: 430px;
  background: #f6f2eb;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.rod-item-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(190, 168, 133, .16),
      transparent 55%);
}
.rod-item-visual .rod-icon-roede {
  width: 82%;
  height: 24px;
}
.rod-item-visual .rod-icon-ring {
  width: 150px;
  height: 150px;
  border-width: 24px;
}
.rod-item-visual .rod-icon-support {
  transform: scale(1.7);
}
.rod-item-visual .rod-icon-cap {
  width: 120px;
  height: 120px;
}
.rod-item-visual .rod-icon-connector {
  width: 180px;
  height: 25px;
}
.rod-item-panel {
  padding: 10px 0;
}
.rod-item-panel h1 {
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 1.02;
}
.rod-item-price {
  font-size: 36px;
  font-weight: 900;
  margin: 20px 0 4px;
}
.rod-item-vat {
  font-size: 12px;
  color: #655d54;
}
.rod-item-free {
  display: inline-block;
  margin: 15px 0;
  background: #e8dac6;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 850;
}
.rod-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.rod-qty label {
  font-weight: 850;
}
.rod-qty input {
  width: 86px;
  height: 46px;
  border: 1px solid #cfc4b6;
  padding: 0 12px;
  font: inherit;
}
.rod-add {
  border: 0;
  background: var(--ink);
  color: #fff;
  min-height: 48px;
  padding: 0 20px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.rod-cartmsg {
  display: none;
  margin-top: 12px;
  background: #2d3032;
  color: #fff;
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 800;
}
.rod-cartmsg.is-visible {
  display: block;
}
.rod-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.rod-specs div {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.rod-specs span,
.rod-specs strong {
  display: block;
}
.rod-specs span {
  font-size: 11px;
  color: #6c645b;
}
.rod-specs strong {
  margin-top: 3px;
}
.rod-note {
  padding: 17px;
  background: #f3eee6;
  border-left: 4px solid var(--gold);
  line-height: 1.65;
  color: #574f47;
}
@media (max-width: 1050px) {
  .rod-hero__grid,
  .rod-head,
  .rod-split,
  .rod-final {
    grid-template-columns: 1fr;
  }
  .rod-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rod-steps,
  .rod-linkcards {
    grid-template-columns: repeat(2, 1fr);
  }
  .rod-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .rod-filter-search {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 720px) {
  .rod-wrap {
    width: calc(100% - 22px);
  }
  .rod-hero {
    padding: 22px 0 40px;
  }
  .rod-hero h1 {
    font-size: 42px;
  }
  .rod-lead {
    font-size: 16px;
  }
  .rod-hero__grid {
    gap: 22px;
  }
  .rod-hero__facts {
    grid-template-columns: 1fr 1fr;
  }
  .rod-section {
    padding: 52px 0;
  }
  .rod-choice-grid,
  .rod-feature-grid,
  .rod-faq,
  .rod-products {
    grid-template-columns: 1fr;
  }
  .rod-steps,
  .rod-linkcards {
    grid-template-columns: 1fr 1fr;
  }
  .rod-head {
    gap: 16px;
  }
  .rod-actions {
    display: grid;
  }
  .rod-btn {
    width: 100%;
  }
  .rod-media figcaption {
    position: static;
  }
  .rod-shopbar {
    position: relative;
  }
  .rod-filter {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rod-filter-search {
    grid-column: 1/-1;
    min-width: 0;
  }
  .rod-product__visual {
    min-height: 120px;
  }
  .rod-final {
    padding: 46px 16px;
  }
  .rod-item-visual {
    min-height: 310px;
  }
  .rod-specs {
    grid-template-columns: 1fr;
  }
  .rod-qty {
    align-items: stretch;
    flex-direction: column;
  }
  .rod-qty input,
  .rod-add {
    width: 100%;
  }
}
@media (max-width: 430px) {
  .rod-hero h1 {
    font-size: 36px;
  }
  .rod-steps,
  .rod-linkcards {
    grid-template-columns: 1fr;
  }
  .rod-hero__facts {
    grid-template-columns: 1fr;
  }
  .rod-filter {
    grid-template-columns: 1fr 1fr;
  }
  .rod-product__foot {
    align-items: stretch;
    flex-direction: column;
  }
  .rod-product__link {
    justify-content: center;
  }
}
.rod-shop-intro {
  margin: 0 0 24px;
  max-width: 820px;
}
.rod-shop-intro h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  margin: 0 0 9px;
}
.rod-shop-intro p {
  margin: 0;
  color: #5f5850;
  line-height: 1.65;
}
.rod-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.rod-story-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.rod-story-card {
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
}
.rod-story-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.rod-story-card > div {
  padding: 20px;
}
.rod-story-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.rod-story-card p {
  margin: 0 0 13px;
  color: #5d554d;
  line-height: 1.65;
}
.rod-story-card a {
  color: #4d3820;
  font-weight: 850;
  text-underline-offset: 3px;
}
.rod-tip {
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin: 0 0 18px;
  padding: 18px 20px;
  background: #383c3e;
  border-left: 4px solid var(--gold);
}
.rod-tip b {
  color: #f1d49f;
  font-size: 18px;
}
.rod-tip span {
  color: #f0ede8;
  line-height: 1.65;
}
.rod-product-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.rod-product-pick {
  display: flex;
  flex-direction: column;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color .15s ease, transform .15s ease;
}
.rod-product-pick:hover {
  border-color: #9a805d;
  transform: translateY(-1px);
}
.rod-product-pick span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #7a5a2b;
  font-weight: 850;
}
.rod-product-pick strong {
  margin: 8px 0 14px;
  font-size: 16px;
  line-height: 1.35;
}
.rod-product-pick b {
  margin-top: auto;
  font-size: 20px;
}
.rod-copy strong {
  color: var(--ink);
}
.rod-section--dark .rod-tip strong {
  color: #fff;
}
@media (max-width: 1050px) {
  .rod-story-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rod-product-picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .rod-story-grid,
  .rod-story-grid--two,
  .rod-product-picks {
    grid-template-columns: 1fr;
  }
  .rod-tip {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .rod-story-card > div {
    padding: 17px;
  }
  .rod-product-pick {
    min-height: auto;
  }
}
.rod-choice--product img {
  aspect-ratio: 16/10;
  object-fit: contain;
  background: #f7f4ef;
  padding: 20px;
}
.rod-choice--product ul {
  margin: 0 0 18px;
  padding-left: 19px;
  color: #5b544c;
  line-height: 1.65;
}
.rod-choice--product li + li {
  margin-top: 4px;
}
.rod-ring-section {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: center;
}
.rod-ring-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40%;
  gap: 12px;
  align-items: end;
}
.rod-ring-photo {
  margin: 0;
  background: #f7f4ef;
  border: 1px solid var(--line);
  overflow: hidden;
}
.rod-ring-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
.rod-ring-photo figcaption {
  padding: 10px 12px;
  background: #fff;
  color: #625b53;
  font-size: 11px;
  line-height: 1.4;
}
.rod-ring-photo--small {
  align-self: end;
}
.rod-wide-grid {
  display: grid;
  grid-template-columns: minmax(260px, .38fr) minmax(0, .62fr);
  gap: 24px;
  align-items: stretch;
}
.rod-tech-visual {
  margin: 0;
  background: #fff;
  border: 1px solid #4b4f51;
  overflow: hidden;
}
.rod-tech-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #f6f2eb;
}
.rod-tech-visual figcaption {
  padding: 12px 14px;
  background: #2d3032;
  color: #e8e4de;
  font-size: 12px;
  line-height: 1.45;
}
.rod-feature-grid--wide {
  grid-template-columns: 1fr;
}
.rod-feature-grid--wide .rod-feature {
  padding: 17px 18px;
}
.rod-feature-grid--wide .rod-feature strong {
  font-size: 16px;
}
.rod-tech-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.rod-tech-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.rod-tech-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #f7f4ef;
  padding: 14px;
}
.rod-tech-card > div {
  padding: 19px;
}
.rod-tech-card span {
  display: block;
  margin-bottom: 6px;
  color: #805a24;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 10px;
  font-weight: 850;
}
.rod-tech-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
}
.rod-tech-card p {
  margin: 0 0 13px;
  color: #5d554d;
  line-height: 1.65;
  font-size: 13px;
}
.rod-tech-card a {
  color: #4d3820;
  font-weight: 850;
  text-underline-offset: 3px;
}
.rod-product-picks--visual {
  gap: 14px;
}
.rod-product-pick--visual {
  padding: 0;
  min-height: 0;
  overflow: hidden;
}
.rod-product-pick--visual > img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #f7f4ef;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.rod-product-pick--visual > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}
.rod-product-pick--visual span {
  font-size: 10px;
}
.rod-product-pick--visual strong {
  margin: 7px 0 10px;
}
.rod-product-pick--visual b {
  margin: 0;
  font-size: 21px;
}
.rod-product-pick--visual em {
  margin-top: 12px;
  font-style: normal;
  font-size: 11px;
  font-weight: 850;
  color: #4d3820;
}
.rod-free--shop {
  margin-top: 18px;
}
@media (max-width: 1050px) {
  .rod-ring-section,
  .rod-wide-grid {
    grid-template-columns: 1fr;
  }
  .rod-tech-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rod-ring-gallery {
    max-width: 760px;
  }
}
@media (max-width: 720px) {
  .rod-story-card > img {
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  .rod-choice--product img {
    aspect-ratio: 4/3;
    padding: 12px;
  }
  .rod-ring-gallery {
    grid-template-columns: minmax(0, 1fr) 42%;
    gap: 8px;
  }
  .rod-ring-section {
    gap: 24px;
  }
  .rod-tech-cards {
    grid-template-columns: 1fr;
  }
  .rod-product-picks--visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .rod-product-pick--visual > div {
    padding: 12px;
  }
  .rod-product-pick--visual strong {
    font-size: 14px;
  }
  .rod-product-pick--visual b {
    font-size: 18px;
  }
  .rod-free--shop {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 430px) {
  .rod-ring-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .rod-ring-photo--main {
    grid-column: 1/-1;
  }
  .rod-product-picks--visual {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .rod-product-pick--visual > img {
    padding: 7px;
  }
  .rod-product-pick--visual > div {
    padding: 10px;
  }
  .rod-product-pick--visual strong {
    font-size: 13px;
  }
  .rod-product-pick--visual em {
    font-size: 10px;
  }
}
