/*
Theme Name:   Rhizarthrose (Astra Child)
Template:     astra
Description:  Astra child theme for Rhizarthrosis.com — evidence-based patient resource for thumb arthritis.
Version:      1.0.0
Text Domain:  rhizarthrose
*/

/* ==========================================================================
   BRAND TOKENS
   ========================================================================== */

:root {
    /* ── Brand palette ─────────────────────────────────────── */
    --rz-primary:        #0d5c6b;   /* deep clinical teal — trust, authority */
    --rz-primary-dark:   #094a57;   /* hover / pressed shade */
    --rz-primary-light:  #e6f4f7;   /* tints: badges, active bg */
    --rz-accent:         #0d7377;   /* links, interactive teal */

    /* Warm amber — for CTAs, disclaimers, warmth against teal */
    --rz-amber:          #d97706;   /* Tailwind amber-600 — vibrant, accessible */
    --rz-amber-dark:     #b45309;   /* hover on amber elements */
    --rz-amber-light:    #fef3c7;   /* disclaimer / warning backgrounds */
    --rz-amber-border:   #fde68a;   /* disclaimer borders */

    /* ── Text ──────────────────────────────────────────────── */
    --rz-text:           #1a2332;   /* near-black — softer than #000 */
    --rz-text-muted:     #64748b;   /* secondary / metadata */
    --rz-text-light:     #94a3b8;   /* placeholder / caption */

    /* ── Surfaces ──────────────────────────────────────────── */
    --rz-bg:             #ffffff;
    --rz-bg-subtle:      #f8fafc;   /* page / card outer bg */
    --rz-bg-section:     #f1f5f9;   /* alternate section rows */
    --rz-border:         #e2e8f0;

    /* ── Typography ────────────────────────────────────────── */
    --rz-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    /* ── Animation ─────────────────────────────────────────── */
    --rz-ease:           cubic-bezier(0.4, 0, 0.2, 1);
    --rz-dur:            160ms;

    /* ── Shadows ───────────────────────────────────────────── */
    --rz-shadow-sm:      0 1px 4px rgba(0,0,0,.07);
    --rz-shadow-md:      0 4px 16px rgba(0,0,0,.09);
    --rz-shadow-lift:    0 6px 24px rgba(13,92,107,.13);

    /* ── Override Astra global palette → brand colors ──────── */
    --ast-global-color-0: #0d5c6b;
    --ast-global-color-1: #094a57;
    --ast-global-color-4: #0d5c6b;
    --ast-global-color-5: #0d7377;
}

/* ==========================================================================
   BASE TYPOGRAPHY
   ========================================================================== */

body,
button,
input,
select,
textarea {
    font-family: var(--rz-font);
    color:       var(--rz-text);
}

a {
    color: var(--rz-accent);
}

a:hover {
    color: var(--rz-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family:    var(--rz-font);
    color:          var(--rz-text);
    letter-spacing: -0.01em;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

#masthead,
#masthead .main-header-bar {
    background-color: #ffffff;
    border-bottom:    1px solid var(--rz-border);
}

/* Scrolled state — shadow via JS / Astra sticky */
#masthead.ast-sticky-active .main-header-bar,
#masthead.ast-primary-sticky-header-active .main-header-bar {
    box-shadow: 0 2px 12px rgba(0,0,0,.07);
}

/* Main header inner — use flexbox, set height */
.main-header-container {
    height:          70px;
    display:         flex;
    align-items:     center;
    justify-content: space-between;
}

/* Logo text */
.ast-header-logo-area .site-title a,
.site-title a {
    color:          var(--rz-text);
    font-family:    var(--rz-font);
    font-weight:    800;
    letter-spacing: -0.02em;
}

.ast-header-logo-area .site-title a:hover,
.site-title a:hover {
    color: var(--rz-primary);
}

/* Tagline */
.site-description {
    font-size:  0.75rem;
    color:      var(--rz-text-muted);
    font-family: var(--rz-font);
}

/* ==========================================================================
   DESKTOP NAVIGATION
   ========================================================================== */

