/*
Theme Name:  Red Rock Riders Child
Theme URI:   https://redrockriders.org
Description: Child theme for Red Rock Riders — the leading mountain biking advocacy group dedicated exclusively to Red Rock Canyon NCA, Las Vegas, Nevada. Styled after the glacier.org model: clean, mission-driven, photography-forward, and community-focused.
Author:      Red Rock Riders
Author URI:  https://redrockriders.org
Template:    twentytwentyfive
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: redrockriders-child
Tags:        custom-colors, custom-logo, custom-menu, featured-images, block-patterns, full-site-editing
*/

/* =====================================================
   RED ROCK RIDERS — CUSTOM STYLES
   Modeled after glacier.org design principles:
   photography-forward, mission-driven, clean & bold
   ===================================================== */

/* --------------------------------------------------
   CSS Custom Properties (Design Tokens)
   -------------------------------------------------- */
:root {
  /* Brand Colors — Red Rock Canyon desert palette */
  --rrr-rust:          #C0392B;   /* Sandstone red — primary brand */
  --rrr-rust-dark:     #96241E;   /* Deep rust — hover states */
  --rrr-rust-light:    #E8533F;   /* Bright coral — accents */
  --rrr-canyon:        #D4764A;   /* Canyon orange — secondary accent */
  --rrr-sand:          #E8D5B0;   /* Warm sand — light backgrounds */
  --rrr-sand-light:    #F5EFE0;   /* Off-white cream */
  --rrr-desert-dark:   #2C1810;   /* Deep desert brown — dark text */
  --rrr-slate:         #3D3530;   /* Warm dark slate — headings */
  --rrr-sage:          #6B7C5C;   /* Desert sage green — supporting */
  --rrr-sky:           #5B8DB8;   /* Desert sky blue — links/info */
  --rrr-white:         #FFFFFF;
  --rrr-off-white:     #FAF7F2;

  /* Typography */
  --rrr-font-display:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --rrr-font-body:     'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --rrr-font-mono:     'Courier New', monospace;

  /* Spacing */
  --rrr-section-pad:   4rem;
  --rrr-section-pad-lg: 6rem;

  /* Border Radius */
  --rrr-radius-sm:     4px;
  --rrr-radius-md:     8px;
  --rrr-radius-lg:     16px;

  /* Shadows */
  --rrr-shadow-sm:     0 2px 8px rgba(44,24,16,.10);
  --rrr-shadow-md:     0 4px 20px rgba(44,24,16,.15);
  --rrr-shadow-lg:     0 8px 40px rgba(44,24,16,.20);

  /* Transitions */
  --rrr-transition:    all 0.25s ease;
}

/* --------------------------------------------------
   Base & Typography
   -------------------------------------------------- */
body {
  font-family: var(--rrr-font-body);
  color: var(--rrr-slate);
  background-color: var(--rrr-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--rrr-font-display);
  color: var(--rrr-desert-dark);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.25rem; }

a {
  color: var(--rrr-rust);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: var(--rrr-transition);
}
a:hover {
  color: var(--rrr-rust-dark);
  text-decoration-color: var(--rrr-rust-dark);
}

/* --------------------------------------------------
   Site Header
   -------------------------------------------------- */
.wp-block-template-part[data-slug="header"],
.site-header,
header.wp-block-template-part {
  background-color: var(--rrr-white);
  border-bottom: 3px solid var(--rrr-rust);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--rrr-shadow-sm);
}

/* Utility bar (top strip) */
.rrr-utility-bar {
  background-color: var(--rrr-desert-dark);
  color: var(--rrr-sand);
  padding: 0.4rem 2rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.rrr-utility-bar a {
  color: var(--rrr-sand);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: var(--rrr-transition);
}
.rrr-utility-bar a:hover { color: var(--rrr-rust-light); }

/* Site logo */
.wp-block-site-logo img,
.custom-logo {
  max-height: 70px;
  width: auto;
}

/* Navigation */
.wp-block-navigation,
.wp-block-navigation__container {
  gap: 0.25rem;
}
.wp-block-navigation-item__content {
  font-family: var(--rrr-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rrr-slate) !important;
  padding: 1rem 0.9rem;
  transition: var(--rrr-transition);
}
.wp-block-navigation-item__content:hover,
.wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content {
  color: var(--rrr-rust) !important;
}

/* Dropdown menus */
.wp-block-navigation__submenu-container {
  background-color: var(--rrr-white) !important;
  border-top: 3px solid var(--rrr-rust) !important;
  box-shadow: var(--rrr-shadow-md) !important;
  border-radius: 0 0 var(--rrr-radius-md) var(--rrr-radius-md) !important;
  min-width: 220px;
}
.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
  background-color: var(--rrr-sand-light) !important;
}

