/* ═══════════════════════════════════════════════════
   RONALD TRAMP – Real-Comic Newsportal Style
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --black:       #050505;
  --dark:        #111111;
  --cream:       #f6eddb;
  --cream-light: #fff7e8;
  --red:         #d8341f;
  --red-dark:    #b72416;
  --text:        #111111;
  --muted:       #777777;
  --border:      #d9cdb8;
}

/* ── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.rt-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── TYPOGRAFIE ─────────────────────────────────── */
.rt-headline {
  font-family: 'Anton', Impact, 'Arial Black', sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .5px;
}

/* ── HEADER ─────────────────────────────────────── */
.rt-header {
  background: var(--cream);
  border-bottom: 3px solid var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
}

.rt-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.rt-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.rt-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid var(--black);
  object-fit: cover;
  background: var(--dark);
  overflow: hidden;
}

.rt-logo-text .rt-site-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 1px;
  line-height: 1;
}

.rt-logo-text .rt-claim {
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.rt-claim-stars { color: var(--red); }

.rt-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.rt-nav a {
  display: block;
  padding: 8px 14px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  transition: color .15s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
}

.rt-nav a:hover,
.rt-nav a.active { color: var(--red); border-bottom-color: var(--red); }

.rt-nav-search {
  margin-left: 16px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.1rem;
  padding: 6px;
}
.rt-nav-search:hover { color: var(--red); }

/* ── NAV DROPDOWN ────────────────────────────────── */
.rt-nav > li { position: relative; list-style: none; }

.rt-nav-has-children { white-space: nowrap; }
.rt-nav-arrow { font-size: .55rem; vertical-align: middle; margin-left: 2px; }

.rt-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  background: var(--black);
  border-top: 3px solid var(--red);
  min-width: 200px;
  z-index: 300;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

.rt-has-dropdown:hover > .rt-nav-dropdown,
.rt-has-dropdown:focus-within > .rt-nav-dropdown { display: block; }

.rt-nav-dropdown li a {
  display: block;
  padding: 11px 18px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.07);
  border-bottom-color: rgba(255,255,255,.07);
  margin-bottom: 0;
  transition: background .15s, color .15s;
}
.rt-nav-dropdown li a:hover { background: var(--red); color: #fff; border-bottom-color: transparent; }

/* ── MOBILE UNTERMENÜ ────────────────────────────── */
.rt-mobile-parent-wrap {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.rt-mobile-parent-wrap > a {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
  transition: background .15s, color .15s;
  border-bottom: none;
}
.rt-mobile-parent-wrap > a::before {
  content: '▶';
  font-size: .5rem;
  color: var(--red);
  flex-shrink: 0;
}
.rt-mobile-parent-wrap:hover > a,
.rt-mobile-parent-wrap > a:hover { background: var(--red); color: #fff; }
.rt-mobile-parent-wrap:hover > a::before { color: #fff; }

.rt-mobile-expand {
  background: none;
  border: none;
  border-left: 1px solid rgba(255,255,255,.1);
  color: var(--red);
  padding: 0 18px;
  font-size: .9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.rt-mobile-expand:hover { background: var(--red); color: #fff; }

.rt-mobile-sub {
  display: none;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.rt-mobile-sub.open { display: block; }
.rt-mobile-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px 13px 44px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .15s, color .15s;
}
.rt-mobile-sub a::before { content: '›'; color: var(--red); }
.rt-mobile-sub a:hover { background: var(--red); color: #fff; }
.rt-mobile-sub a:hover::before { color: #fff; }

/* ── HERO ────────────────────────────────────────── */
.rt-hero {
  background: var(--dark);
  min-height: 490px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.rt-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(180,180,180,.07) 0%, transparent 70%),
    /* Halftone-Dot-Pattern */
    radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, 14px 14px;
  background-color: var(--dark);
}

/* Vignette */
.rt-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.5) 100%);
}

.rt-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.rt-hero-text { max-width: 420px; }

.rt-hero-headline {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
}

.rt-hero-headline .rt-red { color: var(--red); }

.rt-hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.rt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  border-radius: 0;
  transition: background .15s, transform .1s;
}
.rt-btn:active { transform: scale(.98); }

.rt-btn-red   { background: var(--red); color: #fff; }
.rt-btn-red:hover { background: var(--red-dark); }

.rt-btn-black { background: var(--black); color: #fff; }
.rt-btn-black:hover { background: #333; }

.rt-btn-outline-black {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.rt-btn-outline-black:hover { background: var(--black); color: #fff; }

/* Titelbild / Ronald-Figur */
.rt-hero-character {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.rt-hero-img {
  max-height: 480px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.rt-character-placeholder {
  width: 260px;
  height: 420px;
  background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
  border: 3px solid rgba(255,255,255,.1);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.rt-character-placeholder::before {
  content: 'RT';
  font-family: 'Anton', Impact, sans-serif;
  font-size: 6rem;
  color: var(--red);
  opacity: .3;
}

/* Sprechblasen */
.rt-bubbles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 60px;
}

.rt-bubble {
  background: var(--cream-light);
  border: 2.5px solid var(--black);
  border-radius: 12px 12px 12px 0;
  padding: 10px 16px;
  max-width: 190px;
  position: relative;
  font-family: 'Anton', Impact, sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
}

.rt-bubble::before {
  content: '';
  position: absolute;
  left: -14px;
  bottom: 10px;
  border: 7px solid transparent;
  border-right-color: var(--black);
}

/* ── FEATURE-LEISTE ─────────────────────────────── */
.rt-features {
  background: var(--black);
  padding: 0 20px;
}

.rt-features-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  height: 75px;
}

.rt-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.rt-feature-item:last-child { border-right: none; }

.rt-feature-icon {
  color: var(--red);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rt-feature-text strong {
  display: block;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.2;
}

.rt-feature-text small {
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── HAUPTBEREICH ───────────────────────────────── */
.rt-main {
  background: var(--cream);
  padding: 40px 0;
}

.rt-main-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
}

/* Section-Header */
.rt-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.rt-section-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: 1px;
  border-left: 4px solid var(--red);
  padding-left: 10px;
}

.rt-section-link {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: .5px;
}
.rt-section-link:hover { text-decoration: underline; }

/* ── TOP STORY ──────────────────────────────────── */
.rt-top-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  border: 2px solid var(--black);
  margin-bottom: 40px;
  overflow: hidden;
}

.rt-top-story-img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.rt-top-story-placeholder {
  background: linear-gradient(135deg, #333 0%, #111 100%);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.2);
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
}

.rt-top-story-content {
  background: var(--black);
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rt-top-story-headline {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.rt-top-story-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ── ARTIKEL-GRID ───────────────────────────────── */
.rt-article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rt-article-card { display: flex; flex-direction: column; }

.rt-article-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 2px solid var(--black);
}

.rt-article-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: #ccc;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: .8rem;
  font-style: italic;
}

.rt-article-category {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.rt-article-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: .95rem;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
  flex-grow: 1;
}
.rt-article-title:hover { color: var(--red); }

.rt-article-meta {
  font-size: .65rem;
  color: var(--muted);
  margin-top: 6px;
}

/* ── SIDEBAR ────────────────────────────────────── */
.rt-sidebar { display: flex; flex-direction: column; gap: 24px; }

.rt-sidebar-box {
  background: var(--cream-light);
  border: 2px solid var(--border);
}

.rt-sidebar-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.rt-sidebar-headline {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
}

.rt-stars { color: var(--red); letter-spacing: 2px; font-size: .9rem; }
.rt-divider { border: none; border-top: 2px solid var(--border); margin: 12px 0; }

.rt-sidebar-text {
  font-size: .82rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Zitat */
.rt-quote-box {
  background: var(--black);
  padding: 24px;
  position: relative;
}

.rt-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(255,255,255,.15);
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 16px;
}

.rt-quote-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
  padding-top: 20px;
}

.rt-quote-author {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* Social */
.rt-social-icons { display: flex; gap: 10px; flex-wrap: wrap; }

.rt-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: background .15s;
}
.rt-social-btn:hover { background: var(--red); }

/* ── NEWSLETTER ─────────────────────────────────── */
.rt-newsletter {
  background: var(--red);
  padding: 0;
  overflow: hidden;
}

.rt-newsletter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  min-height: 100px;
}

.rt-newsletter-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  object-fit: cover;
  background: rgba(0,0,0,.3);
  align-self: flex-end;
}

.rt-newsletter-avatar-placeholder {
  width: 90px;
  height: 90px;
  background: rgba(0,0,0,.3);
  border-radius: 50% 50% 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,.4);
  align-self: flex-end;
}

.rt-newsletter-text-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.rt-newsletter-text-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
}

.rt-newsletter-form {
  display: flex;
  gap: 8px;
}

.rt-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: .9rem;
  outline: none;
  min-width: 260px;
}

/* ── FOOTER ─────────────────────────────────────── */
.rt-footer {
  background: var(--black);
  padding: 20px;
}

.rt-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.rt-footer-copy { color: rgba(255,255,255,.5); font-size: .8rem; }

.rt-footer-links { display: flex; gap: 20px; }

.rt-footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.rt-footer-links a:hover { color: var(--red); }

.rt-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.rt-logo-badge {
  background: var(--red);
  color: #fff;
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rt-logo-badge::after {
  content: '★';
  position: absolute;
  top: -6px;
  right: -6px;
  font-size: .45rem;
  background: var(--red-dark);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── POST-SEITE ─────────────────────────────────── */
.rt-post-header {
  background: var(--black);
  padding: 48px 20px;
  margin-bottom: 0;
}

.rt-post-header-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.rt-post-category-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  margin-bottom: 16px;
}

.rt-post-title {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.rt-post-meta {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  display: flex;
  gap: 16px;
}

.rt-post-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  background: var(--cream);
}

.rt-post-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.rt-post-content h2,
.rt-post-content h3 {
  font-family: 'Anton', Impact, sans-serif;
  text-transform: uppercase;
  margin: 2rem 0 1rem;
}

.rt-post-content p   { margin-bottom: 1.25rem; }
.rt-post-content img { border: 3px solid var(--black); width: 100%; height: auto; margin: 1.5rem 0; }

.rt-post-content blockquote {
  border-left: 4px solid var(--red);
  background: var(--black);
  color: #fff;
  padding: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ── CATEGORY-SEITE ─────────────────────────────── */
.rt-category-hero {
  background: var(--black);
  padding: 32px 20px;
}

.rt-category-hero-inner { max-width: 1280px; margin: 0 auto; }

/* ── BURGER-BUTTON ──────────────────────────────── */
.rt-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: 2px solid var(--black);
  cursor: pointer;
  padding: 10px 12px;
  margin-left: auto;
  border-radius: 0;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.rt-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}

/* Burger → X wenn geöffnet */
.rt-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.rt-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.rt-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── RESPONSIV ──────────────────────────────────── */
@media (max-width: 1100px) {
  .rt-article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .rt-main-inner { grid-template-columns: 1fr; }
  .rt-post-body  { grid-template-columns: 1fr; }
  .rt-sidebar    { display: none; }
}

@media (max-width: 768px) {
  .rt-hero-inner       { grid-template-columns: 1fr; }
  .rt-hero-character   { display: none; }
  .rt-hero-headline    { font-size: 2.5rem; }

  .rt-features-inner   { grid-template-columns: repeat(2, 1fr); height: auto; padding: 10px 0; }
  .rt-feature-item     { height: 60px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }

  .rt-top-story        { grid-template-columns: 1fr; }
  .rt-top-story-img,
  .rt-top-story-placeholder { min-height: 200px; }

  .rt-article-grid     { grid-template-columns: 1fr; }

  .rt-newsletter-inner { grid-template-columns: 1fr; padding: 20px; }
  .rt-newsletter-avatar,
  .rt-newsletter-avatar-placeholder { display: none; }
  .rt-newsletter-form  { flex-direction: column; }
  .rt-newsletter-input { min-width: unset; }

  .rt-footer-inner     { flex-direction: column; text-align: center; }

  /* Burger-Nav */
  .rt-nav-desktop { display: none !important; }
  .rt-burger      { display: flex; }
}

/* ── MOBILE-OVERLAY ─────────────────────────────── */
@keyframes rtSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rt-mobile-nav {
  display: none;
  background: var(--black);
  border-top: 3px solid var(--red);
  position: relative;
  z-index: 99;
}

.rt-mobile-nav.open {
  display: block;
  animation: rtSlideDown .25s ease forwards;
}

.rt-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream);
  transition: background .15s, color .15s;
}

.rt-mobile-nav a:hover,
.rt-mobile-nav a.active {
  background: var(--red);
  color: #fff;
}

.rt-mobile-nav a::before {
  content: '▶';
  font-size: .5rem;
  color: var(--red);
  flex-shrink: 0;
  transition: color .15s;
}

.rt-mobile-nav a:hover::before,
.rt-mobile-nav a.active::before {
  color: #fff;
}