/* Nav wrapper */
.main-navigation,
.main-navigation .main-header-menu {
    font-family: var(--rz-font);
}

/* Top-level links */
.main-header-menu > .menu-item > .menu-link,
#site-navigation .main-header-menu > .menu-item > a {
    font-family:   var(--rz-font);
    font-size:     1rem;
    font-weight:   500;
    color:         var(--rz-text);
    padding:       10px 15px;
    border-radius: 4px;
    transition:    color 160ms ease, background 160ms ease;
    line-height:   1.3;
}

/* Hover / active state */
.main-header-menu > .menu-item:hover > .menu-link,
.main-header-menu > .menu-item:focus-within > .menu-link,
.main-header-menu > .menu-item.current-menu-item > .menu-link,
.main-header-menu > .menu-item.current-menu-ancestor > .menu-link,
.main-header-menu > .menu-item.current-page-ancestor > .menu-link {
    color:      var(--rz-primary);
    background: var(--rz-primary-light);
}

/* Dropdown indicator chevron */
.main-header-menu > .menu-item-has-children > .menu-link::after {
    border-color: currentColor;
    opacity:      0.55;
}

/* ── Dropdown panel ──────────────────────────────────────────────────────── */

.main-header-menu .sub-menu {
    background:    #ffffff;
    border:        1px solid var(--rz-border);
    border-radius: 6px;
    box-shadow:    0 4px 20px rgba(0,0,0,.10);
    padding:       6px 0;
    min-width:     220px;
    /* Astra shows/hides via JS class .ast-submenu-open — smooth with CSS */
    transition:    opacity 160ms ease, transform 160ms ease;
}

.main-header-menu .sub-menu .menu-link {
    font-family:  var(--rz-font);
    font-size:    0.9rem;
    font-weight:  400;
    color:        var(--rz-text);
    padding:      9px 18px;
    border-radius: 0;
    transition:   color 140ms ease, background 140ms ease;
}

.main-header-menu .sub-menu .menu-link:hover,
.main-header-menu .sub-menu .menu-item:hover > .menu-link {
    color:      var(--rz-primary);
    background: var(--rz-primary-light);
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

/* Hamburger / toggle button */
.ast-header-break-point .menu-toggle,
.ast-header-break-point .ast-menu-toggle {
    color:  var(--rz-text);
    border: 1.5px solid var(--rz-border);
    border-radius: 4px;
    padding: 6px 8px;
    font-family: var(--rz-font);
    font-size:   0.85rem;
    font-weight: 600;
    background:  transparent;
}

.ast-header-break-point .menu-toggle:hover,
.ast-header-break-point .ast-menu-toggle:hover {
    color:        var(--rz-primary);
    border-color: var(--rz-primary);
    background:   var(--rz-primary-light);
}

/* Mobile nav panel */
.ast-header-break-point .main-navigation,
.ast-header-break-point #site-navigation {
    border-top:     1px solid var(--rz-border);
    background:     #ffffff;
    box-shadow:     0 4px 16px rgba(0,0,0,.09);
}

/* Mobile top-level links */
.ast-header-break-point .main-header-menu .menu-link,
.ast-header-break-point .main-header-menu > .menu-item > .menu-link {
    font-family:   var(--rz-font);
    font-size:     1rem;
    font-weight:   500;
    color:         var(--rz-text);
    padding:       12px 20px;
    border-bottom: 1px solid var(--rz-border);
}

/* Mobile sub-menu items */
.ast-header-break-point .main-header-menu .sub-menu .menu-link {
    padding-left: 36px;
    font-size:    0.9rem;
    color:        var(--rz-text-muted);
    background:   var(--rz-bg-subtle);
}

.ast-header-break-point .main-header-menu .sub-menu .menu-link:hover {
    color:      var(--rz-primary);
    background: var(--rz-primary-light);
}

