/*
Theme Name: RIO Legal Services
Theme URI: https://riolegal.example.com
Author: RIO Legal Services
Author URI: https://riolegal.example.com
Description: A premium, Elementor-compatible WordPress theme crafted for RIO Legal Services. Elegant gold + black aesthetic tailored for law firms, advocates and legal consultants. Full support for Elementor page builder, custom menus, custom logo, and a legal-services submenu structure (Property Law, Family Law, Will Registration).
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rio-legal
Tags: elementor, one-column, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, business
*/

/* ==========================================================================
   RIO Legal Services - Core Theme Styles
   Gold + Black premium legal aesthetic
   ========================================================================== */

:root {
    --rio-gold: #b8892b;
    --rio-gold-light: #d4a94a;
    --rio-gold-dark: #8f6a1f;
    --rio-black: #0d0d0d;
    --rio-charcoal: #1a1a1a;
    --rio-cream: #f7f3ec;
    --rio-white: #ffffff;
    --rio-gray: #6b6b6b;
    --rio-border: #e7e0d2;
    --rio-font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --rio-font-sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    font-family: var(--rio-font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    background: var(--rio-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rio-font-serif);
    color: var(--rio-black);
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 0.6em;
}

a {
    color: var(--rio-gold-dark);
    text-decoration: none;
    transition: color .25s ease;
}
a:hover { color: var(--rio-gold); }

img { max-width: 100%; height: auto; display: block; }

.rio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   HEADER — Two-tier premium header
   ========================================================================== */

.rio-site-header {
    background: var(--rio-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

/* Top info bar */
.rio-topbar {
    background: var(--rio-black);
    color: #c9c1ad;
    font-size: 13px;
    border-bottom: 1px solid #1f1a10;
}
.rio-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 24px;
    gap: 20px;
}
.rio-topbar__left,
.rio-topbar__right {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}
.rio-topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c9c1ad;
    letter-spacing: 0.3px;
}
.rio-topbar__item svg { color: var(--rio-gold-light); flex-shrink: 0; }
a.rio-topbar__item { transition: color .25s; }
a.rio-topbar__item:hover { color: var(--rio-gold-light); }

/* Main navbar */
.rio-navbar {
    background: var(--rio-white);
    border-bottom: 3px solid var(--rio-gold);
    position: relative;
}
.rio-navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 24px;
}
.rio-logo-wrap { flex-shrink: 0; }
.rio-logo-wrap img,
.custom-logo { max-height: 76px; width: auto; display: block; }
.rio-logo-wrap a { display: inline-block; }

.rio-navbar__cta { flex-shrink: 0; }
.rio-btn--sm { padding: 11px 24px; font-size: 12px; }

/* Navigation */
.rio-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 34px;
}
.rio-main-nav li { position: relative; }
.rio-main-nav a {
    color: var(--rio-black);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 24px 0;
    display: inline-block;
    position: relative;
    font-family: var(--rio-font-sans);
}
.rio-main-nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 18px;
    height: 2px;
    width: 0;
    background: var(--rio-gold);
    transform: translateX(-50%);
    transition: width .3s ease;
}
.rio-main-nav a:hover::after,
.rio-main-nav .current-menu-item > a::after,
.rio-main-nav .current-menu-parent > a::after,
.rio-main-nav .current-menu-ancestor > a::after { width: 28px; }

/* Parent items with submenu — clean caret icon AFTER the text */
.rio-main-nav .menu-item-has-children > a {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%23b8892b' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/></svg>");
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 18px;
}
.rio-main-nav .menu-item-has-children:hover > a {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%238f6a1f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 5l4-4 4 4'/></svg>");
}

/* Dropdown */
.rio-main-nav ul ul {
    position: absolute;
    top: 100%;
    left: -14px;
    background: var(--rio-white);
    box-shadow: 0 12px 34px rgba(0,0,0,0.14);
    min-width: 280px;
    padding: 12px 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 3px solid var(--rio-gold);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .25s, transform .25s;
}
.rio-main-nav li:hover > ul,
.rio-main-nav li:focus-within > ul {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
.rio-main-nav ul ul li a {
    padding: 12px 24px;
    text-transform: none;
    letter-spacing: 0.3px;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.rio-main-nav ul ul li a::after { display: none; }
.rio-main-nav ul ul li a::before { display: none; }
.rio-main-nav ul ul li a:hover {
    background: var(--rio-cream);
    color: var(--rio-gold-dark);
    padding-left: 30px;
}

/* Hamburger toggle */
.rio-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--rio-border);
    padding: 10px 12px;
    cursor: pointer;
    width: 46px;
    height: 46px;
    position: relative;
    border-radius: 3px;
    transition: all .3s ease;
}
.rio-menu-toggle:hover { border-color: var(--rio-gold); background: var(--rio-cream); }
.rio-menu-toggle__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rio-black);
    margin: 4px auto;
    border-radius: 2px;
    transition: transform .35s ease, opacity .25s ease, background .3s;
    transform-origin: center;
}
.rio-menu-toggle[aria-expanded="true"] .rio-menu-toggle__bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background: var(--rio-gold);
}
.rio-menu-toggle[aria-expanded="true"] .rio-menu-toggle__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.rio-menu-toggle[aria-expanded="true"] .rio-menu-toggle__bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background: var(--rio-gold);
}

