/**
 * EBA Design System
 * Replicates the visual language of emotionalacademy.vercel.app
 * All styles are scoped to .eba-wrapper and nested widget containers.
 * Override-hardened against Elementor / Hello theme with !important on critical tokens.
 */

/* Fonts are loaded via wp_enqueue_style('eba-google-fonts') in class-assets.php
   — using @import here is non-blocking but slower than parallel enqueue. */

/* -----------------------------------------
   1. CSS Variables — Brand Tokens
   ----------------------------------------- */
.eba-wrapper,
.elementor-widget-container .eba-wrapper,
.e-con .eba-wrapper,
.elementor-page .eba-wrapper {
    --eba-gold: #d4a24c;
    --eba-gold-light: #e0b96b;
    --eba-gold-dark: #b58834;
    --eba-gold-soft: #f4e6c9;

    --eba-charcoal: #0f172a;
    --eba-charcoal-light: #24324a;
    --eba-charcoal-soft: #475569;

    --eba-ivory: #f8f5f0;
    --eba-ivory-dark: #e9e4dc;
    --eba-muted: #eae2d6;
    --eba-border: #ddd4c6;

    --eba-white: #ffffff;
    --eba-surface: #ffffff;
    --eba-surface-alt: #fbf9f5;

    --eba-text: var(--eba-charcoal);
    --eba-text-muted: #5b6475;
    --eba-text-subtle: #8a8678;

    --eba-success: #16a34a;
    --eba-warning: #f59e0b;
    --eba-error: #dc2626;

    --eba-gradient-gold: linear-gradient(135deg, var(--eba-gold) 0%, var(--eba-gold-dark) 100%);
    --eba-gradient-hero: linear-gradient(180deg, var(--eba-ivory) 0%, var(--eba-muted) 100%);
    --eba-gradient-card: linear-gradient(180deg, #ffffff 0%, #fbf9f5 100%);
    --eba-gradient-dark: linear-gradient(135deg, var(--eba-charcoal) 0%, var(--eba-charcoal-light) 100%);

    --eba-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --eba-shadow-sm: 0 2px 8px -2px rgba(15, 23, 42, 0.06);
    --eba-shadow-md: 0 4px 20px -4px rgba(15, 23, 42, 0.08);
    --eba-shadow-lg: 0 8px 32px -8px rgba(15, 23, 42, 0.12);
    --eba-shadow-xl: 0 16px 48px -12px rgba(15, 23, 42, 0.15);
    --eba-shadow-gold: 0 8px 24px -8px rgba(212, 162, 76, 0.35);

    --eba-radius-xs: 4px;
    --eba-radius-sm: 8px;
    --eba-radius-md: 12px;
    --eba-radius-lg: 16px;
    --eba-radius-xl: 24px;
    --eba-radius-full: 9999px;

    --eba-space-1: 4px;
    --eba-space-2: 8px;
    --eba-space-3: 12px;
    --eba-space-4: 16px;
    --eba-space-5: 24px;
    --eba-space-6: 32px;
    --eba-space-7: 40px;
    --eba-space-8: 48px;
    --eba-space-9: 64px;
    --eba-space-10: 80px;
    --eba-space-11: 96px;
    --eba-space-12: 128px;

    --eba-font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --eba-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --eba-text-xs: 0.75rem;
    --eba-text-sm: 0.875rem;
    --eba-text-base: 1rem;
    --eba-text-lg: 1.125rem;
    --eba-text-xl: 1.25rem;
    --eba-text-2xl: 1.5rem;
    --eba-text-3xl: 1.875rem;
    --eba-text-4xl: 2.25rem;
    --eba-text-5xl: 3rem;
    --eba-text-6xl: 3.75rem;
    --eba-text-7xl: 4.5rem;

    --eba-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --eba-ease-out: cubic-bezier(0, 0, 0.2, 1);
    --eba-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --eba-duration-fast: 0.15s;
    --eba-duration-base: 0.3s;
    --eba-duration-slow: 0.5s;

    --eba-container: 1280px;
    --eba-container-narrow: 960px;
    --eba-container-wide: 1440px;

    --eba-z-base: 1;
    --eba-z-overlay: 10;
    --eba-z-sticky: 20;
    --eba-z-modal: 100;
    --eba-z-toast: 200;
}

/* -----------------------------------------
   2. Reset & Base (scoped)
   ----------------------------------------- */
.eba-wrapper,
.eba-wrapper * ,
.eba-wrapper *::before,
.eba-wrapper *::after {
    box-sizing: border-box;
}

.eba-wrapper {
    font-family: var(--eba-font-body);
    color: var(--eba-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Higher-specificity selectors win over Hello theme / Elementor defaults
   WITHOUT !important — so per-widget Style tab Typography controls still apply. */
.elementor-page .eba-wrapper,
.e-con .eba-wrapper,
.elementor-widget-container .eba-wrapper {
    font-family: var(--eba-font-body);
    color: var(--eba-text);
}

/* Heading scale matches the reference vercel.app build (Tailwind):
   h1: text-3xl (mobile) → sm:text-4xl → md:text-5xl → lg:text-6xl
   30px / 36px / 48px / 60px — Cormorant Garamond, font-bold 700
   Reference DevTools: h1.font-display.text-3xl.sm:text-4xl.md:text-5xl.lg:text-6xl.font-bold

   No `!important` anywhere — we use compound selectors to win specificity over
   Hello theme / Elementor defaults, but Elementor Style-tab Typography controls
   STILL win (their selectors include the element ID which has higher specificity).
*/
.eba-wrapper h1,
.eba-wrapper h2,
.eba-wrapper h3,
.eba-wrapper h4,
.eba-wrapper h5,
.eba-wrapper h6,
.elementor-widget-container .eba-wrapper h1,
.elementor-widget-container .eba-wrapper h2,
.elementor-widget-container .eba-wrapper h3,
.elementor-widget-container .eba-wrapper h4,
.elementor-widget-container .eba-wrapper h5,
.elementor-widget-container .eba-wrapper h6 {
    font-family: var(--eba-font-heading);
    font-weight: 700;
    color: var(--eba-charcoal);
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin: 0;
}

/* H1 — Tailwind text-3xl/4xl/5xl/6xl responsive scale */
.eba-wrapper h1,
.elementor-widget-container .eba-wrapper h1 {
    font-size: 1.875rem; /* 30px — text-3xl mobile */
    line-height: 1.1;
    margin-bottom: 1.5rem; /* 24px — matches reference margin */
}
@media (min-width: 640px)  { .eba-wrapper h1, .elementor-widget-container .eba-wrapper h1 { font-size: 2.25rem; } }
@media (min-width: 768px)  { .eba-wrapper h1, .elementor-widget-container .eba-wrapper h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .eba-wrapper h1, .elementor-widget-container .eba-wrapper h1 { font-size: 3.75rem; } }

/* H2 — text-2xl/3xl/4xl/5xl */
.eba-wrapper h2,
.elementor-widget-container .eba-wrapper h2 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}
@media (min-width: 640px)  { .eba-wrapper h2, .elementor-widget-container .eba-wrapper h2 { font-size: 1.875rem; } }
@media (min-width: 768px)  { .eba-wrapper h2, .elementor-widget-container .eba-wrapper h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .eba-wrapper h2, .elementor-widget-container .eba-wrapper h2 { font-size: 3rem; } }

/* H3 — text-xl/2xl/3xl/4xl */
.eba-wrapper h3,
.elementor-widget-container .eba-wrapper h3 {
    font-size: 1.25rem;
    line-height: 1.2;
}
@media (min-width: 640px)  { .eba-wrapper h3, .elementor-widget-container .eba-wrapper h3 { font-size: 1.5rem; } }
@media (min-width: 768px)  { .eba-wrapper h3, .elementor-widget-container .eba-wrapper h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .eba-wrapper h3, .elementor-widget-container .eba-wrapper h3 { font-size: 2.25rem; } }

/* H4 — text-lg/xl/2xl */
.eba-wrapper h4,
.elementor-widget-container .eba-wrapper h4 {
    font-size: 1.125rem;
}
@media (min-width: 640px) { .eba-wrapper h4, .elementor-widget-container .eba-wrapper h4 { font-size: 1.25rem; } }
@media (min-width: 768px) { .eba-wrapper h4, .elementor-widget-container .eba-wrapper h4 { font-size: 1.5rem; } }

.eba-wrapper h5,
.elementor-widget-container .eba-wrapper h5 { font-size: 1.25rem; }
.eba-wrapper h6,
.elementor-widget-container .eba-wrapper h6 { font-size: 1.125rem; }

.eba-wrapper p {
    margin: 0;
    color: var(--eba-text-muted);
    font-size: var(--eba-text-base);
    line-height: 1.7;
}

.eba-wrapper a:not(.eba-btn):not([class*="eba-hslider__btn"]):not([class*="eba-hdr__"]):not([class*="eba-ftr__"]):not([class*="eba-mp__"]):not([class*="eba-auth__"]):not([class*="eba-ce__"]):not([class*="eba-deck__"]):not([class*="eba-cs__"]):not([class*="eba-feat__"]):not([class*="eba-cdd__"]):not([class*="eba-aud__"]):not([class*="eba-jpm__"]):not([class*="eba-clp__"]):not([class*="eba-cpm__"]):not([class*="eba-ud__"]):not([class*="eba-ebs__"]):not([class*="eba-testi__"]):not([class*="eba-abp__"]):not([class*="eba-ftr__"]):not([class*="eba-mp__"]):not([class*="eba-cpage__"]):not([class*="eba-cep__"]) {
    color: var(--eba-gold-dark);
    text-decoration: none;
    transition: color var(--eba-duration-base) var(--eba-ease);
}

.eba-wrapper a:not(.eba-btn):not([class*="eba-hslider__btn"]):not([class*="eba-hdr__"]):not([class*="eba-ftr__"]):not([class*="eba-mp__"]):not([class*="eba-auth__"]):not([class*="eba-ce__"]):not([class*="eba-deck__"]):not([class*="eba-cs__"]):not([class*="eba-feat__"]):not([class*="eba-cdd__"]):not([class*="eba-aud__"]):not([class*="eba-jpm__"]):not([class*="eba-clp__"]):not([class*="eba-cpm__"]):not([class*="eba-ud__"]):not([class*="eba-ebs__"]):not([class*="eba-testi__"]):not([class*="eba-abp__"]):not([class*="eba-ftr__"]):not([class*="eba-mp__"]):not([class*="eba-cpage__"]):not([class*="eba-cep__"]):hover {
    color: var(--eba-gold);
}
.eba-wrapper a:focus-visible {
    outline: 2px solid var(--eba-gold);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Heading links should inherit their h1-h6 color, not turn gold like body links.
   Wins over the global `.eba-wrapper a:not(...)` rule by having tighter specificity
   on a more specific element path. */
.eba-wrapper h1 a,
.eba-wrapper h2 a,
.eba-wrapper h3 a,
.eba-wrapper h4 a,
.eba-wrapper h5 a,
.eba-wrapper h6 a,
.eba-wrapper .eba-cs__card-title a,
.eba-wrapper .eba-feat__item-title a,
.eba-wrapper .eba-cdd__card-title a {
    color: inherit;
}

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

.eba-wrapper button,
.eba-wrapper input,
.eba-wrapper select,
.eba-wrapper textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* -----------------------------------------
   3. Buttons
   ----------------------------------------- */
.eba-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--eba-space-2);
    padding: 14px 28px;
    border-radius: var(--eba-radius-md);
    font-family: var(--eba-font-body);
    font-weight: 500;
    font-size: var(--eba-text-base);
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all var(--eba-duration-base) var(--eba-ease);
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.eba-btn:focus-visible {
    outline: 2px solid var(--eba-gold);
    outline-offset: 3px;
}

/* Compound selectors win over theme `a` / `button` defaults without !important.
   Style tab Color controls still override these because they target by element ID. */
.eba-wrapper .eba-btn--primary,
a.eba-btn.eba-btn--primary,
button.eba-btn.eba-btn--primary {
    background: var(--eba-gradient-gold);
    color: #ffffff;
    box-shadow: var(--eba-shadow-gold);
}

.eba-wrapper .eba-btn--primary:hover,
a.eba-btn.eba-btn--primary:hover,
button.eba-btn.eba-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(212, 162, 76, 0.45);
    color: #ffffff;
}

.eba-btn--primary:active { transform: translateY(0); }

.eba-wrapper .eba-btn--secondary,
a.eba-btn.eba-btn--secondary,
button.eba-btn.eba-btn--secondary {
    background: var(--eba-charcoal);
    color: #ffffff;
}

.eba-wrapper .eba-btn--secondary:hover,
a.eba-btn.eba-btn--secondary:hover,
button.eba-btn.eba-btn--secondary:hover {
    background: var(--eba-charcoal-light);
    transform: translateY(-2px);
    box-shadow: var(--eba-shadow-lg);
    color: #ffffff;
}

.eba-wrapper .eba-btn--outline,
a.eba-btn.eba-btn--outline,
button.eba-btn.eba-btn--outline {
    background: transparent;
    color: var(--eba-charcoal);
    border-color: var(--eba-charcoal);
}

.eba-wrapper .eba-btn--outline:hover,
a.eba-btn.eba-btn--outline:hover,
button.eba-btn.eba-btn--outline:hover {
    background: var(--eba-charcoal);
    color: #ffffff;
}

.eba-wrapper .eba-btn--ghost,
a.eba-btn.eba-btn--ghost,
button.eba-btn.eba-btn--ghost {
    background: transparent;
    color: var(--eba-charcoal);
}

.eba-wrapper .eba-btn--ghost:hover { background: rgba(15, 23, 42, 0.05); }

.eba-wrapper .eba-btn--gold-outline,
a.eba-btn.eba-btn--gold-outline,
button.eba-btn.eba-btn--gold-outline {
    background: transparent;
    color: var(--eba-gold-dark);
    border-color: var(--eba-gold);
}

.eba-wrapper .eba-btn--gold-outline:hover,
a.eba-btn.eba-btn--gold-outline:hover,
button.eba-btn.eba-btn--gold-outline:hover {
    background: var(--eba-gold);
    color: #ffffff;
}

.eba-btn--lg { padding: 18px 36px; font-size: var(--eba-text-lg); }
.eba-btn--sm { padding: 10px 20px; font-size: var(--eba-text-sm); }
.eba-btn--full { width: 100%; }

.eba-btn[disabled],
.eba-btn--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* -----------------------------------------
   4. Cards
   ----------------------------------------- */
.eba-card {
    background: var(--eba-gradient-card);
    border: 1px solid var(--eba-border);
    border-radius: var(--eba-radius-lg);
    padding: var(--eba-space-6);
    box-shadow: var(--eba-shadow-sm);
    transition: all var(--eba-duration-base) var(--eba-ease);
}

.eba-card:hover {
    box-shadow: var(--eba-shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(212, 162, 76, 0.3);
}

.eba-card__header { margin-bottom: var(--eba-space-4); }
.eba-card__title { font-family: var(--eba-font-heading); font-size: var(--eba-text-2xl); color: var(--eba-charcoal); }
.eba-card__body { color: var(--eba-text-muted); }
.eba-card__footer { margin-top: var(--eba-space-5); padding-top: var(--eba-space-4); border-top: 1px solid var(--eba-border); }

/* -----------------------------------------
   5. Badges & Chips
   ----------------------------------------- */
.eba-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--eba-space-1);
    padding: 4px 12px;
    border-radius: var(--eba-radius-full);
    font-size: var(--eba-text-xs);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.eba-badge--gold {
    background: var(--eba-gold-soft);
    color: var(--eba-gold-dark);
    border: 1px solid rgba(212, 162, 76, 0.2);
}

.eba-badge--charcoal {
    background: var(--eba-charcoal);
    color: #ffffff;
}

.eba-badge--outline {
    background: transparent;
    border: 1px solid var(--eba-border);
    color: var(--eba-text-muted);
}

.eba-badge--success { background: #dcfce7; color: #166534; }
.eba-badge--warning { background: #fef3c7; color: #92400e; }
.eba-badge--error { background: #fee2e2; color: #991b1b; }

/* -----------------------------------------
   6. Form Controls
   ----------------------------------------- */
.eba-field {
    display: flex;
    flex-direction: column;
    gap: var(--eba-space-2);
    margin-bottom: var(--eba-space-4);
}

.eba-label {
    font-size: var(--eba-text-sm);
    font-weight: 500;
    color: var(--eba-charcoal);
    line-height: 1.4;
}

.eba-label .eba-required {
    color: var(--eba-error);
    margin-left: 2px;
}

.eba-input,
.eba-textarea,
.eba-select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--eba-border);
    border-radius: var(--eba-radius-sm);
    background: var(--eba-white);
    color: var(--eba-charcoal);
    font-family: var(--eba-font-body);
    font-size: var(--eba-text-base);
    line-height: 1.5;
    transition: all var(--eba-duration-fast) var(--eba-ease);
}

.eba-input:focus,
.eba-textarea:focus,
.eba-select:focus {
    outline: none;
    border-color: var(--eba-gold);
    box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.15);
}

.eba-input::placeholder,
.eba-textarea::placeholder {
    color: var(--eba-text-subtle);
}

.eba-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.7;
}

