/* RideNovo public site — shared polish */
:root {
  --rn-ink: #1c1917;
  --rn-muted: #57534e;
  --rn-faint: #a8a29e;
  --rn-paper: #faf7f2;
  --rn-line: #e7e5e4;
  --rn-accent: #0f766e;
  --rn-accent-soft: #ccfbf1;
  --rn-ease: cubic-bezier(.22, 1, .36, 1);
}

body {
  background-color: var(--rn-paper);
  background-image:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(15, 118, 110, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at -5% 30%, rgba(28, 25, 23, 0.04), transparent 50%);
  background-attachment: fixed;
}

.rn-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.4rem;
  background: var(--rn-accent);
  color: #fff;
  flex-shrink: 0;
}

.rn-icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  background: var(--rn-accent-soft);
  color: var(--rn-accent);
  flex-shrink: 0;
}

.rn-icon-tile--lg {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  font-size: 1.35rem;
}

.rn-icon-tile--ink {
  background: rgba(28, 25, 23, 0.06);
  color: var(--rn-ink);
}

.rn-icon-tile--amber {
  background: #fef3c7;
  color: #b45309;
}

.rn-icon-tile--sky {
  background: #e0f2fe;
  color: #0369a1;
}

.rn-surface {
  background: #fff;
  border: 1px solid var(--rn-line);
  border-radius: 0.85rem;
  transition: border-color .2s var(--rn-ease), transform .25s var(--rn-ease), box-shadow .25s var(--rn-ease);
}

a.rn-surface:hover,
.rn-surface--hover:hover {
  border-color: rgba(15, 118, 110, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -18px rgba(28, 25, 23, 0.35);
}

.rn-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1.2;
  background: #fff;
  border: 1px solid var(--rn-line);
  color: var(--rn-muted);
}

.rn-chip--accent {
  background: var(--rn-accent-soft);
  border-color: transparent;
  color: var(--rn-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.65rem;
}

.rn-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.05rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background .15s, border-color .15s, transform .12s;
}
.rn-btn:active { transform: scale(.98); }
.rn-btn--primary { background: var(--rn-ink); color: #fff; }
.rn-btn--primary:hover { background: #292524; }
.rn-btn--ghost {
  background: #fff;
  border: 1px solid var(--rn-line);
  color: var(--rn-ink);
}
.rn-btn--ghost:hover { border-color: rgba(28, 25, 23, 0.28); }

.rn-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rn-accent);
  margin-bottom: 0.65rem;
}

/* Hero 多图不规则叠放：白框仅 1–2px 内边距 + 圆角 */
.rn-hero-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 4;
  max-width: 420px;
  margin-left: auto;
  margin-right: 0;
}
.rn-hero-stack__card {
  position: absolute;
  margin: 0;
  padding: 2px;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.1);
  border-radius: 0.85rem;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.06),
    0 14px 28px -16px rgba(28, 25, 23, 0.35);
  overflow: hidden;
  box-sizing: border-box;
}
.rn-hero-stack__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(0.85rem - 2px);
}
.rn-hero-stack__card--1 { z-index: 3; }
.rn-hero-stack__card--2 { z-index: 2; }
.rn-hero-stack__card--3 { z-index: 4; }
.rn-hero-stack__card--4 { z-index: 1; }
.rn-hero-stack__card--5 { z-index: 5; }

