/**
 * Starter Blocks - CSS Custom Properties (Design Tokens)
 *
 * SYNCHRONIZED WITH DIY3D THEME - DO NOT MODIFY WITHOUT UPDATING THEME
 * These variables MUST match the diy3d theme exactly for 1:1 rendering.
 *
 * @package StarterBlocks
 */

:root {
    /* ============================================
       COLOR SYSTEM - MATCHED TO DIY3D THEME
       ============================================ */

    /* Primary Brand Color (Orange) - from Printables brand */
    --starter-color-primary-50: #fff7ed;
    --starter-color-primary-100: #ffedd5;
    --starter-color-primary-200: #fed7aa;
    --starter-color-primary-300: #fdba74;
    --starter-color-primary-400: #fb923c;
    --starter-color-primary-500: #f97316;    /* Main */
    --starter-color-primary-600: #ea580c;
    --starter-color-primary-700: #c2410c;
    --starter-color-primary-800: #9a3412;
    --starter-color-primary-900: #7c2d12;

    /* Neutral Colors (Blue-tinted Darks - technical drawing aesthetic) */
    --starter-color-neutral-50: #f8fafc;
    --starter-color-neutral-100: #f1f5f9;
    --starter-color-neutral-200: #e2e8f0;
    --starter-color-neutral-300: #cbd5e1;
    --starter-color-neutral-400: #94a3b8;
    --starter-color-neutral-500: #64748b;
    --starter-color-neutral-600: #475569;
    --starter-color-neutral-700: #334155;
    --starter-color-neutral-800: #1e293b;
    --starter-color-neutral-900: #0f172a;
    --starter-color-neutral-950: #020617;

    /* Accent - Cyan (3D software inspired) */
    --starter-color-accent-400: #22d3ee;
    --starter-color-accent-500: #06b6d4;
    --starter-color-accent-600: #0891b2;

    /* Semantic Colors */
    --starter-color-success: #10b981;
    --starter-color-success-light: #d1fae5;
    --starter-color-warning: #f59e0b;
    --starter-color-warning-light: #fef3c7;
    --starter-color-error: #ef4444;
    --starter-color-error-light: #fee2e2;
    --starter-color-info: #3b82f6;
    --starter-color-info-light: #dbeafe;

    /* Background & Surface - DARK THEME DEFAULT (matches diy3d) */
    --starter-color-background: var(--starter-color-neutral-950);
    --starter-color-surface: var(--starter-color-neutral-900);
    --starter-color-surface-elevated: var(--starter-color-neutral-800);

    /* Text Colors - DARK THEME (matches diy3d) */
    --starter-color-text-primary: var(--starter-color-neutral-50);
    --starter-color-text-secondary: var(--starter-color-neutral-400);
    --starter-color-text-muted: var(--starter-color-neutral-500);
    --starter-color-text-inverse: var(--starter-color-neutral-950);

    /* Border Colors - DARK THEME */
    --starter-color-border: var(--starter-color-neutral-700);
    --starter-color-border-light: var(--starter-color-neutral-800);
    --starter-color-border-dark: var(--starter-color-neutral-600);

    /* ============================================
       TYPOGRAPHY - MATCHED TO DIY3D THEME
       ============================================ */

    /* Font Families - EXACT MATCH with diy3d theme */
    --starter-font-display: 'Space Mono', 'JetBrains Mono', monospace;
    --starter-font-body: 'Outfit', 'DM Sans', system-ui, sans-serif;
    --starter-font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --starter-font-sans: var(--starter-font-body);

    /* Font Sizes - Fluid Typography (matches diy3d) */
    --starter-text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --starter-text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --starter-text-base: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
    --starter-text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --starter-text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --starter-text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
    --starter-text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 3rem);
    --starter-text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 4rem);
    --starter-text-5xl: clamp(3rem, 2rem + 5vw, 6rem);
    --starter-text-6xl: 3.75rem;
    --starter-text-7xl: 4.5rem;

    /* Font Weights */
    --starter-font-light: 300;
    --starter-font-normal: 400;
    --starter-font-medium: 500;
    --starter-font-semibold: 600;
    --starter-font-bold: 700;
    --starter-font-extrabold: 800;

    /* Line Heights */
    --starter-leading-none: 1;
    --starter-leading-tight: 1.25;
    --starter-leading-snug: 1.375;
    --starter-leading-normal: 1.5;
    --starter-leading-relaxed: 1.625;
    --starter-leading-loose: 2;

    /* Letter Spacing */
    --starter-tracking-tighter: -0.05em;
    --starter-tracking-tight: -0.025em;
    --starter-tracking-normal: 0;
    --starter-tracking-wide: 0.025em;
    --starter-tracking-wider: 0.05em;

    /* ============================================
       SPACING
       ============================================ */

    --starter-space-0: 0;
    --starter-space-1: 0.25rem;      /* 4px */
    --starter-space-2: 0.5rem;       /* 8px */
    --starter-space-3: 0.75rem;      /* 12px */
    --starter-space-4: 1rem;         /* 16px */
    --starter-space-5: 1.25rem;      /* 20px */
    --starter-space-6: 1.5rem;       /* 24px */
    --starter-space-8: 2rem;         /* 32px */
    --starter-space-10: 2.5rem;      /* 40px */
    --starter-space-12: 3rem;        /* 48px */
    --starter-space-16: 4rem;        /* 64px */
    --starter-space-20: 5rem;        /* 80px */
    --starter-space-24: 6rem;        /* 96px */
    --starter-space-32: 8rem;        /* 128px */

    /* Section Spacing */
    --starter-section-padding-y: var(--starter-space-16);
    --starter-section-padding-x: var(--starter-space-6);

    /* ============================================
       BORDERS & RADIUS
       ============================================ */

    --starter-radius-none: 0;
    --starter-radius-sm: 0.25rem;    /* 4px */
    --starter-radius-md: 0.5rem;     /* 8px */
    --starter-radius-lg: 0.75rem;    /* 12px */
    --starter-radius-xl: 1rem;       /* 16px */
    --starter-radius-2xl: 1.5rem;    /* 24px */
    --starter-radius-3xl: 2rem;      /* 32px */
    --starter-radius-full: 9999px;

    --starter-border-width: 1px;
    --starter-border-width-2: 2px;

    /* ============================================
       SHADOWS - MATCHED TO DIY3D THEME
       ============================================ */

    --starter-shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --starter-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --starter-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --starter-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --starter-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --starter-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --starter-shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    /* DIY3D specific glow effects */
    --starter-shadow-glow: 0 0 20px rgba(249, 115, 22, 0.3);
    --starter-shadow-glow-lg: 0 0 40px rgba(249, 115, 22, 0.4);

    /* ============================================
       TRANSITIONS - MATCHED TO DIY3D THEME
       ============================================ */

    --starter-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --starter-transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --starter-transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --starter-transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    --starter-ease-in: cubic-bezier(0.4, 0, 1, 1);
    --starter-ease-out: cubic-bezier(0, 0, 0.2, 1);
    --starter-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

    /* ============================================
       LAYOUT
       ============================================ */

    --starter-container-sm: 640px;
    --starter-container-md: 768px;
    --starter-container-lg: 1024px;
    --starter-container-xl: 1280px;
    --starter-container-2xl: 1536px;

    --starter-content-width: 1200px;
    --starter-wide-width: 1400px;

    /* ============================================
       Z-INDEX
       ============================================ */

    --starter-z-dropdown: 1000;
    --starter-z-sticky: 1020;
    --starter-z-fixed: 1030;
    --starter-z-modal-backdrop: 1040;
    --starter-z-modal: 1050;
    --starter-z-popover: 1060;
    --starter-z-tooltip: 1070;
}

