/*
Theme Name: Eldiar Furniture
Theme URI: https://eldiarfurniture.com/
Author: Eldiar Furniture
Author URI: https://eldiarfurniture.com/
Description: Global iGaming Market Intelligence — independent analysis of how online casino platforms adapt game selection, themes, and compliance to regional and cultural markets around the world.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: regionrail
Tags: news, two-columns, custom-logo, custom-menu, featured-images, sticky-post, translation-ready
*/

:root {
  --rgr-ink: #241708;
  --rgr-page: #FAF6EF;
  --rgr-surface: #FFFFFF;
  --rgr-gold: #C6862E;
  --rgr-gold-d: #8A5A18;
  --rgr-gold-light: #E0A94F;
  --rgr-accent-deep: #4A2E12;
  --rgr-line: #E4D9C5;
  --rgr-focus: #1D6FBD;
  --rgr-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --rgr-serif: Georgia, "Times New Roman", "Iowan Old Style", "Palatino Linotype", serif;
  --rgr-radius: 6px;
  --rgr-shadow: 0 1px 3px rgba(36, 23, 8, 0.08);
  --rgr-shadow-hover: 0 6px 20px rgba(36, 23, 8, 0.14);
  --rgr-transition: 200ms ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--rgr-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--rgr-ink);
  background: var(--rgr-page);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rgr-gold-d); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible {
  outline: 3px solid var(--rgr-focus);
  outline-offset: 2px;
  border-radius: 2px;
}
.rgr-sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Container */
.rgr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.rgr-header {
  background: var(--rgr-accent-deep);
  color: var(--rgr-page);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(36, 23, 8, 0.2);
}
.rgr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 8px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.rgr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rgr-page);
  font-family: var(--rgr-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  min-height: 48px;
  padding: 4px 0;
}
.rgr-logo:hover { text-decoration: none; opacity: 0.9; }
.rgr-logo img { max-height: 40px; width: auto; }

/* Nav */
.rgr-nav { display: none; }
.rgr-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.rgr-nav__item { position: relative; }
.rgr-nav__link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--rgr-page);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--rgr-radius);
  transition: background var(--rgr-transition), color var(--rgr-transition);
}
.rgr-nav__link:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.rgr-nav__link--current { color: var(--rgr-gold-light); font-weight: 600; }

/* Hamburger */
.rgr-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px 10px;
  border-radius: var(--rgr-radius);
  background: transparent;
  color: var(--rgr-page);
}
.rgr-hamburger:hover { background: rgba(255,255,255,0.12); }
.rgr-hamburger__icon {
  position: relative;
  width: 24px;
  height: 2px;
  background: var(--rgr-page);
  border-radius: 1px;
}
.rgr-hamburger__icon::before,
.rgr-hamburger__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--rgr-page);
  border-radius: 1px;
  transition: transform var(--rgr-transition), opacity var(--rgr-transition);
}
.rgr-hamburger__icon::before { top: -7px; }
.rgr-hamburger__icon::after { top: 7px; }
.rgr-hamburger[aria-expanded="true"] .rgr-hamburger__icon { background: transparent; }
.rgr-hamburger[aria-expanded="true"] .rgr-hamburger__icon::before { transform: translateY(7px) rotate(45deg); }
.rgr-hamburger[aria-expanded="true"] .rgr-hamburger__icon::after { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.rgr-mobile-menu {
  display: none;
  background: var(--rgr-accent-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 8px 0 16px;
}
.rgr-mobile-menu--open { display: block; }
.rgr-mobile-menu .rgr-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0 20px;
}
.rgr-mobile-menu .rgr-nav__link {
  min-height: 52px;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
}
.rgr-mobile-menu .rgr-nav__link:hover { background: rgba(255,255,255,0.08); }

/* Search in header */
.rgr-search {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
}
.rgr-search__input {
  width: 140px;
  padding: 10px 12px;
  border: 1px solid var(--rgr-line);
  border-radius: var(--rgr-radius);
  background: var(--rgr-surface);
  color: var(--rgr-ink);
  font-size: 0.875rem;
  min-height: 40px;
}
.rgr-search__input:focus { border-color: var(--rgr-focus); }
.rgr-search__button {
  padding: 10px 14px;
  min-height: 40px;
  border-radius: var(--rgr-radius);
  background: var(--rgr-gold);
  color: var(--rgr-ink);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background var(--rgr-transition);
}
.rgr-search__button:hover { background: var(--rgr-gold-d); }

/* Hero */
.rgr-hero {
  background: linear-gradient(135deg, var(--rgr-accent-deep) 0%, #3a2410 100%);
  color: var(--rgr-page);
  padding: 56px 0 48px;
}
.rgr-hero__title {
  font-family: var(--rgr-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  max-width: 800px;
}
.rgr-hero__subtitle {
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 680px;
  color: rgba(250, 246, 239, 0.88);
}

/* Layout (two-column: rail + main) */
.rgr-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 0;
}

/* Rail */
.rgr-rail {
  background: var(--rgr-surface);
  border: 1px solid var(--rgr-line);
  border-radius: var(--rgr-radius);
  padding: 24px;
  box-shadow: var(--rgr-shadow);
}
.rgr-rail__title {
  font-family: var(--rgr-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--rgr-gold);
  line-height: 1.35;
}
.rgr-rail__list { display: flex; flex-direction: column; gap: 2px; }
.rgr-rail__item { min-width: 0; }
.rgr-rail__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 48px;
  padding: 12px 10px;
  color: var(--rgr-ink);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--rgr-radius);
  border-left: 3px solid transparent;
  transition: background var(--rgr-transition), border-color var(--rgr-transition);
}
.rgr-rail__link:hover { background: var(--rgr-page); text-decoration: none; border-left-color: var(--rgr-gold); }
.rgr-rail__link--active { background: var(--rgr-page); border-left-color: var(--rgr-gold); color: var(--rgr-accent-deep); font-weight: 600; }
.rgr-rail__count {
  font-size: 0.85rem;
  color: var(--rgr-gold-d);
  background: var(--rgr-page);
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
  min-width: 24px;
  text-align: center;
}

