/* ================================================================
   REGAL RAJASTHAN — Royal Cultural News Portal
   Colors: Maroon, Gold, Cream, Dark Navy
   Fonts: Playfair Display, Poppins
   ================================================================ */

/* --- Reset & Variables --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Rajasthani Royal Palette */
    --rr-maroon: #8B1A2B;
    --rr-maroon-dark: #6B1420;
    --rr-gold: #C5A55A;
    --rr-gold-light: #D4B96E;
    --rr-gold-pale: #F0E6CC;
    --rr-cream: #FAF6F0;
    --rr-cream-dark: #F0EBE1;
    --rr-sand: #E8DFD0;
    --rr-dark: #1A1A2E;
    --rr-dark-soft: #2D2D44;
    --rr-text: #2C2C2C;
    --rr-text-light: #6B6B6B;
    --rr-white: #FFFFFF;
    --rr-border: #E0D8CA;
    --rr-border-light: #EDE8DF;

    /* Fonts */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', -apple-system, sans-serif;

    /* Spacing */
    --container: 1240px;
    --gap: 24px;
    --radius: 6px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--rr-text);
    background: var(--rr-cream);
    line-height: 1.6;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Container --- */
.rr-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================================
   BREAKING NEWS TICKER
   ================================================================ */
.rr-ticker {
    background: var(--rr-maroon);
    color: var(--rr-white);
    display: flex;
    align-items: center;
    font-size: 0.82rem;
    font-weight: 500;
    overflow: hidden;
    height: 36px;
}
.rr-ticker__label {
    background: var(--rr-gold);
    color: var(--rr-dark);
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    white-space: nowrap;
    flex-shrink: 0;
}
.rr-ticker__wrap { overflow: hidden; flex: 1; }
.rr-ticker__content {
    display: flex;
    align-items: center;
    animation: ticker 40s linear infinite;
    white-space: nowrap;
    gap: 20px;
    padding-left: 20px;
}
.rr-ticker__item { color: var(--rr-white); opacity: 0.9; transition: opacity 0.2s; }
.rr-ticker__item:hover { opacity: 1; }
.rr-ticker__sep { color: var(--rr-gold); font-size: 0.5rem; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================================================================
   HEADER
   ================================================================ */
.rr-header { position: relative; z-index: 100; background: var(--rr-white); }
.rr-header.is-scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

/* Top bar */
.rr-header__top {
    background: var(--rr-dark);
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    padding: 6px 0;
}
.rr-header__top-inner { display: flex; justify-content: space-between; align-items: center; }
.rr-header__date { display: flex; align-items: center; gap: 6px; }
.rr-header__social { display: flex; gap: 12px; }
.rr-header__social a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.rr-header__social a:hover { color: var(--rr-gold); }

/* Brand */
.rr-header__brand {
    padding: 18px 0;
    border-bottom: 1px solid var(--rr-border-light);
    background: var(--rr-white);
}
.rr-header__brand-inner { display: flex; align-items: center; justify-content: center; gap: 24px; }
.rr-header__ornament {
    color: var(--rr-gold);
    font-size: 1.2rem;
    opacity: 0.6;
}

.rr-logo { text-align: center; display: block; }
.rr-logo__pre {
    display: block;
    font-family: var(--font-elegant);
    font-size: 0.85rem;
    color: var(--rr-text-light);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: -2px;
}
.rr-logo__main {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--rr-maroon);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.rr-logo__tag {
    display: block;
    font-family: var(--font-elegant);
    font-size: 0.8rem;
    color: var(--rr-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.rr-nav {
    background: var(--rr-maroon);
    position: relative;
}
.rr-nav__inner { display: flex; align-items: center; }
.rr-nav__list { display: flex; align-items: center; width: 100%; justify-content: center; }
.rr-nav__list > li { position: relative; }
.rr-nav__link {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 12px 16px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.2s;
    white-space: nowrap;
}
.rr-nav__link:hover,
.rr-nav__link.is-active {
    color: var(--rr-white);
    background: rgba(255,255,255,0.1);
}

/* Dropdown */
.rr-nav__dropdown:hover .rr-nav__submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.rr-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--rr-white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-radius: 0 0 var(--radius) var(--radius);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s;
    z-index: 50;
}
.rr-nav__submenu li a {
    display: block;
    padding: 8px 20px;
    color: var(--rr-text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s;
}
.rr-nav__submenu li a:hover {
    background: var(--rr-cream);
    color: var(--rr-maroon);
    padding-left: 24px;
}

/* Hamburger */
.rr-nav__hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    gap: 5px;
}
.rr-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rr-white);
    transition: all 0.3s;
}