.eba-help-text {
    font-size: var(--eba-text-xs);
    color: var(--eba-text-muted);
    line-height: 1.5;
}

.eba-error-text {
    font-size: var(--eba-text-xs);
    color: var(--eba-error);
}

/* -----------------------------------------
   7. Layout Utilities
   ----------------------------------------- */
.eba-container {
    width: 100%;
    max-width: var(--eba-container);
    margin: 0 auto;
    padding: 0 var(--eba-space-5);
}

.eba-container--narrow { max-width: var(--eba-container-narrow); }
.eba-container--wide { max-width: var(--eba-container-wide); }

.eba-grid {
    display: grid;
    gap: var(--eba-space-5);
}

.eba-flex { display: flex; }
.eba-flex--col { flex-direction: column; }
.eba-flex--center { align-items: center; justify-content: center; }
.eba-flex--between { align-items: center; justify-content: space-between; }
.eba-flex--wrap { flex-wrap: wrap; }
.eba-flex--gap-2 { gap: var(--eba-space-2); }
.eba-flex--gap-3 { gap: var(--eba-space-3); }
.eba-flex--gap-4 { gap: var(--eba-space-4); }

.eba-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
}

.eba-section--hero { background: var(--eba-gradient-hero); }
.eba-section--ivory { background: var(--eba-ivory); }
.eba-section--dark { background: var(--eba-gradient-dark); color: #ffffff; }
/* Dark-section text defaults — no !important; Style tab Color controls still win.
   Compound selectors (.eba-wrapper + child) beat plain h1/h2 from theme. */
.eba-wrapper .eba-section--dark h1,
.eba-wrapper .eba-section--dark h2,
.eba-wrapper .eba-section--dark h3,
.eba-wrapper .eba-section--dark h4,
.eba-wrapper .eba-section--dark h5,
.eba-wrapper .eba-section--dark h6,
.elementor-widget-container .eba-wrapper .eba-section--dark h1,
.elementor-widget-container .eba-wrapper .eba-section--dark h2,
.elementor-widget-container .eba-wrapper .eba-section--dark h3 { color: #ffffff; }
.eba-wrapper .eba-section--dark p { color: rgba(255, 255, 255, 0.85); }

/* -----------------------------------------
   8. Eyebrow / Section labels
   ----------------------------------------- */
.eba-eyebrow {
    font-family: var(--eba-font-body);
    font-size: var(--eba-text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--eba-gold-dark);
    margin-bottom: var(--eba-space-3);
    display: inline-flex;
    align-items: center;
    gap: var(--eba-space-2);
}

.eba-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: currentColor;
    display: inline-block;
}

/* -----------------------------------------
   9. Dividers & decorations
   ----------------------------------------- */
.eba-divider {
    height: 1px;
    background: var(--eba-border);
    border: 0;
    margin: var(--eba-space-6) 0;
}

.eba-divider--gold {
    width: 80px;
    height: 3px;
    background: var(--eba-gradient-gold);
    border-radius: var(--eba-radius-full);
    margin: var(--eba-space-4) auto;
}

/* -----------------------------------------
   10. Animations
   ----------------------------------------- */
@keyframes eba-fade-up {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes eba-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes eba-scale-in {
    0% { opacity: 0; transform: scale(0.96); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes eba-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes eba-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.eba-animate-fade-up { animation: eba-fade-up 0.6s var(--eba-ease-out) both; }
.eba-animate-fade-in { animation: eba-fade-in 0.6s var(--eba-ease-out) both; }
.eba-animate-scale-in { animation: eba-scale-in 0.4s var(--eba-ease-spring) both; }

@media (prefers-reduced-motion: reduce) {
    .eba-wrapper *,
    .eba-wrapper *::before,
    .eba-wrapper *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* -----------------------------------------
   11. Skeleton loader
   ----------------------------------------- */
.eba-skeleton {
    background: linear-gradient(90deg,
        rgba(15,23,42,0.04) 0%,
        rgba(15,23,42,0.08) 50%,
        rgba(15,23,42,0.04) 100%);
    background-size: 200% 100%;
    animation: eba-shimmer 1.4s infinite linear;
    border-radius: var(--eba-radius-sm);
}

/* -----------------------------------------
   12. Notices (toast / inline)
   ----------------------------------------- */
.eba-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--eba-space-3);
    padding: var(--eba-space-4) var(--eba-space-5);
    border-radius: var(--eba-radius-md);
    border-left: 3px solid var(--eba-gold);
    background: var(--eba-gold-soft);
    color: var(--eba-charcoal);
    font-size: var(--eba-text-sm);
    line-height: 1.5;
}

.eba-notice--success { background: #dcfce7; border-left-color: var(--eba-success); color: #14532d; }
.eba-notice--error { background: #fee2e2; border-left-color: var(--eba-error); color: #7f1d1d; }
.eba-notice--info { background: #dbeafe; border-left-color: #3b82f6; color: #1e3a8a; }

/* -----------------------------------------
   13. Focus ring helpers (accessibility)
   ----------------------------------------- */
.eba-wrapper :focus {
    outline: none;
}

.eba-wrapper :focus-visible {
    outline: 2px solid var(--eba-gold);
    outline-offset: 2px;
    border-radius: 4px;
}

.eba-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* -----------------------------------------
   14. Responsive breakpoints
   ----------------------------------------- */
@media (max-width: 1024px) {
    .eba-container { padding: 0 var(--eba-space-4); }
}

@media (max-width: 768px) {
    .eba-btn { padding: 12px 24px; }
    .eba-btn--lg { padding: 14px 28px; }
    .eba-card { padding: var(--eba-space-5); }
}