/* 1 张 */
.rn-hero-stack__card--n1.rn-hero-stack__card--1 {
  inset: 8% 10% 8% 10%;
  transform: rotate(-2.5deg);
}
/* 2 张 */
.rn-hero-stack__card--n2.rn-hero-stack__card--1 {
  width: 62%; height: 68%; left: 4%; top: 18%;
  transform: rotate(-7deg);
}
.rn-hero-stack__card--n2.rn-hero-stack__card--2 {
  width: 58%; height: 64%; right: 2%; top: 10%;
  left: auto;
  transform: rotate(6deg);
}
/* 3 张 */
.rn-hero-stack__card--n3.rn-hero-stack__card--1 {
  width: 54%; height: 58%; left: 2%; top: 22%;
  transform: rotate(-8deg);
}
.rn-hero-stack__card--n3.rn-hero-stack__card--2 {
  width: 50%; height: 56%; right: 4%; top: 8%;
  left: auto;
  transform: rotate(5deg);
}
.rn-hero-stack__card--n3.rn-hero-stack__card--3 {
  width: 48%; height: 52%; left: 28%; bottom: 4%;
  top: auto;
  transform: rotate(2deg);
}
/* 4 张 */
.rn-hero-stack__card--n4.rn-hero-stack__card--1 {
  width: 46%; height: 52%; left: 0; top: 18%;
  transform: rotate(-9deg);
}
.rn-hero-stack__card--n4.rn-hero-stack__card--2 {
  width: 44%; height: 50%; right: 2%; top: 6%;
  left: auto;
  transform: rotate(7deg);
}
.rn-hero-stack__card--n4.rn-hero-stack__card--3 {
  width: 42%; height: 48%; left: 30%; bottom: 2%;
  top: auto;
  transform: rotate(-2deg);
}
.rn-hero-stack__card--n4.rn-hero-stack__card--4 {
  width: 40%; height: 46%; left: 12%; top: 0;
  transform: rotate(4deg);
}
/* 5 张 */
.rn-hero-stack__card--n5.rn-hero-stack__card--1 {
  width: 42%; height: 48%; left: 0; top: 20%;
  transform: rotate(-10deg);
}
.rn-hero-stack__card--n5.rn-hero-stack__card--2 {
  width: 40%; height: 46%; right: 0; top: 8%;
  left: auto;
  transform: rotate(8deg);
}
.rn-hero-stack__card--n5.rn-hero-stack__card--3 {
  width: 38%; height: 44%; left: 32%; bottom: 0;
  top: auto;
  transform: rotate(-1deg);
}
.rn-hero-stack__card--n5.rn-hero-stack__card--4 {
  width: 36%; height: 42%; left: 8%; top: 0;
  transform: rotate(5deg);
}
.rn-hero-stack__card--n5.rn-hero-stack__card--5 {
  width: 34%; height: 40%; right: 18%; top: 36%;
  left: auto;
  transform: rotate(-4deg);
}

.rn-hero-stack__fallback {
  position: absolute;
  inset: 10% 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-accent);
  opacity: 0.85;
}
.rn-hero-stack__fallback svg {
  width: 100%;
  max-height: 100%;
}

@keyframes rn-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.rn-reveal {
  animation: rn-fade-up .7s var(--rn-ease) both;
}
.rn-reveal-delay-1 { animation-delay: .08s; }
.rn-reveal-delay-2 { animation-delay: .16s; }
.rn-reveal-delay-3 { animation-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .rn-reveal, .rn-reveal-delay-1, .rn-reveal-delay-2, .rn-reveal-delay-3 {
    animation: none;
  }
  a.rn-surface:hover, .rn-surface--hover:hover {
    transform: none;
  }
}

.rn-cover {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.18), rgba(28, 25, 23, 0.06)),
    radial-gradient(circle at 30% 40%, rgba(15, 118, 110, 0.2), transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-accent);
  overflow: hidden;
}
.rn-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rn-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color .15s;
}
.rn-nav-link i { font-size: 1rem; opacity: .85; }

/* 语言选择器：可扩展多语言（pl/en/nl/fr/de/vi…） */
.rn-locale {
  position: relative;
  flex-shrink: 0;
}
.rn-locale__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  height: 2rem;
  padding: 0 0.55rem 0 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(28, 25, 23, 0.12);
  background: rgba(255, 255, 255, 0.85);
  color: var(--rn-ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.rn-locale__btn:hover {
  border-color: rgba(15, 118, 110, 0.35);
  background: #fff;
}
.rn-locale__btn .ph-translate {
  font-size: 0.95rem;
  color: var(--rn-accent);
}
.rn-locale__code {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}
.rn-locale__caret {
  font-size: 0.75rem;
  color: var(--rn-faint);
  transition: transform .15s var(--rn-ease);
}
.rn-locale__caret.is-open { transform: rotate(180deg); }

.rn-locale__panel {
  position: absolute;
  top: calc(100% + 0.4rem);
  z-index: 50;
  width: min(11.5rem, calc(100vw - 2rem));
  padding: 0.45rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(28, 25, 23, 0.1);
  background: #fff;
  box-shadow: 0 12px 36px -18px rgba(28, 25, 23, 0.45);
}
.rn-locale__panel--right { right: 0; }
.rn-locale__panel--left { left: 0; }
.rn-locale__hint {
  margin: 0;
  padding: 0.35rem 0.55rem 0.45rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rn-faint);
}
.rn-locale__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: min(18rem, 50vh);
  overflow-y: auto;
}
.rn-locale__item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
  color: var(--rn-ink);
  text-decoration: none;
  transition: background .12s;
}
.rn-locale__item:hover {
  background: rgba(15, 118, 110, 0.08);
  color: var(--rn-ink);
  text-decoration: none;
}
.rn-locale__item.is-active {
  background: rgba(15, 118, 110, 0.1);
}
.rn-locale__item-code {
  flex-shrink: 0;
  min-width: 1.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--rn-accent);
}
.rn-locale__item-name {
  flex: 1;
  min-width: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}