/* ==========================================================================
   MOBILE DRAWER
   ========================================================================== */
.rio-drawer {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}
.rio-drawer.is-open { pointer-events: auto; }

.rio-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.55);
    opacity: 0;
    transition: opacity .35s ease;
}
.rio-drawer.is-open .rio-drawer__overlay { opacity: 1; }

.rio-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: min(360px, 88vw);
    background: var(--rio-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.rio-drawer.is-open .rio-drawer__panel { transform: translateX(0); }

.rio-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--rio-border);
}
.rio-drawer__brand img,
.rio-drawer__brand .custom-logo { max-height: 54px; width: auto; }
.rio-drawer__close {
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    color: var(--rio-black);
    cursor: pointer;
    padding: 4px 12px;
    transition: color .25s, transform .25s;
}
.rio-drawer__close:hover { color: var(--rio-gold); transform: rotate(90deg); }

.rio-drawer__nav { padding: 20px 6px 40px; }
.rio-drawer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rio-drawer__nav > ul > li,
.rio-drawer__nav .menu > li,
.rio-drawer__nav ul li {
    border-bottom: 1px solid var(--rio-border);
}
.rio-drawer__nav ul ul li:last-child { border-bottom: none; }
.rio-drawer__nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    color: var(--rio-black);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-family: var(--rio-font-sans);
    transition: background .25s, color .25s;
}
.rio-drawer__nav a:hover { background: var(--rio-cream); color: var(--rio-gold-dark); }

.rio-drawer__nav .menu-item-has-children > a::after {
    content: '+';
    font-size: 22px;
    color: var(--rio-gold);
    font-weight: 400;
    transition: transform .3s;
    line-height: 1;
}
.rio-drawer__nav .menu-item-has-children.is-open > a::after { transform: rotate(45deg); }

.rio-drawer__nav ul ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #faf6ee;
}
.rio-drawer__nav .menu-item-has-children.is-open > ul { max-height: 500px; }
.rio-drawer__nav ul ul a {
    padding: 12px 34px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #555;
    border: none;
}

.rio-drawer__cta {
    display: block;
    margin: 24px 22px 20px;
    text-align: center;
}
.rio-drawer__contact {
    padding: 20px 22px;
    border-top: 1px solid var(--rio-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rio-drawer__contact a {
    color: var(--rio-black);
    font-size: 14px;
    letter-spacing: 0.4px;
}
.rio-drawer__contact a:hover { color: var(--rio-gold-dark); }

/* Responsive header */
@media (max-width: 1024px) {
    .rio-main-nav ul { gap: 24px; }
    .rio-main-nav a { font-size: 13px; }
}
@media (max-width: 900px) {
    .rio-main-nav,
    .rio-navbar__cta { display: none; }
    .rio-menu-toggle { display: block; }
    .rio-topbar__item--hide-sm { display: none; }
    .rio-topbar__inner { padding: 8px 16px; gap: 12px; font-size: 12px; }
    .rio-topbar__left, .rio-topbar__right { gap: 16px; }
    .rio-navbar__inner { padding: 12px 16px; }
    .rio-logo-wrap img, .custom-logo { max-height: 58px; }
}
@media (max-width: 560px) {
    .rio-topbar__right { display: none; }
    .rio-topbar__left { flex: 1; justify-content: space-between; }
    .rio-topbar__item span { font-size: 12px; }
}

/* Buttons */
.rio-btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--rio-gold);
    color: var(--rio-white) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 13px;
    border: 2px solid var(--rio-gold);
    border-radius: 2px;
    transition: all .3s ease;
    cursor: pointer;
}
.rio-btn:hover {
    background: var(--rio-black);
    border-color: var(--rio-black);
    color: var(--rio-white) !important;
}
.rio-btn.rio-btn-outline {
    background: transparent;
    color: var(--rio-gold) !important;
}
.rio-btn.rio-btn-outline:hover {
    background: var(--rio-gold);
    color: var(--rio-white) !important;
}