/* Mobile Nav */
.rr-mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--rr-white);
    z-index: 200;
    transition: left 0.3s ease;
    overflow-y: auto;
}
.rr-mobile-nav.is-open { left: 0; }
.rr-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.rr-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.rr-mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 2px solid var(--rr-gold);
    background: var(--rr-maroon);
}
.rr-mobile-nav__title {
    color: var(--rr-white);
    font-family: var(--font-display);
    font-weight: 700;
}
.rr-mobile-nav__header button {
    background: none;
    border: none;
    color: var(--rr-white);
    font-size: 1.8rem;
    cursor: pointer;
}
.rr-mobile-nav__list { padding: 10px 0; }
.rr-mobile-nav__list > li > a,
.rr-mobile-nav__parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rr-text);
    border-bottom: 1px solid var(--rr-border-light);
}
.rr-mobile-nav__sub {
    display: none;
    background: var(--rr-cream);
}
.rr-mobile-nav__has-children.is-open .rr-mobile-nav__sub { display: block; }
.rr-mobile-nav__sub li a {
    display: block;
    padding: 10px 20px 10px 36px;
    font-size: 0.85rem;
    color: var(--rr-text-light);
    border-bottom: 1px solid var(--rr-border-light);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.rr-hero { padding: 20px 0; background: var(--rr-white); }
.rr-hero__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
    min-height: 440px;
}
.rr-hero__main { display: block; border-radius: var(--radius); overflow: hidden; }
.rr-hero__image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.rr-hero__overlay {
    padding: 40px 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    width: 100%;
}
.rr-hero__cat {
    display: inline-block;
    background: var(--rr-gold);
    color: var(--rr-dark);
    padding: 3px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 2px;
    margin-bottom: 10px;
}
.rr-hero__cat--sm { font-size: 0.65rem; padding: 2px 8px; }
.rr-hero__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--rr-white);
    line-height: 1.25;
    margin-bottom: 8px;
}
.rr-hero__meta {
    display: flex;
    gap: 16px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}
.rr-hero__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.rr-hero__side-item { border-radius: var(--radius); overflow: hidden; display: block; }
.rr-hero__side-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.rr-hero__side-overlay {
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    width: 100%;
}
.rr-hero__side-title {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--rr-white);
    line-height: 1.3;
    margin-top: 6px;
}

/* ================================================================
   SECTIONS
   ================================================================ */
.rr-section { padding: 48px 0; }
.rr-section--cream { background: var(--rr-cream); }
.rr-section--dark {
    background: var(--rr-dark);
    color: var(--rr-white);
}
.rr-section--dark .rr-section-heading__title { color: var(--rr-white); }
.rr-section--dark .rr-section-heading__line { background: rgba(197,165,90,0.3); }
.rr-mt-md { margin-top: var(--gap); }

/* Section Heading */
.rr-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.rr-section-heading__line { flex: 1; height: 1px; background: var(--rr-border); }
.rr-section-heading__title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--rr-maroon);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rr-section-heading__icon { color: var(--rr-gold); font-size: 0.9rem; }
.rr-section-heading__link {
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rr-maroon);
    transition: color 0.2s;
}
.rr-section-heading__link:hover { color: var(--rr-gold); }

/* ================================================================
   GRIDS
   ================================================================ */