/* ============================================
   DARK MODE
   ============================================ */

@media (prefers-color-scheme: dark) {
    :root {
        /* Invert neutrals for dark mode */
        --starter-color-neutral-50: #0f172a;
        --starter-color-neutral-100: #1e293b;
        --starter-color-neutral-200: #334155;
        --starter-color-neutral-300: #475569;
        --starter-color-neutral-400: #64748b;
        --starter-color-neutral-500: #94a3b8;
        --starter-color-neutral-600: #cbd5e1;
        --starter-color-neutral-700: #e2e8f0;
        --starter-color-neutral-800: #f1f5f9;
        --starter-color-neutral-900: #f8fafc;
        --starter-color-neutral-950: #ffffff;

        /* Update surface colors */
        --starter-color-background: #0f172a;
        --starter-color-surface: #1e293b;
        --starter-color-surface-elevated: #334155;

        /* Update text colors */
        --starter-color-text-primary: #f8fafc;
        --starter-color-text-secondary: #cbd5e1;
        --starter-color-text-muted: #94a3b8;

        /* Update border colors */
        --starter-color-border: #334155;
        --starter-color-border-light: #1e293b;
        --starter-color-border-dark: #475569;
    }
}

/* Manual dark mode class override */
.starter-dark {
    --starter-color-neutral-50: #0f172a;
    --starter-color-neutral-100: #1e293b;
    --starter-color-neutral-200: #334155;
    --starter-color-neutral-300: #475569;
    --starter-color-neutral-400: #64748b;
    --starter-color-neutral-500: #94a3b8;
    --starter-color-neutral-600: #cbd5e1;
    --starter-color-neutral-700: #e2e8f0;
    --starter-color-neutral-800: #f1f5f9;
    --starter-color-neutral-900: #f8fafc;
    --starter-color-neutral-950: #ffffff;

    --starter-color-background: #0f172a;
    --starter-color-surface: #1e293b;
    --starter-color-surface-elevated: #334155;

    --starter-color-text-primary: #f8fafc;
    --starter-color-text-secondary: #cbd5e1;
    --starter-color-text-muted: #94a3b8;

    --starter-color-border: #334155;
    --starter-color-border-light: #1e293b;
    --starter-color-border-dark: #475569;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Container */
.starter-container {
    width: 100%;
    max-width: var(--starter-content-width);
    margin-inline: auto;
    padding-inline: var(--starter-space-4);
}

@media (min-width: 768px) {
    .starter-container {
        padding-inline: var(--starter-space-6);
    }
}

/* Section */
.starter-section {
    padding-block: var(--starter-section-padding-y);
    padding-inline: var(--starter-section-padding-x);
}

/* Button Base */
.starter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--starter-space-2);
    padding: var(--starter-space-3) var(--starter-space-6);
    font-family: var(--starter-font-sans);
    font-size: var(--starter-text-base);
    font-weight: var(--starter-font-semibold);
    line-height: var(--starter-leading-tight);
    text-decoration: none;
    border-radius: var(--starter-radius-lg);
    border: none;
    cursor: pointer;
    transition: all var(--starter-transition-fast);
}