/* Mobile sub-menu toggle arrow */
.ast-header-break-point .ast-menu-toggle,
.ast-header-break-point .main-header-menu .ast-menu-toggle {
    color:  var(--rz-text-muted);
    border: none;
    border-left: 1px solid var(--rz-border);
    border-radius: 0;
    padding: 12px 16px;
    background: transparent;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.ast-button,
.button,
button[type="submit"],
input[type="submit"],
input[type="button"],
input[type="reset"],
.wp-block-button__link,
.wc-block-components-button,
.woocommerce a.button,
.woocommerce button.button,
.menu-toggle {
    font-family:   var(--rz-font);
    font-weight:   600;
    border-radius: 4px;
    background:    var(--rz-primary);
    border-color:  var(--rz-primary);
    color:         #ffffff;
    transition:    background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ast-button:hover,
.button:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover {
    background:   var(--rz-primary-dark);
    border-color: var(--rz-primary-dark);
    color:        #ffffff;
    box-shadow:   0 2px 8px rgba(13,92,107,.20);
}

/* ==========================================================================
   CONTENT AREA
   ========================================================================== */

/* Astra container width */
.ast-container {
    max-width: 1140px;
    padding-left:  24px;
    padding-right: 24px;
}

/* Page content / entry content */
.entry-content {
    font-family: var(--rz-font);
    font-size:   1.0625rem;
    line-height: 1.75;
    color:       var(--rz-text);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top:    1.75em;
    margin-bottom: 0.5em;
}

/* ==========================================================================
   BLOG ARCHIVE — ARTICLE CARDS
   ========================================================================== */

/* Blog post list container */
.ast-blog-layout-1,
.blog-layout-1 {
    border:        1px solid var(--rz-border);
    border-radius: 8px;
    overflow:      hidden;
    background:    #ffffff;
    transition:    box-shadow 200ms ease, transform 200ms ease;
    margin-bottom: var(--rz-gap, 24px);
}

.ast-blog-layout-1:hover,
.blog-layout-1:hover {
    box-shadow: var(--rz-shadow-lift);
    transform:  translateY(-3px);
}

/* Post thumbnail */
.ast-blog-layout-1 .post-thumb img,
.blog-layout-1 .post-thumb img {
    transition: transform 350ms ease;
}

.ast-blog-layout-1:hover .post-thumb img,
.blog-layout-1:hover .post-thumb img {
    transform: scale(1.03);
}

/* Entry meta — category badges */
.entry-meta .category-style-badge .post-category a {
    background:    var(--rz-primary-light);
    color:         var(--rz-primary);
    font-family:   var(--rz-font);
    font-size:     0.75rem;
    font-weight:   600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 3px;
    padding:       3px 8px;
}

/* Post titles in archive */
.entry-title a {
    color:       var(--rz-text);
    font-family: var(--rz-font);
    font-weight: 700;
    transition:  color 140ms ease;
}

.entry-title a:hover {
    color: var(--rz-primary);
}

/* Read more link */
.ast-read-more {
    color:       var(--rz-primary);
    font-weight: 600;
    font-family: var(--rz-font);
    transition:  color 140ms ease;
}

.ast-read-more:hover {
    color: var(--rz-primary-dark);
}

/* ==========================================================================
   SINGLE POST
   ========================================================================== */

/* Post header */
.ast-single-post .entry-title,
.single .entry-title {
    font-size:      clamp(1.75rem, 3.5vw, 2.5rem);
    line-height:    1.2;
    letter-spacing: -0.02em;
    color:          var(--rz-text);
}

/* Category badge on single */
.single .ast-blog-single-element .category-style-badge a,
.single .ast-tags-list a {
    background:    var(--rz-primary-light);
    color:         var(--rz-primary);
    border-radius: 3px;
    padding:       3px 10px;
    font-size:     0.75rem;
    font-weight:   600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.widget-title {
    font-family:    var(--rz-font);
    font-size:      0.75rem;
    font-weight:    700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color:          var(--rz-text);
    border-bottom:  2px solid var(--rz-primary-light);
    padding-bottom: 10px;
    margin-bottom:  16px;
}

.widget ul li a {
    color:     var(--rz-text-muted);
    font-size: 0.9rem;
    transition: color 140ms ease;
}

.widget ul li a:hover {
    color: var(--rz-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer,
#colophon {
    background:  var(--rz-bg-section);
    border-top:  1px solid var(--rz-border);
    color:       var(--rz-text-muted);
    font-family: var(--rz-font);
    font-size:   0.875rem;
}

.ast-small-footer {
    background: var(--rz-bg-section);
    color:      var(--rz-text-muted);
    border-top: 1px solid var(--rz-border);
    font-family: var(--rz-font);
    font-size:  0.8rem;
}

.ast-small-footer a {
    color:      var(--rz-text-muted);
    transition: color 140ms ease;
}

.ast-small-footer a:hover {
    color: var(--rz-primary);
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.astra-breadcrumbs,
.ast-breadcrumbs-wrapper,
.yoast-breadcrumb {
    font-family:   var(--rz-font);
    font-size:     0.8rem;
    color:         var(--rz-text-muted);
    margin-bottom: 24px;
}

.astra-breadcrumbs a,
.ast-breadcrumbs-wrapper a,
.yoast-breadcrumb a {
    color:      var(--rz-text-muted);
    transition: color 140ms ease;
}

.astra-breadcrumbs a:hover,
.ast-breadcrumbs-wrapper a:hover,
.yoast-breadcrumb a:hover {
    color: var(--rz-primary);
}

/* ==========================================================================
   FRONT PAGE — CUSTOM HERO (used by front-page.php)
   ========================================================================== */

/* Override Astra's container on front page — remove the inner padding/max-width
   so each section can be truly full-width. Each section adds its own .rz-container. */
.home #content .ast-container,
.page-template-default.page #content > .ast-container {
    max-width:     none;
    padding-left:  0;
    padding-right: 0;
}

.rz-front-page-wrap {
    width: 100%;
}

/* Hero */
.rz-hero {
    background:    linear-gradient(135deg, var(--rz-primary) 0%, var(--rz-accent) 100%);
    padding-block: clamp(60px, 10vw, 100px);
    color:         #ffffff;
}

.rz-hero__container {
    max-width:    1140px;
    margin-inline: auto;
    padding-inline: 24px;
    display:      grid;
    grid-template-columns: 1fr 1fr;
    gap:          clamp(32px, 5vw, 64px);
    align-items:  center;
}

.rz-hero__eyebrow {
    display:        inline-block;
    font-size:      0.7rem;
    font-weight:    700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:          rgba(255,255,255,.75);
    background:     rgba(255,255,255,.15);
    border-radius:  999px;
    padding:        5px 14px;
    margin-bottom:  20px;
}

.rz-hero__title {
    font-size:      clamp(1.9rem, 4vw, 3rem);
    font-weight:    800;
    line-height:    1.15;
    letter-spacing: -0.025em;
    color:          #ffffff;
    margin-bottom:  20px;
}

.rz-hero__desc {
    font-size:     1.05rem;
    line-height:   1.7;
    color:         rgba(255,255,255,.87);
    margin-bottom: 32px;
}

.rz-hero__actions {
    display:   flex;
    gap:       12px;
    flex-wrap: wrap;
}

.rz-btn {
    display:       inline-flex;
    align-items:   center;
    gap:           8px;
    padding:       12px 24px;
    font-family:   var(--rz-font);
    font-size:     0.9375rem;
    font-weight:   600;
    border-radius: 5px;
    cursor:        pointer;
    text-decoration: none;
    border:        2px solid transparent;
    transition:    background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
    white-space:   nowrap;
}

.rz-btn--white {
    background:  #ffffff;
    color:       var(--rz-primary);
    border-color:#ffffff;
}

.rz-btn--white:hover {
    background:  var(--rz-primary-light);
    border-color:var(--rz-primary-light);
    color:       var(--rz-primary-dark);
    box-shadow:  0 4px 12px rgba(0,0,0,.15);
}

.rz-btn--outline-white {
    background:  transparent;
    color:       #ffffff;
    border-color:rgba(255,255,255,.55);
}

.rz-btn--outline-white:hover {
    background:  rgba(255,255,255,.12);
    border-color:rgba(255,255,255,.9);
    color:       #ffffff;
}

/* Trust items */
.rz-hero__trust {
    display:    flex;
    flex-wrap:  wrap;
    gap:        18px;
    margin-top: 28px;
}

.rz-hero__trust-item {
    display:     inline-flex;
    align-items: center;
    gap:         7px;
    font-size:   0.85rem;
    font-weight: 500;
    color:       rgba(255,255,255,.80);
}

.rz-hero__trust-item svg {
    color:      rgba(255,255,255,.85);
    flex-shrink: 0;
}

/* Hero visual / stats panel */
.rz-hero__visual {
    background:    rgba(255,255,255,.10);
    border:        1px solid rgba(255,255,255,.20);
    border-radius: 12px;
    padding:       36px;
    backdrop-filter: blur(4px);
}

.rz-hero__stat {
    display:       flex;
    flex-direction: column;
    gap:           4px;
    padding-block: 20px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.rz-hero__stat:last-of-type {
    border-bottom: none;
}

.rz-hero__stat-number {
    font-size:      clamp(2rem, 3vw, 2.75rem);
    font-weight:    800;
    color:          #ffffff;
    letter-spacing: -0.03em;
    line-height:    1;
}

.rz-hero__stat-label {
    font-size:  0.875rem;
    color:      rgba(255,255,255,.70);
    line-height: 1.4;
}

.rz-hero__stat-badge {
    display:      inline-flex;
    align-items:  center;
    gap:          8px;
    margin-top:   24px;
    font-size:    0.75rem;
    font-weight:  600;
    color:        rgba(255,255,255,.80);
    letter-spacing: 0.03em;
}

/* ── Sections below hero ─────────────────────────────────────────────────── */

.rz-section {
    padding-block: clamp(48px, 7vw, 80px);
}

.rz-section--alt {
    background: var(--rz-bg-subtle);
}

.rz-container {
    max-width:    1140px;
    margin-inline: auto;
    padding-inline: 24px;
}

/* Section header */
.rz-section-header {
    text-align:    center;
    margin-bottom: 48px;
}

.rz-eyebrow {
    display:        block;
    font-size:      0.7rem;
    font-weight:    700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color:          var(--rz-primary);
    margin-bottom:  10px;
}

.rz-section-title {
    font-size:      clamp(1.5rem, 3vw, 2.25rem);
    font-weight:    800;
    color:          var(--rz-text);
    letter-spacing: -0.02em;
    margin-bottom:  12px;
}

.rz-section-lead {
    font-size:    1.05rem;
    color:        var(--rz-text-muted);
    line-height:  1.7;
    max-width:    60ch;
    margin-inline: auto;
}

/* ── Key Section Cards (3-grid) ────────────────────────────────────────────  */

.rz-cards-grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   20px;
}

.rz-card {
    background:    #ffffff;
    border:        1px solid var(--rz-border);
    border-radius: 10px;
    padding:       32px 28px;
    text-decoration: none;
    display:       block;
    transition:    box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.rz-card:hover {
    box-shadow:   var(--rz-shadow-lift);
    border-color: var(--rz-primary);
    transform:    translateY(-4px);
}

.rz-card__icon {
    display:         flex;
    align-items:     center;
    justify-content: center;
    width:           48px;
    height:          48px;
    background:      var(--rz-primary-light);
    border-radius:   8px;
    margin-bottom:   20px;
    color:           var(--rz-primary);
}

.rz-card__title {
    font-size:     1.1rem;
    font-weight:   700;
    color:         var(--rz-text);
    margin-bottom: 10px;
    font-family:   var(--rz-font);
}

.rz-card__text {
    font-size:   0.9rem;
    color:       var(--rz-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
    font-family:   var(--rz-font);
}

.rz-card__link {
    font-size:   0.875rem;
    font-weight: 600;
    color:       var(--rz-primary);
    display:     inline-flex;
    align-items: center;
    gap:         4px;
    transition:  color 140ms ease;
    font-family: var(--rz-font);
}

.rz-card:hover .rz-card__link {
    color: var(--rz-primary-dark);
}

/* ── Latest Articles Cards ────────────────────────────────────────────────── */

.rz-articles-grid {
    display:               grid;
    grid-template-columns: repeat(3, 1fr);
    gap:                   20px;
}

.rz-article-card {
    border:        1px solid var(--rz-border);
    border-radius: 10px;
    overflow:      hidden;
    background:    #ffffff;
    display:       flex;
    flex-direction: column;
    text-decoration: none;
    transition:    box-shadow 200ms ease, transform 200ms ease;
}

.rz-article-card:hover {
    box-shadow: var(--rz-shadow-lift);
    transform:  translateY(-4px);
}

.rz-article-card__img {
    aspect-ratio: 16 / 9;
    overflow:     hidden;
    background:   var(--rz-bg-section);
}

.rz-article-card__img img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    transition: transform 350ms ease;
    display:    block;
}

.rz-article-card:hover .rz-article-card__img img {
    transform: scale(1.04);
}

.rz-article-card__body {
    padding:   24px;
    flex:      1;
    display:   flex;
    flex-direction: column;
    gap:       8px;
}

.rz-article-card__meta {
    display:     flex;
    align-items: center;
    gap:         10px;
    font-size:   0.75rem;
}

.rz-article-card__cat {
    font-weight:    700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color:          var(--rz-primary);
    font-family:    var(--rz-font);
}

.rz-article-card__date {
    color:      var(--rz-text-light);
    font-family: var(--rz-font);
}

.rz-article-card__title {
    font-size:   1rem;
    font-weight: 700;
    color:       var(--rz-text);
    line-height: 1.4;
    font-family: var(--rz-font);
    flex:        1;
    margin:      0;
}

.rz-article-card:hover .rz-article-card__title {
    color: var(--rz-primary);
}

.rz-article-card__excerpt {
    font-size:   0.875rem;
    color:       var(--rz-text-muted);
    line-height: 1.6;
    font-family: var(--rz-font);
    margin:      0;
}

.rz-article-card__read {
    font-size:   0.8rem;
    font-weight: 600;
    color:       var(--rz-primary);
    margin-top:  auto;
    font-family: var(--rz-font);
    display:     inline-flex;
    align-items: center;
    gap:         4px;
}

/* ── CTA Block ────────────────────────────────────────────────────────────── */

.rz-cta {
    background:    var(--rz-primary);
    color:         #ffffff;
    text-align:    center;
    padding-block: clamp(48px, 7vw, 80px);
}

.rz-cta__title {
    font-size:      clamp(1.5rem, 2.5vw, 2rem);
    font-weight:    800;
    color:          #ffffff;
    margin-bottom:  12px;
    letter-spacing: -0.02em;
}

.rz-cta__text {
    font-size:    1rem;
    color:        rgba(255,255,255,.80);
    margin-bottom: 32px;
    line-height:  1.65;
}

/* ── Disclaimer ────────────────────────────────────────────────────────────── */

.rz-disclaimer {
    background:    #fffbeb;
    border:        1px solid #fde68a;
    border-left:   4px solid #f59e0b;
    border-radius: 6px;
    padding:       18px 22px;
    font-size:     0.875rem;
    color:         #92400e;
    line-height:   1.65;
    font-family:   var(--rz-font);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .rz-hero__container {
        grid-template-columns: 1fr;
    }

    .rz-hero__visual {
        display: none;
    }

    .rz-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rz-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rz-cards-grid {
        grid-template-columns: 1fr;
    }

    .rz-articles-grid {
        grid-template-columns: 1fr;
    }

    .rz-hero__title {
        font-size: 1.75rem;
    }

    .rz-hero__actions {
        flex-direction: column;
    }

    .rz-btn {
        width: 100%;
        justify-content: center;
    }

    .main-header-container {
        height: 60px;
    }
}