.rr-grid { display: grid; gap: var(--gap); }
.rr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rr-grid--4 { grid-template-columns: repeat(4, 1fr); }
.rr-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.rr-content-sidebar { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }

/* ================================================================
   POST CARD
   ================================================================ */
.rr-card { background: var(--rr-white); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.rr-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.rr-card--dark { background: var(--rr-dark-soft); }
.rr-card__image {
    width: 100%;
    padding-bottom: 58%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.rr-card__cat {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--rr-gold);
    color: var(--rr-dark);
    padding: 2px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 2px;
}
.rr-card__body { padding: 16px 18px; }
.rr-card--dark .rr-card__body { padding: 14px 16px; }
.rr-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--rr-text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.rr-card__title-link:hover .rr-card__title { color: var(--rr-maroon); }
.rr-card--dark .rr-card__title { color: var(--rr-white); }
.rr-card--dark .rr-card__title-link:hover .rr-card__title { color: var(--rr-gold-light); }
.rr-card__excerpt {
    font-size: 0.88rem;
    color: var(--rr-text-light);
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}
.rr-card__meta {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--rr-text-light);
}
.rr-card--dark .rr-card__meta { color: rgba(255,255,255,0.5); }
.rr-card__author { font-weight: 600; }
.rr-card--small .rr-card__title { font-size: 0.95rem; -webkit-line-clamp: 2; }

/* ================================================================
   LIST ITEMS (Entertainment / Business sections)
   ================================================================ */
.rr-list-stack { display: flex; flex-direction: column; gap: 0; }
.rr-list-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rr-border-light);
    transition: background 0.15s;
}
.rr-list-item:last-child { border-bottom: none; }
.rr-list-item:hover { background: var(--rr-cream); margin: 0 -10px; padding-left: 10px; padding-right: 10px; border-radius: var(--radius); }
.rr-list-item--featured { flex-direction: column; gap: 12px; }
.rr-list-item__img {
    width: 100%;
    padding-bottom: 52%;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.rr-list-item__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--rr-text);
}
.rr-list-item--featured .rr-list-item__title { font-size: 1.1rem; }
.rr-list-item__date { font-size: 0.75rem; color: var(--rr-text-light); margin-top: 4px; }

/* ================================================================
   LATEST LIST
   ================================================================ */
.rr-latest-list { display: flex; flex-direction: column; gap: 0; }
.rr-latest-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rr-border);
    transition: background 0.15s;
    align-items: flex-start;
}
.rr-latest-item:hover { background: rgba(0,0,0,0.02); margin: 0 -12px; padding-left: 12px; padding-right: 12px; border-radius: var(--radius); }
.rr-latest-item__img {
    width: 120px;
    height: 80px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    flex-shrink: 0;
    background-color: var(--rr-sand);
}
.rr-latest-item__body { flex: 1; }
.rr-latest-item__cat {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rr-maroon);
    letter-spacing: 0.06em;
}
.rr-latest-item__title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    margin-top: 3px;
    color: var(--rr-text);
}
.rr-latest-item__date { font-size: 0.75rem; color: var(--rr-text-light); margin-top: 4px; }

/* ================================================================
   SIDEBAR
   ================================================================ */
.rr-sidebar-widget {
    background: var(--rr-white);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 24px;
    border: 1px solid var(--rr-border-light);
}
.rr-sidebar-widget__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rr-maroon);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--rr-gold);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Trending */
.rr-trending-list { counter-reset: none; }
.rr-trending-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--rr-border-light);
    align-items: flex-start;
}
.rr-trending-item:last-child { border-bottom: none; }
.rr-trending-item__num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rr-gold);
    line-height: 1;
    min-width: 32px;
}
.rr-trending-item__link h5 {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--rr-text);
    transition: color 0.15s;
}
.rr-trending-item__link:hover h5 { color: var(--rr-maroon); }
.rr-trending-item__cat {
    font-size: 0.68rem;
    color: var(--rr-text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
    display: block;
}

/* Sidebar Related */
.rr-sidebar-related {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--rr-border-light);
    align-items: center;
}
.rr-sidebar-related:last-child { border-bottom: none; }
.rr-sidebar-related__img {
    width: 72px;
    height: 50px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
    background-color: var(--rr-sand);
}
.rr-sidebar-related h5 {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--rr-text);
    transition: color 0.15s;
}
.rr-sidebar-related:hover h5 { color: var(--rr-maroon); }