/* --------------------------------------------------
   Buttons & CTAs
   -------------------------------------------------- */
.wp-block-button__link,
.wp-element-button,
button,
input[type="submit"],
input[type="button"] {
  background-color: var(--rrr-rust) !important;
  color: var(--rrr-white) !important;
  border: 2px solid var(--rrr-rust) !important;
  border-radius: var(--rrr-radius-sm) !important;
  font-family: var(--rrr-font-body) !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 2rem !important;
  transition: var(--rrr-transition) !important;
  text-decoration: none !important;
  cursor: pointer;
}
.wp-block-button__link:hover,
.wp-element-button:hover,
button:hover,
input[type="submit"]:hover {
  background-color: var(--rrr-rust-dark) !important;
  border-color: var(--rrr-rust-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--rrr-shadow-md) !important;
}

/* Outline / ghost button variant */
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent !important;
  color: var(--rrr-rust) !important;
  border-color: var(--rrr-rust) !important;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--rrr-rust) !important;
  color: var(--rrr-white) !important;
}

/* White button (for dark/image backgrounds) */
.rrr-btn-white .wp-block-button__link,
.has-background .wp-block-button__link {
  background-color: var(--rrr-white) !important;
  color: var(--rrr-rust) !important;
  border-color: var(--rrr-white) !important;
}
.rrr-btn-white .wp-block-button__link:hover {
  background-color: var(--rrr-sand) !important;
  border-color: var(--rrr-sand) !important;
}

/* --------------------------------------------------
   Hero Section
   -------------------------------------------------- */
.rrr-hero,
.wp-block-cover.rrr-hero {
  min-height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
}
.rrr-hero .wp-block-cover__inner-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
.rrr-hero h1,
.rrr-hero .wp-block-cover__inner-container h1 {
  font-family: var(--rrr-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--rrr-white) !important;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.rrr-hero .wp-block-cover__inner-container .wp-block-paragraph {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--rrr-sand) !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.rrr-hero-eyebrow {
  display: inline-block;
  font-family: var(--rrr-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rrr-canyon) !important;
  margin-bottom: 1rem;
}

/* --------------------------------------------------
   Section Layouts
   -------------------------------------------------- */
.rrr-section {
  padding: var(--rrr-section-pad) 0;
}
.rrr-section-lg {
  padding: var(--rrr-section-pad-lg) 0;
}
.rrr-section-dark {
  background-color: var(--rrr-desert-dark);
  color: var(--rrr-sand-light);
}
.rrr-section-dark h1,
.rrr-section-dark h2,
.rrr-section-dark h3 {
  color: var(--rrr-white);
}
.rrr-section-sand {
  background-color: var(--rrr-sand-light);
}
.rrr-section-rust {
  background-color: var(--rrr-rust);
  color: var(--rrr-white);
}
.rrr-section-rust h1,
.rrr-section-rust h2,
.rrr-section-rust h3 {
  color: var(--rrr-white);
}

/* Section heading style */
.rrr-section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.rrr-section-heading h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.rrr-section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--rrr-rust);
  border-radius: 2px;
}
.rrr-section-heading p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* --------------------------------------------------
   Content Cards (News / Blog / Events)
   -------------------------------------------------- */
.rrr-card {
  background: var(--rrr-white);
  border-radius: var(--rrr-radius-md);
  overflow: hidden;
  box-shadow: var(--rrr-shadow-sm);
  transition: var(--rrr-transition);
  border: 1px solid rgba(44,24,16,0.08);
}
.rrr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--rrr-shadow-lg);
}
.rrr-card img,
.rrr-card .wp-post-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.rrr-card-body {
  padding: 1.5rem;
}
.rrr-card-body .rrr-card-date {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rrr-rust);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}
.rrr-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.rrr-card-body h3 a {
  color: var(--rrr-desert-dark);
  text-decoration: none;
}
.rrr-card-body h3 a:hover { color: var(--rrr-rust); }
.rrr-card-body p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.rrr-card-body .rrr-read-more {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rrr-rust);
  text-decoration: none;
}
.rrr-card-body .rrr-read-more::after { content: ' →'; }

/* WordPress core Query Loop / Post Template cards */
.wp-block-post-template li {
  list-style: none;
  margin: 0;
}

/* --------------------------------------------------
   Impact Stats Bar
   -------------------------------------------------- */