/* Hero */
.rio-hero {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(rgba(13,13,13,0.72), rgba(13,13,13,0.72)),
        url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--rio-white);
    text-align: center;
}
.rio-hero h1 {
    color: var(--rio-white);
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 20px;
}
.rio-hero h1 span { color: var(--rio-gold-light); font-style: italic; }
.rio-hero p {
    max-width: 780px;
    margin: 0 auto 36px;
    font-size: 18px;
    color: #e8e2d5;
}

/* Section */
.rio-section {
    padding: 90px 0;
}
.rio-section-alt { background: var(--rio-cream); }
.rio-section-dark { background: var(--rio-black); color: #e8e2d5; }
.rio-section-dark h1, .rio-section-dark h2, .rio-section-dark h3 { color: var(--rio-white); }

.rio-section-title {
    text-align: center;
    margin-bottom: 50px;
}
.rio-section-title .rio-eyebrow {
    display: inline-block;
    color: var(--rio-gold);
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
}
.rio-section-title h2 { font-size: clamp(28px, 3.6vw, 44px); }
.rio-section-title .rio-divider {
    width: 60px;
    height: 3px;
    background: var(--rio-gold);
    margin: 18px auto 0;
}

/* Practice cards */
.rio-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.rio-practice-card {
    background: var(--rio-white);
    border: 1px solid var(--rio-border);
    padding: 40px 32px;
    text-align: center;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
    position: relative;
    overflow: hidden;
}
.rio-practice-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 4px; width: 100%;
    background: var(--rio-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.rio-practice-card:hover::before { transform: scaleX(1); }
.rio-practice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--rio-gold-light);
}
.rio-practice-card .rio-icon {
    width: 68px; height: 68px;
    margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    background: var(--rio-cream);
    border-radius: 50%;
    color: var(--rio-gold-dark);
    font-size: 30px;
}
.rio-practice-card h3 { font-size: 22px; margin-bottom: 12px; }
.rio-practice-card p { color: var(--rio-gray); font-size: 15px; }

/* Stats infographic */
.rio-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.rio-stat .rio-stat-num {
    font-family: var(--rio-font-serif);
    font-size: 64px;
    color: var(--rio-gold);
    font-weight: 700;
    line-height: 1;
    display: block;
}
.rio-stat .rio-stat-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c9c1ad;
}

/* About / two-column */
.rio-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.rio-two-col img { border-radius: 4px; }

/* Contact */
.rio-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.rio-contact-info h3 { color: var(--rio-gold-dark); font-size: 20px; margin-bottom: 8px; }
.rio-contact-info p { margin: 0 0 22px; color: #333; }
.rio-contact-form input,
.rio-contact-form textarea,
.rio-contact-form select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--rio-border);
    background: var(--rio-white);
    font-family: inherit;
    font-size: 15px;
    color: #222;
}
.rio-contact-form textarea { min-height: 140px; resize: vertical; }
.rio-contact-form input:focus,
.rio-contact-form textarea:focus,
.rio-contact-form select:focus {
    outline: none;
    border-color: var(--rio-gold);
}