/* Author Box */
.rr-author-box { text-align: center; }
.rr-author-box__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--rr-maroon);
    color: var(--rr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 10px;
}
.rr-author-box h4 { font-family: var(--font-display); font-weight: 700; }
.rr-author-box p { font-size: 0.85rem; color: var(--rr-text-light); margin-top: 6px; }

/* ================================================================
   CATEGORY PAGE
   ================================================================ */
.rr-page-header {
    background: var(--rr-white);
    padding: 24px 0 28px;
    border-bottom: 3px solid var(--rr-gold);
}
.rr-page-header__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--rr-maroon);
    margin-top: 8px;
}
.rr-page-header__desc {
    color: var(--rr-text-light);
    margin-top: 6px;
    font-size: 0.95rem;
}
.rr-page-header__pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 14px;
}
.rr-pill {
    padding: 5px 16px;
    border: 1px solid var(--rr-border);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rr-text);
    transition: all 0.2s;
}
.rr-pill:hover { background: var(--rr-maroon); color: var(--rr-white); border-color: var(--rr-maroon); }

.rr-breadcrumb {
    font-size: 0.8rem;
    color: var(--rr-text-light);
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}
.rr-breadcrumb a { color: var(--rr-maroon); font-weight: 500; }
.rr-breadcrumb a:hover { text-decoration: underline; }

.rr-pagination { margin-top: 40px; display: flex; justify-content: center; }
.rr-pagination nav { display: flex; gap: 4px; }
.rr-pagination .pagination { display: flex; gap: 4px; }
.rr-pagination .page-link,
.rr-pagination span,
.rr-pagination a {
    padding: 8px 14px;
    border: 1px solid var(--rr-border);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--rr-text);
    transition: all 0.15s;
}
.rr-pagination .active span,
.rr-pagination a:hover {
    background: var(--rr-maroon);
    color: var(--rr-white);
    border-color: var(--rr-maroon);
}

.rr-empty { text-align: center; padding: 60px 20px; color: var(--rr-text-light); font-size: 1.1rem; }

/* ================================================================
   ARTICLE PAGE
   ================================================================ */
.rr-article { padding: 24px 0 48px; background: var(--rr-cream); }
.rr-article__layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    margin-top: 20px;
}
.rr-article__cats { display: flex; gap: 8px; margin-bottom: 12px; }
.rr-article__cat-badge {
    background: var(--rr-maroon);
    color: var(--rr-white);
    padding: 3px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 2px;
}
.rr-article__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--rr-dark);
    margin-bottom: 16px;
}
.rr-article__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--rr-border);
    border-bottom: 1px solid var(--rr-border);
    margin-bottom: 24px;
}
.rr-article__author {
    display: flex;
    gap: 10px;
    align-items: center;
}
.rr-article__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rr-maroon);
    color: var(--rr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}
.rr-article__author strong { display: block; font-size: 0.9rem; }
.rr-article__author time { display: block; font-size: 0.78rem; color: var(--rr-text-light); }
.rr-article__share { display: flex; gap: 10px; }
.rr-article__share a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--rr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rr-text-light);
    transition: all 0.2s;
}
.rr-article__share a:hover { background: var(--rr-maroon); color: var(--rr-white); border-color: var(--rr-maroon); }

.rr-article__hero-img {
    margin-bottom: 28px;
    border-radius: var(--radius);
    overflow: hidden;
}
.rr-article__hero-img img { width: 100%; }