/* Grid */
.rgr-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  grid-auto-rows: minmax(0, auto);
}
.rgr-grid--2col { grid-template-columns: repeat(2, 1fr); }

/* Beat section heading */
.rgr-beat-section { margin-bottom: 40px; scroll-margin-top: 80px; }
.rgr-beat-section:last-child { margin-bottom: 0; }
.rgr-beat-section__title {
  font-family: var(--rgr-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  margin-bottom: 6px;
  line-height: 1.35;
}
.rgr-beat-section__desc {
  font-size: 0.9rem;
  color: var(--rgr-gold-d);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Card */
.rgr-card {
  display: flex;
  flex-direction: column;
  background: var(--rgr-surface);
  border: 1px solid var(--rgr-line);
  border-radius: var(--rgr-radius);
  overflow: hidden;
  box-shadow: var(--rgr-shadow);
  transition: transform var(--rgr-transition), box-shadow var(--rgr-transition);
  min-width: 0;
}
.rgr-card:hover, .rgr-card:focus-within {
  transform: translateY(-3px);
  box-shadow: var(--rgr-shadow-hover);
}
.rgr-card__media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--rgr-page);
}
.rgr-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--rgr-transition);
}
.rgr-card:hover .rgr-card__media img,
.rgr-card:focus-within .rgr-card__media img {
  transform: scale(1.05);
}
.rgr-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.rgr-card__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rgr-gold-d);
  background: var(--rgr-page);
  padding: 3px 10px;
  border-radius: 12px;
  align-self: flex-start;
}
.rgr-card__title {
  font-family: var(--rgr-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  line-height: 1.35;
}
.rgr-card__title a { color: inherit; text-decoration: none; }
.rgr-card__title a:hover { color: var(--rgr-gold-d); text-decoration: underline; }
.rgr-card__excerpt {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--rgr-ink);
  opacity: 0.82;
}
.rgr-card__meta {
  font-size: 0.85rem;
  color: var(--rgr-gold-d);
  line-height: 1.4;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--rgr-line);
}
.rgr-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rgr-gold-d);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rgr-card__link:hover { text-decoration: underline; }

/* Snapshot callout */
.rgr-snapshot {
  background: var(--rgr-surface);
  border: 1px solid var(--rgr-line);
  border-left: 4px solid var(--rgr-gold);
  border-radius: var(--rgr-radius);
  padding: 20px 24px;
  margin: 24px 0 32px;
  box-shadow: var(--rgr-shadow);
}
.rgr-snapshot__title {
  font-family: var(--rgr-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rgr-line);
  line-height: 1.35;
}
.rgr-snapshot__table { display: flex; flex-direction: column; gap: 0; }
.rgr-snapshot__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rgr-line);
  min-width: 0;
}
.rgr-snapshot__row:last-child { border-bottom: none; }
.rgr-snapshot__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rgr-gold-d);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  max-width: 40%;
  line-height: 1.4;
}
.rgr-snapshot__value {
  font-size: 0.9rem;
  color: var(--rgr-ink);
  text-align: right;
  line-height: 1.5;
  min-width: 0;
}