/* Footer */
.rio-site-footer {
    background: var(--rio-black);
    color: #bcb6a4;
    padding: 70px 0 20px;
    font-size: 14px;
}
.rio-footer-cols {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}
.rio-site-footer h4 {
    color: var(--rio-gold-light);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    font-family: var(--rio-font-sans);
}
.rio-site-footer a { color: #bcb6a4; }
.rio-site-footer a:hover { color: var(--rio-gold-light); }
.rio-site-footer ul { list-style: none; padding: 0; margin: 0; }
.rio-site-footer ul li { margin-bottom: 10px; }
.rio-footer-bottom {
    border-top: 1px solid #262626;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: #7a7364;
}

/* Page title banner */
.rio-page-banner {
    background: linear-gradient(rgba(13,13,13,0.78), rgba(13,13,13,0.78)),
                url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: var(--rio-white);
    text-align: center;
    padding: 90px 0 70px;
}
.rio-page-banner h1 { color: var(--rio-white); font-size: clamp(30px, 4.2vw, 48px); margin: 0 0 10px; }
.rio-page-banner .rio-breadcrumb { color: var(--rio-gold-light); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; }

/* Content wrapper */
.rio-page-content {
    padding: 70px 0;
}
.rio-page-content h2 { color: var(--rio-gold-dark); }
.rio-page-content ul li { margin-bottom: 8px; }

/* Responsive */
@media (max-width: 992px) {
    .rio-grid-3, .rio-stats, .rio-two-col, .rio-contact-grid, .rio-footer-cols {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .rio-grid-3, .rio-stats, .rio-two-col, .rio-contact-grid, .rio-footer-cols {
        grid-template-columns: 1fr;
    }
    .rio-hero { padding: 80px 0; }
    .rio-section { padding: 60px 0; }
}

/* Elementor compatibility helpers */
.elementor-page .rio-page-content { padding: 0; }
.elementor-page .rio-page-banner { display: none; }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.rio-faq {
    max-width: 900px;
    margin: 0 auto;
}
.rio-faq__item {
    background: var(--rio-white);
    border: 1px solid var(--rio-border);
    margin-bottom: 14px;
    transition: border-color .25s, box-shadow .25s;
}
.rio-faq__item:hover { border-color: var(--rio-gold-light); }
.rio-faq__item.is-open {
    border-color: var(--rio-gold);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.rio-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 28px;
    cursor: pointer;
    font-family: var(--rio-font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--rio-black);
    transition: color .25s;
}
.rio-faq__q:hover { color: var(--rio-gold-dark); }
.rio-faq__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    background: var(--rio-cream);
    color: var(--rio-gold-dark);
    border-radius: 50%;
    font-family: var(--rio-font-sans);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    letter-spacing: 0;
    margin-right: 14px;
}
.rio-faq__q-text { flex: 1; }
.rio-faq__icon {
    width: 22px; height: 22px;
    position: relative;
    flex-shrink: 0;
    transition: transform .35s ease;
}
.rio-faq__icon::before,
.rio-faq__icon::after {
    content: '';
    position: absolute;
    background: var(--rio-gold);
    top: 50%;
    left: 50%;
    transition: opacity .3s, transform .35s ease;
}
.rio-faq__icon::before {
    width: 14px; height: 2px;
    transform: translate(-50%, -50%);
}
.rio-faq__icon::after {
    width: 2px; height: 14px;
    transform: translate(-50%, -50%);
}
.rio-faq__item.is-open .rio-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.rio-faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(0.4, 0, 0.2, 1);
}
.rio-faq__item.is-open .rio-faq__a { max-height: 700px; }
.rio-faq__a-inner {
    padding: 0 28px 24px 76px;
    color: #555;
    line-height: 1.75;
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.rio-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.rio-blog-card {
    background: var(--rio-white);
    border: 1px solid var(--rio-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .35s, box-shadow .35s, border-color .35s;
}
.rio-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--rio-gold-light);
}
.rio-blog-card__img {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.rio-blog-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(13,13,13,0.4) 100%);
}
.rio-blog-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--rio-gold);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 6px 14px;
    z-index: 2;
}
.rio-blog-card__body {
    padding: 28px 26px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.rio-blog-card__meta {
    color: var(--rio-gray);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.rio-blog-card__meta span + span::before {
    content: '·';
    margin: 0 8px;
    color: var(--rio-gold);
}
.rio-blog-card h3 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 12px;
}
.rio-blog-card h3 a { color: var(--rio-black); }
.rio-blog-card h3 a:hover { color: var(--rio-gold-dark); }
.rio-blog-card p {
    color: var(--rio-gray);
    font-size: 15px;
    margin-bottom: 18px;
    flex: 1;
}
.rio-blog-card__more {
    color: var(--rio-gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.4px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}
.rio-blog-card__more::after {
    content: '→';
    transition: transform .3s;
}
.rio-blog-card__more:hover::after { transform: translateX(4px); }

/* Blog single */
.rio-blog-single {
    max-width: 820px;
    margin: 0 auto;
}
.rio-blog-single h2 { margin: 36px 0 14px; color: var(--rio-gold-dark); }
.rio-blog-single h3 { margin: 28px 0 10px; }
.rio-blog-single ul, .rio-blog-single ol { padding-left: 22px; margin-bottom: 18px; }
.rio-blog-single p { margin-bottom: 16px; }

@media (max-width: 768px) {
    .rio-blog-grid { grid-template-columns: 1fr; }
    .rio-faq__q { font-size: 16px; padding: 18px 20px; }
    .rio-faq__a-inner { padding: 0 20px 20px 60px; }
    .rio-faq__num { width: 30px; height: 30px; margin-right: 10px; }
}