.rn-locale__check {
  flex-shrink: 0;
  font-size: 0.95rem;
  color: var(--rn-accent);
}

.rn-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--rn-ink);
}
.rn-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(15, 118, 110, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(28, 25, 23, 0.04), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 40%);
}

.rn-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--rn-muted);
}
.rn-stat-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Route cards / detail ───────────────────────────── */
.rn-route-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--rn-line);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color .2s var(--rn-ease), transform .25s var(--rn-ease), box-shadow .25s var(--rn-ease);
}
a.rn-route-card:hover {
  border-color: rgba(15, 118, 110, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -20px rgba(28, 25, 23, 0.4);
}
.rn-route-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e7e5e4;
}
.rn-route-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--rn-ease);
}
a.rn-route-card:hover .rn-route-card__media img {
  transform: scale(1.04);
}
.rn-route-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rn-accent);
  border: 1px solid rgba(15, 118, 110, 0.15);
  backdrop-filter: blur(4px);
}
.rn-route-card__body {
  padding: 1rem 1.05rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.rn-route-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--rn-ink);
  line-height: 1.35;
}
.rn-route-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--rn-accent);
}

.rn-route-placeholder {
  width: 100%;
  height: 100%;
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--rn-accent);
  background:
    linear-gradient(155deg, rgba(15, 118, 110, 0.14), rgba(204, 251, 241, 0.55)),
    radial-gradient(circle at 70% 20%, rgba(15, 118, 110, 0.18), transparent 50%);
  position: relative;
  overflow: hidden;
}
.rn-route-placeholder svg {
  width: 72%;
  max-width: 240px;
  opacity: 0.85;
}
.rn-route-placeholder > i {
  position: absolute;
  font-size: 1.75rem;
  opacity: 0.35;
  right: 0.9rem;
  bottom: 0.7rem;
}
.rn-route-placeholder p,
.rn-route-placeholder__caption {
  font-size: 0.75rem;
  color: var(--rn-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.rn-route-placeholder--medium {
  background:
    linear-gradient(155deg, rgba(3, 105, 161, 0.12), rgba(224, 242, 254, 0.7)),
    radial-gradient(circle at 30% 40%, rgba(3, 105, 161, 0.16), transparent 55%);
  color: #0369a1;
}
.rn-route-placeholder--hard {
  background:
    linear-gradient(155deg, rgba(180, 83, 9, 0.12), rgba(254, 243, 199, 0.7)),
    radial-gradient(circle at 60% 30%, rgba(180, 83, 9, 0.16), transparent 55%);
  color: #b45309;
}
.rn-route-placeholder--lg {
  min-height: 14rem;
  border-radius: 1rem;
}
.rn-route-placeholder--lg .rn-route-placeholder__curve {
  width: 88%;
  max-width: none;
}
.rn-route-placeholder--map {
  min-height: 18rem;
  background:
    linear-gradient(180deg, #f5f4f1 0%, #ebe8e2 100%),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(28, 25, 23, 0.03) 24px, rgba(28, 25, 23, 0.03) 25px),
    repeating-linear-gradient(0deg, transparent, transparent 24px, rgba(28, 25, 23, 0.03) 24px, rgba(28, 25, 23, 0.03) 25px);
}

.rn-route-hero {
  position: relative;
  border-bottom: 1px solid var(--rn-line);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(204, 251, 241, 0.45), transparent 70%);
}
.rn-route-hero--medium {
  background: linear-gradient(180deg, rgba(224, 242, 254, 0.55), transparent 70%);
}
.rn-route-hero--hard {
  background: linear-gradient(180deg, rgba(254, 243, 199, 0.55), transparent 70%);
}
.rn-route-hero__glow {
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(15, 118, 110, 0.12), transparent 65%);
  pointer-events: none;
}
.rn-route-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--rn-muted);
}
.rn-route-back:hover { color: var(--rn-ink); }