/* Article */
.rgr-article { padding: 0 0 40px; }
.rgr-article__header {
  max-width: 840px;
  margin: 0 auto;
  padding: 32px 0 0;
}
.rgr-article__title {
  font-family: var(--rgr-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--rgr-accent-deep);
  line-height: 1.35;
  margin-bottom: 12px;
}
.rgr-article__meta {
  font-size: 0.85rem;
  color: var(--rgr-gold-d);
  line-height: 1.5;
  margin-bottom: 20px;
}
.rgr-article__hero {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 24px;
  border-radius: var(--rgr-radius);
  overflow: hidden;
  box-shadow: var(--rgr-shadow);
}
.rgr-article__hero img { width: 100%; height: auto; }
.rgr-article__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--rgr-ink);
  min-width: 0;
}
.rgr-article__body p { margin-bottom: 1.25em; }
.rgr-article__body h2 {
  font-family: var(--rgr-serif);
  font-size: 1.4rem;
  color: var(--rgr-accent-deep);
  margin: 1.5em 0 0.5em;
  line-height: 1.35;
}
.rgr-article__body h3 {
  font-family: var(--rgr-serif);
  font-size: 1.15rem;
  color: var(--rgr-accent-deep);
  margin: 1.25em 0 0.4em;
  line-height: 1.35;
}
.rgr-article__body ul, .rgr-article__body ol {
  margin: 0 0 1.25em 1.5em;
  line-height: 1.7;
}
.rgr-article__body ul { list-style: disc; }
.rgr-article__body ol { list-style: decimal; }
.rgr-article__body li { margin-bottom: 0.5em; }
.rgr-article__body blockquote {
  border-left: 4px solid var(--rgr-gold);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--rgr-page);
  border-radius: 0 var(--rgr-radius) var(--rgr-radius) 0;
  font-style: italic;
  color: var(--rgr-ink);
}
.rgr-article__body img {
  width: 100%;
  height: auto;
  border-radius: var(--rgr-radius);
  margin: 1.5em 0;
}
.rgr-article__body a { color: var(--rgr-gold-d); text-decoration: underline; }
.rgr-article__body a:hover { color: var(--rgr-accent-deep); }

/* Author block */
.rgr-author {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--rgr-surface);
  border: 1px solid var(--rgr-line);
  border-radius: var(--rgr-radius);
  box-shadow: var(--rgr-shadow);
  max-width: 760px;
  margin: 24px auto;
  min-width: 0;
}
.rgr-author__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.rgr-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rgr-author__info { min-width: 0; flex: 1; }
.rgr-author__name {
  font-family: var(--rgr-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  line-height: 1.35;
}
.rgr-author__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rgr-gold-d);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 2px 0 8px;
  line-height: 1.4;
}
.rgr-author__bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--rgr-ink);
  opacity: 0.88;
}
.rgr-author__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--rgr-gold-d);
  text-decoration: none;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.rgr-author__link:hover { text-decoration: underline; }

/* Related posts */
.rgr-related { padding: 0 0 48px; }
.rgr-related__title {
  font-family: var(--rgr-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rgr-gold);
  line-height: 1.35;
}

/* Page template */
.rgr-page { padding: 40px 0; }
.rgr-page__header { max-width: 840px; margin: 0 auto 24px; }
.rgr-page__title {
  font-family: var(--rgr-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--rgr-accent-deep);
  line-height: 1.35;
  margin-bottom: 8px;
}
.rgr-page__updated {
  font-size: 0.82rem;
  color: var(--rgr-gold-d);
  margin-bottom: 16px;
  line-height: 1.4;
}
.rgr-page__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
  min-width: 0;
}
.rgr-page__body p { margin-bottom: 1.25em; }
.rgr-page__body h2 {
  font-family: var(--rgr-serif);
  font-size: 1.4rem;
  color: var(--rgr-accent-deep);
  margin: 1.5em 0 0.5em;
  line-height: 1.35;
}
.rgr-page__body h3 {
  font-family: var(--rgr-serif);
  font-size: 1.15rem;
  color: var(--rgr-accent-deep);
  margin: 1.25em 0 0.4em;
  line-height: 1.35;
}
.rgr-page__body ul, .rgr-page__body ol {
  margin: 0 0 1.25em 1.5em;
  line-height: 1.7;
}
.rgr-page__body ul { list-style: disc; }
.rgr-page__body ol { list-style: decimal; }
.rgr-page__body li { margin-bottom: 0.5em; }