.rrr-stats-bar {
  background-color: var(--rrr-rust);
  padding: 3rem 2rem;
  text-align: center;
}
.rrr-stats-bar .rrr-stats-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.rrr-stat-item {
  color: var(--rrr-white);
}
.rrr-stat-item .rrr-stat-number {
  font-family: var(--rrr-font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--rrr-white);
}
.rrr-stat-item .rrr-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-top: 0.4rem;
  display: block;
}

/* --------------------------------------------------
   Testimonial / Quote Section
   -------------------------------------------------- */
.rrr-quote-section {
  background-color: var(--rrr-sand-light);
  padding: 4rem 2rem;
  text-align: center;
}
.rrr-quote-section blockquote {
  max-width: 750px;
  margin: 0 auto;
  border-left: none;
  padding: 0;
}
.rrr-quote-section blockquote p {
  font-family: var(--rrr-font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-style: italic;
  color: var(--rrr-desert-dark);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.rrr-quote-section blockquote p::before { content: '\201C'; }
.rrr-quote-section blockquote p::after  { content: '\201D'; }
.rrr-quote-attribution {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rrr-rust);
}

/* --------------------------------------------------
   Newsletter Signup Band
   -------------------------------------------------- */
.rrr-newsletter {
  background-color: var(--rrr-desert-dark);
  padding: 3.5rem 2rem;
  text-align: center;
}
.rrr-newsletter h2 {
  color: var(--rrr-white);
  margin-bottom: 0.5rem;
}
.rrr-newsletter p {
  color: var(--rrr-sand);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.rrr-newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.rrr-newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 0.85rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--rrr-radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--rrr-white);
  font-family: var(--rrr-font-body);
  font-size: 1rem;
  transition: var(--rrr-transition);
}
.rrr-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.rrr-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--rrr-rust-light);
  background: rgba(255,255,255,0.15);
}

/* --------------------------------------------------
   Featured Image / Media
   -------------------------------------------------- */
.wp-block-image img,
.wp-block-cover img {
  border-radius: var(--rrr-radius-md);
}
.wp-block-image figcaption {
  font-size: 0.85rem;
  color: #777;
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
}

/* --------------------------------------------------
   Blog / Archive
   -------------------------------------------------- */
.wp-block-post-title a {
  color: var(--rrr-desert-dark);
  text-decoration: none;
  transition: var(--rrr-transition);
}
.wp-block-post-title a:hover { color: var(--rrr-rust); }

.wp-block-post-excerpt__excerpt {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.wp-block-post-date time {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rrr-rust);
}

.wp-block-categories-list a,
.wp-block-tag-cloud a {
  color: var(--rrr-rust);
}

/* --------------------------------------------------
   Pagination
   -------------------------------------------------- */
.wp-block-query-pagination .wp-block-query-pagination-next,
.wp-block-query-pagination .wp-block-query-pagination-previous,
.wp-block-query-pagination-numbers a {
  background-color: var(--rrr-sand-light);
  color: var(--rrr-desert-dark);
  border: 1px solid var(--rrr-sand);
  border-radius: var(--rrr-radius-sm);
  padding: 0.5rem 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: var(--rrr-transition);
}
.wp-block-query-pagination .wp-block-query-pagination-next:hover,
.wp-block-query-pagination .wp-block-query-pagination-previous:hover,
.wp-block-query-pagination-numbers a:hover {
  background-color: var(--rrr-rust);
  color: var(--rrr-white);
  border-color: var(--rrr-rust);
}
.wp-block-query-pagination-numbers .current {
  background-color: var(--rrr-rust);
  color: var(--rrr-white);
  border-radius: var(--rrr-radius-sm);
  padding: 0.5rem 1rem;
}

/* --------------------------------------------------
   Forms (Contact, Donation, etc.)
   -------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
select,
textarea {
  border: 2px solid var(--rrr-sand);
  border-radius: var(--rrr-radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--rrr-font-body);
  font-size: 1rem;
  color: var(--rrr-slate);
  background: var(--rrr-white);
  width: 100%;
  transition: var(--rrr-transition);
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--rrr-rust);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15);
}
label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  display: block;
  color: var(--rrr-desert-dark);
}

/* --------------------------------------------------
   Footer
   -------------------------------------------------- */
.wp-block-template-part[data-slug="footer"],
.site-footer,
footer.wp-block-template-part {
  background-color: var(--rrr-desert-dark) !important;
  color: var(--rrr-sand);
  padding: 4rem 2rem 2rem;
}
footer h3,
footer h4,
.site-footer h3,
.site-footer h4 {
  color: var(--rrr-white);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: var(--rrr-font-body);
}
footer a,
.site-footer a {
  color: var(--rrr-sand);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--rrr-transition);
}
footer a:hover,
.site-footer a:hover { color: var(--rrr-rust-light); }