.rn-route-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (max-width: 520px) {
  .rn-route-stats { grid-template-columns: 1fr; }
}
.rn-route-stat {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 0.85rem;
  padding: 0.85rem 0.95rem;
  backdrop-filter: blur(6px);
}
.rn-route-stat__label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rn-faint);
  margin-bottom: 0.35rem;
}
.rn-route-stat__value {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--rn-ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.rn-route-stat__value small {
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.2rem;
  color: var(--rn-muted);
  font-family: 'DM Sans', system-ui, sans-serif;
}
.rn-route-stat__value--text {
  font-size: 1.15rem;
  padding-top: 0.15rem;
}

.rn-route-hero__visual {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.08);
  background: #fff;
  box-shadow: 0 16px 40px -28px rgba(28, 25, 23, 0.45);
}
.rn-route-hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.rn-route-panel {
  background: #fff;
  border: 1px solid var(--rn-line);
  border-radius: 1rem;
  overflow: hidden;
}
.rn-route-panel__head {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rn-line);
}
.rn-route-panel__head h2 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--rn-ink);
}
.rn-route-panel__body {
  padding: 1rem 1.1rem 1.2rem;
}
.rn-route-panel__media {
  aspect-ratio: 16 / 11;
  background: #f5f4f1;
}
.rn-route-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rn-route-panel__media--empty {
  display: flex;
}
.rn-route-panel__media--empty .rn-route-placeholder {
  flex: 1;
}

.rn-route-map {
  height: 340px;
  width: 100%;
  background: #f5f4f1;
}
.rn-route-map--empty {
  height: auto;
  min-height: 280px;
}
.rn-route-map .leaflet-container {
  font: inherit;
  height: 100%;
}

.rn-route-bike {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.22);
  background:
    linear-gradient(120deg, rgba(204, 251, 241, 0.55), rgba(255, 255, 255, 0.9));
}
.rn-route-bike__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: var(--rn-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.rn-route-bike__kicker {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rn-accent);
  margin-bottom: 0.25rem;
}
.rn-route-bike__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rn-ink);
  margin: 0 0 0.25rem;
}
.rn-route-bike__blurb {
  font-size: 0.85rem;
  color: var(--rn-muted);
  line-height: 1.55;
  margin: 0;
}

/* Guide related short-link card（通用外链，不绑定车型） */
.rn-guide-link {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(46, 117, 212, 0.22);
  background:
    linear-gradient(120deg, rgba(232, 240, 252, 0.7), rgba(255, 255, 255, 0.95));
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.rn-guide-link:hover {
  border-color: rgba(46, 117, 212, 0.4);
  box-shadow: 0 8px 24px rgba(46, 117, 212, 0.08);
}
.rn-guide-link__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.85rem;
  background: var(--rn-brand, #2e75d4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.rn-guide-link__kicker {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rn-brand, #2e75d4);
  margin-bottom: 0.25rem;
}
.rn-guide-link__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rn-ink);
  margin: 0 0 0.25rem;
}
.rn-guide-link__blurb {
  font-size: 0.85rem;
  color: var(--rn-muted);
  line-height: 1.55;
  margin: 0;
}
.rn-guide-link__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rn-brand, #2e75d4);
}

/* Footer newsletter */
.rn-newsletter {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background:
    linear-gradient(120deg, rgba(204, 251, 241, 0.45), rgba(255, 255, 255, 0.92));
}
@media (min-width: 640px) {
  .rn-newsletter {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
  .rn-newsletter__msg {
    grid-column: 1 / -1;
  }
}
.rn-newsletter__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--rn-ink);
  margin: 0 0 0.3rem;
}
.rn-newsletter__title i { color: var(--rn-accent); }
.rn-newsletter__sub {
  margin: 0;
  font-size: 0.85rem;
  color: var(--rn-muted);
  line-height: 1.5;
}
.rn-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.rn-newsletter__input {
  flex: 1 1 10rem;
  min-width: 0;
  border: 1px solid var(--rn-line, #e7e5e4);
  border-radius: 0.55rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  background: #fff;
}
.rn-newsletter__input:focus {
  outline: 2px solid rgba(15, 118, 110, 0.25);
  border-color: var(--rn-accent);
}
.rn-newsletter__msg {
  margin: 0;
  font-size: 0.8rem;
}
.rn-newsletter__msg.is-ok { color: #0f766e; }
.rn-newsletter__msg.is-err { color: #b91c1c; }

/* Footer partner brand logos */
.rn-footer-brands__label {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rn-ink-faint, #a3a3a3);
}
.rn-footer-brands__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
}
.rn-footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: 112px;
  padding: 0 0.15rem;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.rn-footer-brand:hover,
.rn-footer-brand:focus-visible {
  opacity: 1;
  filter: grayscale(0);
  outline: none;
}
.rn-footer-brand img {
  display: block;
  max-height: 28px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