/* Prose Content */
.rr-prose {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--rr-text);
}
.rr-prose p { margin-bottom: 1.2em; }
.rr-prose h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.8em 0 0.6em;
    color: var(--rr-dark);
}
.rr-prose h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1.5em 0 0.5em;
    color: var(--rr-dark);
}
.rr-prose a { color: var(--rr-maroon); text-decoration: underline; }
.rr-prose img { border-radius: var(--radius); margin: 1.5em 0; }
.rr-prose blockquote {
    border-left: 4px solid var(--rr-gold);
    padding: 16px 24px;
    margin: 1.5em 0;
    background: var(--rr-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
}
.rr-prose ul, .rr-prose ol { padding-left: 1.5em; margin-bottom: 1.2em; }
.rr-prose ul li { list-style: disc; margin-bottom: 0.4em; }
.rr-prose ol li { list-style: decimal; margin-bottom: 0.4em; }
.rr-prose table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.rr-prose th, .rr-prose td { padding: 10px 14px; border: 1px solid var(--rr-border); text-align: left; }
.rr-prose th { background: var(--rr-cream-dark); font-weight: 600; }

/* Tags */
.rr-article__tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--rr-border);
}
.rr-article__tags-label { font-weight: 700; font-size: 0.85rem; color: var(--rr-text-light); }
.rr-tag {
    padding: 4px 14px;
    background: var(--rr-white);
    border: 1px solid var(--rr-border);
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--rr-text);
    transition: all 0.15s;
}
.rr-tag:hover { background: var(--rr-maroon); color: var(--rr-white); border-color: var(--rr-maroon); }

/* ================================================================
   FOOTER
   ================================================================ */
.rr-footer {
    background: var(--rr-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 0;
}
.rr-footer__ornament { height: 20px; margin-bottom: 20px; }
.rr-footer__ornament svg { width: 100%; height: 20px; }
.rr-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}
.rr-footer__logo .rr-logo__main {
    font-size: 1.6rem;
    color: var(--rr-white);
}
.rr-footer__about { font-size: 0.88rem; line-height: 1.6; margin-top: 12px; }
.rr-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.rr-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.2s;
}
.rr-footer__social a:hover { background: var(--rr-gold); color: var(--rr-dark); border-color: var(--rr-gold); }
.rr-footer__heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--rr-white);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--rr-gold);
    display: inline-block;
}
.rr-footer__links ul li { margin-bottom: 8px; }
.rr-footer__links ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: all 0.15s;
}
.rr-footer__links ul li a:hover { color: var(--rr-gold); padding-left: 4px; }
.rr-footer__bottom {
    margin-top: 36px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.82rem;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
    .rr-hero__grid { grid-template-columns: 1fr; min-height: auto; }
    .rr-hero__image { min-height: 320px; }
    .rr-hero__title { font-size: 1.5rem; }
    .rr-hero__side { grid-template-columns: 1fr 1fr; }
    .rr-hero__side-image { min-height: 180px; }
    .rr-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .rr-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .rr-content-sidebar { grid-template-columns: 1fr; }
    .rr-article__layout { grid-template-columns: 1fr; }
    .rr-two-col { grid-template-columns: 1fr; gap: 20px; }
    .rr-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .rr-nav__list { display: none; }
    .rr-nav__hamburger { display: flex; }
    .rr-nav__inner { justify-content: flex-start; }
    .rr-header__brand { padding: 12px 0; }
    .rr-logo__main { font-size: 1.6rem; }
    .rr-logo__pre { font-size: 0.7rem; }
    .rr-logo__tag { font-size: 0.65rem; }
    .rr-header__ornament { display: none; }
    .rr-hero__side { grid-template-columns: 1fr; }
    .rr-hero__side-image { min-height: 140px; }
    .rr-grid--3 { grid-template-columns: 1fr; }
    .rr-grid--4 { grid-template-columns: 1fr 1fr; }
    .rr-article__title { font-size: 1.6rem; }
    .rr-article__meta { flex-direction: column; gap: 12px; align-items: flex-start; }
    .rr-section { padding: 32px 0; }
    .rr-footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .rr-page-header__title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .rr-hero__image { min-height: 260px; }
    .rr-hero__title { font-size: 1.2rem; }
    .rr-hero__overlay { padding: 24px 18px; }
    .rr-grid--4 { grid-template-columns: 1fr; }
    .rr-latest-item__img { width: 90px; height: 65px; }
    .rr-header__top { display: none; }
    .rr-prose { font-size: 1.05rem; }
}