.starter-button--primary {
    background-color: var(--starter-color-primary-500);
    color: var(--starter-color-text-inverse);
}

.starter-button--primary:hover {
    background-color: var(--starter-color-primary-600);
}

.starter-button--secondary {
    background-color: var(--starter-color-neutral-100);
    color: var(--starter-color-text-primary);
}

.starter-button--secondary:hover {
    background-color: var(--starter-color-neutral-200);
}

.starter-button--outline {
    background-color: transparent;
    color: var(--starter-color-primary-500);
    border: var(--starter-border-width-2) solid var(--starter-color-primary-500);
}

.starter-button--outline:hover {
    background-color: var(--starter-color-primary-500);
    color: var(--starter-color-text-inverse);
}

/* Icon */
.starter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.starter-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   TECHNICAL GRID BACKGROUND
   ============================================ */

/* Grid background pattern (diy3d theme style) */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(var(--starter-color-neutral-200, #1e293b) 1px, transparent 1px),
        linear-gradient(90deg, var(--starter-color-neutral-200, #1e293b) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   DIY3D THEME COMPATIBILITY - EXACT MAPPING
   ============================================ */

/*
 * CRITICAL: These mappings ensure Starter Blocks renders
 * EXACTLY like the diy3d theme. Both admin and frontend
 * use these same values for 1:1 parity.
 */
:root {
    /* Surface colors for dark theme - EXACT diy3d values */
    --surface-ground: #020617;
    --surface-card: #0f172a;
    --surface-overlay: #1e293b;
    --surface-border: #334155;
    --surface-hover: #1e293b;

    /* Text colors - EXACT diy3d values */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-inverse: #020617;

    /* Primary colors - EXACT diy3d values */
    --color-primary-50: #fff7ed;
    --color-primary-100: #ffedd5;
    --color-primary-200: #fed7aa;
    --color-primary-300: #fdba74;
    --color-primary-400: #fb923c;
    --color-primary-500: #f97316;
    --color-primary-600: #ea580c;
    --color-primary-700: #c2410c;
    --color-primary-800: #9a3412;
    --color-primary-900: #7c2d12;

    /* Neutral colors - EXACT diy3d values */
    --color-neutral-50: #f8fafc;
    --color-neutral-100: #f1f5f9;
    --color-neutral-200: #e2e8f0;
    --color-neutral-300: #cbd5e1;
    --color-neutral-400: #94a3b8;
    --color-neutral-500: #64748b;
    --color-neutral-600: #475569;
    --color-neutral-700: #334155;
    --color-neutral-800: #1e293b;
    --color-neutral-900: #0f172a;
    --color-neutral-950: #020617;

    /* Accent colors */
    --color-accent-400: #22d3ee;
    --color-accent-500: #06b6d4;
    --color-accent-600: #0891b2;

    /* Semantic colors - EXACT diy3d values */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;

    /* Typography - EXACT diy3d fonts */
    --font-display: 'Space Mono', 'JetBrains Mono', monospace;
    --font-body: 'Outfit', 'DM Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Font sizes - Fluid Typography (EXACT diy3d values) */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.925rem + 0.375vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 3rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 4rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 6rem);

    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.15;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;

    /* Letter Spacing */
    --tracking-tighter: -0.05em;
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* Spacing - EXACT diy3d values */
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Layout */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    --gutter: clamp(1rem, 5vw, 2rem);

    /* Border radius - EXACT diy3d values */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows - EXACT diy3d values */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgb(249 115 22 / 0.3);
    --shadow-glow-lg: 0 0 40px rgb(249 115 22 / 0.4);

    /* Transitions - EXACT diy3d values */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}

/* ============================================
   PATTERN VARIATIONS - CTA STYLES
   ============================================ */

/* CTA Centered Variant */
.custom-cta--centered {
    text-align: center;
}

.custom-cta--centered .custom-cta__centered-content {
    max-width: 700px;
    margin: 0 auto;
}

.custom-cta--centered .custom-cta__features-grid {
    margin-top: var(--space-12, 3rem);
}

.custom-cta--centered .custom-cta__feature-card {
    background: var(--surface-card, #0f172a);
    border: 1px solid var(--surface-border, #334155);
    border-radius: var(--radius-lg, 0.75rem);
    padding: var(--space-6, 1.5rem);
    text-align: center;
    transition: all var(--transition-base, 0.25s ease);
}

.custom-cta--centered .custom-cta__feature-card:hover {
    border-color: var(--color-primary-500, #f97316);
    transform: translateY(-4px);
}

/* CTA Split Variant */
.custom-cta--split {
    background: var(--surface-card, #0f172a);
    border-top: 1px solid var(--surface-border, #334155);
    border-bottom: 1px solid var(--surface-border, #334155);
}

.custom-cta--split .custom-cta__visual-card {
    background: var(--surface-ground, #020617);
    border: 1px solid var(--surface-border, #334155);
    border-radius: var(--radius-xl, 1rem);
    padding: var(--space-8, 2rem);
}

.custom-cta--split .custom-cta__timeline-item {
    display: flex;
    align-items: center;
    gap: var(--space-4, 1rem);
    padding: var(--space-4, 1rem);
    background: var(--surface-card, #0f172a);
    border-radius: var(--radius-md, 0.5rem);
    margin-bottom: var(--space-3, 0.75rem);
    transition: all var(--transition-fast, 0.15s ease);
}

.custom-cta--split .custom-cta__timeline-item:last-child {
    margin-bottom: 0;
}

.custom-cta--split .custom-cta__timeline-item:hover {
    background: var(--surface-overlay, #1e293b);
}

/* ============================================
   PAGE PATTERNS
   ============================================ */

/* Page Hero */
.page-hero {
    padding: calc(72px + var(--space-16, 4rem)) 0 var(--space-12, 3rem);
    text-align: center;
    background: linear-gradient(180deg, var(--surface-card, #0f172a) 0%, var(--surface-ground, #020617) 100%);
    border-bottom: 1px solid var(--surface-border, #334155);
}

.page-hero__tag {
    display: inline-block;
    font-family: var(--font-mono, monospace);
    font-size: var(--text-sm, 0.875rem);
    text-transform: uppercase;
    letter-spacing: var(--tracking-widest, 0.1em);
    color: var(--color-primary-500, #f97316);
    margin-bottom: var(--space-4, 1rem);
}

.page-hero__title {
    font-size: clamp(2.25rem, 1.75rem + 2.5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary, #f8fafc);
    margin-bottom: var(--space-4, 1rem);
}

.page-hero__description {
    font-size: var(--text-lg, 1.125rem);
    color: var(--text-secondary, #94a3b8);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   GUTENBERG EDITOR ENHANCEMENTS
   ============================================ */

/* Make blocks easier to select in editor */
.editor-styles-wrapper [data-type^="starter/"] {
    outline: 1px dashed transparent;
    transition: outline-color 0.2s ease;
}

.editor-styles-wrapper [data-type^="starter/"]:hover {
    outline-color: var(--color-primary-500, #f97316);
}

.editor-styles-wrapper [data-type^="starter/"].is-selected {
    outline: 2px solid var(--color-primary-500, #f97316);
}

/* ============================================
   CTA BLOCK EDITOR FIXES
   ============================================ */

/* Ensure step numbers are visible in editor */
.editor-styles-wrapper .custom-cta__step-number,
.editor-styles-wrapper .wp-block-starter-cta .custom-cta__step-number,
.block-editor-block-list__block .custom-cta__step-number {
    font-family: 'Space Mono', var(--starter-font-display), monospace !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--color-primary-500, #f97316) !important;
    background: transparent !important;
    background-color: transparent !important;
    min-width: 50px;
    display: inline-block;
    line-height: 1.2;
}

/* RichText wrapper in editor */
.editor-styles-wrapper .custom-cta__step-number .rich-text,
.editor-styles-wrapper .custom-cta__step-number[data-rich-text-format-boundary] {
    color: var(--color-primary-500, #f97316) !important;
    background: transparent !important;
}

/* Fix double checkmarks in features - override theme's ::before pseudo-element */
.editor-styles-wrapper .custom-cta__features li,
.block-editor-block-list__block .custom-cta__features li,
.wp-block-starter-cta .custom-cta__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.editor-styles-wrapper .custom-cta__features li::before,
.block-editor-block-list__block .custom-cta__features li::before,
.wp-block-starter-cta .custom-cta__features li::before {
    content: none !important;
    display: none !important;
}

.editor-styles-wrapper .custom-cta__features li svg,
.block-editor-block-list__block .custom-cta__features li svg,
.wp-block-starter-cta .custom-cta__features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-primary-500, #f97316);
}

/* Override theme's step styling - use horizontal layout, not vertical */
.editor-styles-wrapper .custom-cta__step,
.block-editor-block-list__block .custom-cta__step,
.wp-block-starter-cta .custom-cta__step {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--surface-card, #0f172a);
    border: 1px solid var(--surface-border, #334155);
    border-radius: 0.75rem;
}

/* Override theme's step grid - use single column */
.editor-styles-wrapper .custom-cta__steps,
.block-editor-block-list__block .custom-cta__steps,
.wp-block-starter-cta .custom-cta__steps {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
    gap: 1rem;
}