footer p,
.site-footer p { color: var(--rrr-sand); font-size: 0.9rem; }

.rrr-footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0;
}
.rrr-footer-bottom {
  font-size: 0.8rem;
  color: rgba(232,213,176,0.6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Social icons in footer */
.rrr-social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.rrr-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--rrr-sand) !important;
  font-size: 0.9rem;
  transition: var(--rrr-transition);
}
.rrr-social-links a:hover {
  background: var(--rrr-rust);
  color: var(--rrr-white) !important;
}

/* --------------------------------------------------
   Sidebar Widgets
   -------------------------------------------------- */
.widget-title,
.wp-block-heading:where(.sidebar *) {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rrr-desert-dark);
  border-bottom: 3px solid var(--rrr-rust);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* --------------------------------------------------
   Utility Classes
   -------------------------------------------------- */
.rrr-text-rust    { color: var(--rrr-rust) !important; }
.rrr-text-canyon  { color: var(--rrr-canyon) !important; }
.rrr-text-sage    { color: var(--rrr-sage) !important; }
.rrr-text-white   { color: var(--rrr-white) !important; }
.rrr-text-center  { text-align: center; }
.rrr-font-display { font-family: var(--rrr-font-display); }

.rrr-bg-rust      { background-color: var(--rrr-rust) !important; }
.rrr-bg-dark      { background-color: var(--rrr-desert-dark) !important; }
.rrr-bg-sand      { background-color: var(--rrr-sand-light) !important; }

.rrr-badge {
  display: inline-block;
  background-color: var(--rrr-rust);
  color: var(--rrr-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 2px;
}
.rrr-badge-canyon { background-color: var(--rrr-canyon); }
.rrr-badge-sage   { background-color: var(--rrr-sage); }

/* Eyebrow label above headings */
.rrr-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rrr-rust);
  margin-bottom: 0.5rem;
}

/* Decorative horizontal rule */
.rrr-rule {
  border: none;
  height: 4px;
  background: linear-gradient(90deg, var(--rrr-rust), var(--rrr-canyon), transparent);
  border-radius: 2px;
  margin: 2rem 0;
  width: 80px;
}
.rrr-rule-center { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------
   Full-Width CTA Band
   -------------------------------------------------- */
.rrr-cta-band {
  background: linear-gradient(135deg, var(--rrr-rust) 0%, var(--rrr-rust-dark) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rrr-cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(-20deg);
  pointer-events: none;
}
.rrr-cta-band h2 {
  color: var(--rrr-white);
  margin-bottom: 0.75rem;
}
.rrr-cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* --------------------------------------------------
   Trail / Activity Feature Cards
   -------------------------------------------------- */
.rrr-feature-card {
  background: var(--rrr-white);
  border-radius: var(--rrr-radius-md);
  overflow: hidden;
  border: 1px solid rgba(44,24,16,0.08);
  transition: var(--rrr-transition);
}
.rrr-feature-card:hover {
  box-shadow: var(--rrr-shadow-md);
  transform: translateY(-3px);
}
.rrr-feature-card-image {
  height: 200px;
  overflow: hidden;
}
.rrr-feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.rrr-feature-card:hover .rrr-feature-card-image img {
  transform: scale(1.05);
}
.rrr-feature-card-content {
  padding: 1.25rem;
}

/* Difficulty badges for trails */
.rrr-difficulty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.5rem;
}
.rrr-difficulty-green  { background: #2ecc71; color: #fff; }
.rrr-difficulty-blue   { background: #3498db; color: #fff; }
.rrr-difficulty-black  { background: #2c3e50; color: #fff; }

/* --------------------------------------------------
   Responsive / Mobile
   -------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --rrr-section-pad: 2.5rem;
    --rrr-section-pad-lg: 3.5rem;
  }

  .rrr-utility-bar { display: none; }

  .rrr-hero { min-height: 60vh; }

  .rrr-stats-bar .rrr-stats-grid {
    gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .wp-block-navigation {
    flex-wrap: wrap;
  }

  .rrr-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .rrr-newsletter-form {
    flex-direction: column;
  }
  .rrr-newsletter-form input[type="email"] {
    min-width: unset;
  }
}

/* --------------------------------------------------
   Print styles
   -------------------------------------------------- */
@media print {
  .rrr-utility-bar,
  .site-header,
  .site-footer,
  .wp-block-navigation { display: none; }
}