/* ================================================================
   FIXES — Feb 6, 2026
   ================================================================ */

/* Logo image support */
.rr-logo__img {
    max-height: 50px;
    width: auto;
    display: block;
    margin: 0 auto;
}

/* Body font: Poppins */
.rr-prose {
    font-family: 'Poppins', -apple-system, sans-serif !important;
    font-size: 1.12rem !important;
    line-height: 1.85 !important;
    color: #2a2a2a !important;
}
.rr-prose p {
    margin-bottom: 1.4em;
    letter-spacing: 0.01em;
}
.rr-prose h2 {
    font-family: var(--font-display) !important;
    font-size: 1.65rem !important;
    font-weight: 700;
    margin: 1.8em 0 0.8em;
    color: var(--rr-dark);
}
.rr-prose h3 {
    font-family: var(--font-display) !important;
    font-size: 1.35rem !important;
    font-weight: 600;
    margin: 1.5em 0 0.6em;
    color: var(--rr-dark);
}
.rr-prose blockquote {
    border-left: 4px solid var(--rr-gold);
    padding: 16px 24px;
    margin: 1.5em 0;
    background: #faf8f3;
    font-style: italic;
    font-size: 1.08rem;
    color: #444;
}
.rr-prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 1.5em 0;
}
.rr-prose ul, .rr-prose ol {
    padding-left: 1.5em;
    margin-bottom: 1.2em;
}
.rr-prose li {
    margin-bottom: 0.4em;
}

/* Pagination — Bootstrap 5 style compatibility */
.rr-pagination { margin-top: 40px; display: flex; justify-content: center; }
.rr-pagination nav { width: 100%; display: flex; justify-content: center; }
.rr-pagination nav > div { display: flex; align-items: center; gap: 8px; }
.rr-pagination nav > div > div:first-child { display: none; }
.rr-pagination nav > div > div:last-child { display: flex; justify-content: center; }