/* Archive header */
.rgr-archive-header {
  background: var(--rgr-surface);
  border-bottom: 1px solid var(--rgr-line);
  padding: 32px 0;
  text-align: center;
}
.rgr-archive-header__title {
  font-family: var(--rgr-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--rgr-accent-deep);
  line-height: 1.35;
  margin-bottom: 8px;
}
.rgr-archive-header__desc {
  font-size: 0.95rem;
  color: var(--rgr-gold-d);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Search results */
.rgr-search-results { padding: 32px 0; }
.rgr-search-results__title {
  font-family: var(--rgr-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  margin-bottom: 20px;
  line-height: 1.35;
}

/* 404 */
.rgr-404 { padding: 60px 0; text-align: center; }
.rgr-404__title {
  font-family: var(--rgr-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--rgr-accent-deep);
  margin-bottom: 12px;
  line-height: 1.35;
}
.rgr-404__text {
  font-size: 1.05rem;
  color: var(--rgr-ink);
  opacity: 0.8;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Buttons */
.rgr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--rgr-radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--rgr-transition), color var(--rgr-transition), border-color var(--rgr-transition);
}
.rgr-btn--primary { background: var(--rgr-gold); color: var(--rgr-page); }
.rgr-btn--primary:hover { background: var(--rgr-gold-d); text-decoration: none; }
.rgr-btn--secondary { background: var(--rgr-surface); color: var(--rgr-accent-deep); border: 1px solid var(--rgr-line); }
.rgr-btn--secondary:hover { background: var(--rgr-page); text-decoration: none; border-color: var(--rgr-gold); }
.rgr-btn--ghost { background: transparent; color: var(--rgr-gold-d); border: 1px solid var(--rgr-gold-d); }
.rgr-btn--ghost:hover { background: var(--rgr-gold-d); color: var(--rgr-page); text-decoration: none; }

/* Pagination */
.rgr-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 32px 0;
}
.rgr-pagination a, .rgr-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: var(--rgr-radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--rgr-line);
  background: var(--rgr-surface);
  color: var(--rgr-ink);
}
.rgr-pagination a:hover { background: var(--rgr-page); border-color: var(--rgr-gold); text-decoration: none; }
.rgr-pagination .current { background: var(--rgr-accent-deep); color: var(--rgr-page); border-color: var(--rgr-accent-deep); }

/* Footer */
.rgr-footer {
  background: var(--rgr-accent-deep);
  color: var(--rgr-page);
  padding: 40px 0 20px;
  margin-top: auto;
}
.rgr-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.rgr-footer__col { min-width: 0; }
.rgr-footer__heading {
  font-family: var(--rgr-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--rgr-gold-light);
  margin-bottom: 14px;
  line-height: 1.35;
}
.rgr-footer__list { display: flex; flex-direction: column; gap: 4px; }
.rgr-footer__link {
  display: inline-block;
  min-height: 48px;
  padding: 12px 0;
  color: rgba(250, 246, 239, 0.85);
  font-size: 0.875rem;
  text-decoration: none;
  line-height: 1.4;
}
.rgr-footer__link:hover { color: var(--rgr-gold); text-decoration: underline; }
.rgr-footer__copy {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.7);
  line-height: 1.5;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 20px;
}
.rgr-footer__badge {
  display: inline-block;
  background: var(--rgr-gold);
  color: var(--rgr-ink);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--rgr-radius);
  margin-bottom: 16px;
  line-height: 1.4;
}
.rgr-footer__affiliate {
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.65);
  line-height: 1.5;
  margin-top: 12px;
}
.rgr-footer__affiliate a { color: var(--rgr-gold-light); }

/* Form */
.rgr-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}
.rgr-form__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rgr-accent-deep);
  line-height: 1.4;
}
.rgr-form__field {
  padding: 12px 14px;
  border: 1px solid var(--rgr-line);
  border-radius: var(--rgr-radius);
  background: var(--rgr-surface);
  color: var(--rgr-ink);
  font-size: 1rem;
  min-height: 48px;
}
.rgr-form__field:focus { border-color: var(--rgr-focus); }
.rgr-form__submit {
  align-self: flex-start;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--rgr-radius);
  background: var(--rgr-gold);
  color: var(--rgr-page);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--rgr-transition);
}
.rgr-form__submit:hover { background: var(--rgr-gold-d); }

/* Responsive */
@media (min-width: 768px) {
  .rgr-header__inner { padding: 8px 32px; }
  .rgr-hamburger { display: none; }
  .rgr-nav { display: block; }
  .rgr-mobile-menu { display: none !important; }
  .rgr-search__input { width: 180px; }
  .rgr-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .rgr-rail {
    flex-shrink: 0;
    width: 280px;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .rgr-layout__main { flex: 1; min-width: 0; }
  .rgr-grid--2col { grid-template-columns: repeat(2, 1fr); }
  .rgr-footer__inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .rgr-hero { padding: 72px 0 56px; }
  .rgr-container { padding: 0 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .rgr-card:hover, .rgr-card:focus-within {
    transform: none;
  }
  .rgr-card:hover .rgr-card__media img,
  .rgr-card:focus-within .rgr-card__media img {
    transform: none;
  }
  html { scroll-behavior: auto; }
}