/* Bootstrap 5 pagination classes */
.rr-pagination .pagination {
    display: flex;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.rr-pagination .page-item .page-link,
.rr-pagination .page-item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    transition: all 0.15s;
    min-width: 38px;
}
.rr-pagination .page-item.active .page-link,
.rr-pagination .page-item.active > span {
    background: var(--rr-maroon, #6B1D2A);
    color: #fff;
    border-color: var(--rr-maroon, #6B1D2A);
}
.rr-pagination .page-item .page-link:hover {
    background: var(--rr-maroon, #6B1D2A);
    color: #fff;
    border-color: var(--rr-maroon, #6B1D2A);
}
.rr-pagination .page-item.disabled .page-link,
.rr-pagination .page-item.disabled > span {
    color: #aaa;
    pointer-events: none;
    background: #f5f5f5;
}

/* Simple paginator (previous/next only) */
.rr-pagination nav > div > div {
    display: flex;
    gap: 8px;
}
.rr-pagination nav a,
.rr-pagination nav span.relative {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    transition: all 0.15s;
}
.rr-pagination nav a:hover {
    background: var(--rr-maroon, #6B1D2A);
    color: #fff;
    border-color: var(--rr-maroon, #6B1D2A);
}


/* ================================================================
   V2 FIXES — Feb 6, 2026
   ================================================================ */

/* Override gold color to match logo */
:root {
    --rr-gold: #d0a933 !important;
}

/* ---- Share Icons — Inline gold circles (matching footer style) ---- */
.rr-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    margin: 8px 0 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.rr-share__label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}
.rr-share__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rr-share__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #d0a933;
    color: #d0a933;
    background: transparent;
    transition: all 0.2s ease;
    text-decoration: none;
}
.rr-share__btn svg {
    width: 18px;
    height: 18px;
}
.rr-share__btn:hover {
    background: #d0a933;
    color: #fff;
    transform: scale(1.08);
}

/* ---- Smart Sticky Nav ---- */
/* Nav bar fixed positioning when scrolled */
.rr-nav {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.rr-header.nav-sticky .rr-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.rr-header.nav-sticky .rr-nav.nav-hidden {
    transform: translateY(-100%);
}
.rr-header.nav-sticky .rr-nav.nav-visible {
    transform: translateY(0);
}
/* Spacer to prevent content jump when nav becomes fixed */
.rr-nav-spacer {
    display: none;
}
.rr-header.nav-sticky .rr-nav-spacer {
    display: block;
}

/* ---- Gold accents throughout ---- */
.rr-article__cat-badge {
    background: #d0a933 !important;
    color: #fff !important;
}
.rr-card__cat {
    background: #d0a933 !important;
}
.rr-section-heading__link {
    color: #d0a933 !important;
}
.rr-section-heading__link:hover {
    color: #b8922a !important;
}
.rr-trending-item__num {
    color: #d0a933 !important;
}
.rr-sidebar__title::after {
    background: #d0a933 !important;
}
.rr-article__tag:hover {
    background: #d0a933 !important;
    color: #fff !important;
    border-color: #d0a933 !important;
}
.rr-ticker__label {
    background: #d0a933 !important;
}
.rr-nav__link.is-active,
.rr-nav__link:hover {
    color: #d0a933 !important;
}
a:hover {
    color: #d0a933;
}
.rr-hero__overlay .rr-card__cat {
    background: #d0a933 !important;
}

/* Footer social — ensure gold circle style */
.rr-footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #d0a933;
    color: #d0a933;
    transition: all 0.2s ease;
}
.rr-footer__social a:hover {
    background: #d0a933;
    color: #fff;
}

/* Header top social — gold style */
.rr-header__social a {
    color: #d0a933 !important;
}
.rr-header__social a:hover {
    opacity: 0.8;
}

/* Header ornaments — gold */
.rr-header__ornament {
    color: #d0a933 !important;
}


/* Force logo size */
.rr-logo__img {
    max-height: 50px !important;
    width: auto !important;
    display: block !important;
    margin: 0 auto !important;
}
.rr-header__brand {
    padding: 12px 0 !important;
}

/* ================================================================
   V3 — Compact Sticky Bar + Logo Fix
   ================================================================ */

/* Logo size fix */
.rr-logo__img {
    max-height: 50px !important;
    width: auto !important;
    display: block !important;
    margin: 0 auto !important;
}
.rr-header__brand {
    padding: 14px 0 !important;
}

/* Hide old top bar if still present */
.rr-header__top { display: none !important; }

/* ---- Compact Sticky Bar ---- */
.rr-stickybar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--rr-maroon, #6B1D2A);
}
.rr-stickybar.is-visible {
    transform: translateY(0);
}
.rr-stickybar__inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 8px 0;
}
.rr-stickybar__logo {
    flex-shrink: 0;
    text-decoration: none;
}
.rr-stickybar__logo img {
    max-height: 36px;
    width: auto;
    display: block;
}
.rr-stickybar__logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rr-maroon, #6B1D2A);
}
.rr-stickybar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
}
.rr-stickybar__nav li {
    flex-shrink: 0;
}
.rr-stickybar__nav > li > a {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
    font-family: var(--font-body);
}
.rr-stickybar__nav > li > a:hover,
.rr-stickybar__nav > li > a.is-active {
    color: #d0a933;
}
/* Dropdown support in sticky bar */
.rr-stickybar__nav .rr-nav__dropdown { position: relative; }
.rr-stickybar__nav .rr-nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-radius: 4px;
    min-width: 180px;
    padding: 8px 0;
    display: none;
    z-index: 10000;
}
.rr-stickybar__nav .rr-nav__dropdown:hover .rr-nav__submenu { display: block; }
.rr-stickybar__nav .rr-nav__submenu a {
    display: block;
    padding: 6px 16px;
    font-size: 0.8rem;
    color: #333;
    text-decoration: none;
}
.rr-stickybar__nav .rr-nav__submenu a:hover {
    background: #f5f5f5;
    color: #d0a933;
}

/* Mobile: hide sticky nav items, just show logo */
@media (max-width: 768px) {
    .rr-stickybar__nav { display: none; }
    .rr-stickybar__inner {
        justify-content: center;
    }
}


/* ================================================================
   V3 — Smart Sticky Header (Logo Left + Menu)
   ================================================================ */

/* Hide old top bar */
.rr-header__top { display: none !important; }

/* Logo size */
.rr-logo__img {
    max-height: 50px !important;
    width: auto !important;
    display: block !important;
    margin: 0 auto !important;
}
.rr-header__brand { padding: 14px 0 !important; }

/* ---- Sticky Bar ---- */
.rr-stickybar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    border-bottom: 2px solid var(--rr-maroon, #6B1D2A);
}
.rr-stickybar.is-visible {
    transform: translateY(0);
}
.rr-stickybar__inner {
    display: flex;
    align-items: center;
    padding: 0;
    height: 52px;
}

/* Logo — left */
.rr-stickybar__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 24px;
    padding: 6px 0;
}
.rr-stickybar__logo img {
    height: 34px;
    width: auto;
    display: block;
}
.rr-stickybar__logo span {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rr-maroon, #6B1D2A);
    white-space: nowrap;
}

/* Menu — flows after logo */
.rr-stickybar__nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    overflow: hidden;
}
.rr-stickybar__nav > a,
.rr-stickybar__dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 14px 11px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s, background 0.15s;
    font-family: var(--font-body);
    height: 52px;
    box-sizing: border-box;
}
.rr-stickybar__nav > a:hover,
.rr-stickybar__nav > a.is-active,
.rr-stickybar__dropdown > a:hover {
    color: #d0a933;
    background: rgba(208,169,51,0.06);
}

/* Dropdown */
.rr-stickybar__dropdown {
    position: relative;
}
.rr-stickybar__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-radius: 0 0 6px 6px;
    min-width: 190px;
    padding: 6px 0;
    display: none;
    z-index: 10000;
}
.rr-stickybar__dropdown:hover .rr-stickybar__submenu {
    display: block;
}
.rr-stickybar__submenu a {
    display: block;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.15s, color 0.15s;
}
.rr-stickybar__submenu a:hover {
    background: #faf6eb;
    color: #d0a933;
}

/* Hamburger in sticky bar — mobile only */
.rr-stickybar__hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.rr-stickybar__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #333;
    border-radius: 2px;
}

/* ---- Mobile ---- */
@media (max-width: 992px) {
    .rr-stickybar__nav { display: none; }
    .rr-stickybar__hamburger { display: flex; }
}


/* ================================================================
   V4 — Fix sticky + font update
   ================================================================ */

/* Force header NOT sticky */
.rr-header {
    position: relative !important;
    top: auto !important;
}

/* Poppins — site body font */
body, .rr-prose, .rr-card__body, .rr-card__excerpt,
.rr-list-item__body, .rr-article__content {
    font-family: 'Poppins', -apple-system, sans-serif !important;
}

/* Keep display font for headings */
h1, h2, h3, h4, h5, h6,
.rr-logo__main, .rr-hero__title, .rr-article__title,
.rr-section-heading__title, .rr-sidebar__title {
    font-family: 'Poppins', -apple-system, sans-serif !important;
}

/* UI elements keep sans-serif */
.rr-nav, .rr-nav__link, .rr-card__cat, .rr-card__date,
.rr-card__author, .rr-article__meta, .rr-article__cat-badge,
.rr-stickybar__nav, .rr-stickybar__nav a,
.rr-stickybar__dropdown a, .rr-footer,
.rr-ticker, .rr-article__tag, .rr-pagination {
    font-family: 'Poppins', -apple-system, sans-serif !important;
}

