
        :root {
            --coral: #FF385C;
            --coral-dark: #E31C5F;
            --coral-light: #FF5A7D;
            --teal: #008489;
            --teal-light: #00A699;
            --black: #222222;
            --gray-900: #484848;
            --gray-700: #717171;
            --gray-500: #B0B0B0;
            --gray-300: #DDDDDD;
            --gray-100: #F7F7F7;
            --white: #FFFFFF;
            --success: #008A05;
            --warning: #FFB400;
            --star: #FF385C;
            --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
            --section-padding: clamp(3rem, 6vw, 6rem);
            --container-max: 1280px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; font-size: 16px; }
        body { font-family: var(--font-primary); background: var(--white); color: var(--black); line-height: 1.5; -webkit-font-smoothing: antialiased; }
        h1, h2, h3, h4, h5, h6 { font-weight: 600; color: var(--black); line-height: 1.2; }
        section {
            padding: var(--section-padding) 0;
        }
        .container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
        @media (min-width: 744px) { .container { padding-left: 40px; padding-right: 40px; } }

        /* HEADER */
        .lp-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--gray-300); padding: 12px 0; }
        .lp-header__inner { display: flex; align-items: center; justify-content: space-between; }
        .lp-header__logo { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--coral); }
        .lp-header__logo svg { width: 32px; height: 32px; }
        .lp-header__logo-text { font-size: 14px; font-weight: 700; color: var(--black); display: block; max-width: 120px; line-height: 1.2; }
        .lp-header__phone { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: linear-gradient(to right, var(--coral), var(--coral-dark)); color: var(--white); text-decoration: none; font-weight: 700; font-size: 16px; border-radius: var(--radius-full); transition: transform 0.2s, box-shadow 0.2s; }
        .lp-header__phone:hover { transform: scale(1.02); box-shadow: 0 4px 14px rgba(255, 56, 92, 0.4); }
        .lp-header__phone svg { width: 18px; height: 18px; }
        @media (max-width: 550px) {
            .lp-header__phone span { display: none; }
            .lp-header__phone { width: 48px; height: 48px; padding: 0; justify-content: center; }
        }
        @media (min-width: 744px) {
            .lp-header__logo-text { font-size: 18px; max-width: none; }
        }

        /* BUTTONS */
        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; font-family: var(--font-primary); font-size: 18px; font-weight: 700; text-decoration: none; border: none; border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s ease; }
        .btn--primary { background: linear-gradient(to right, var(--coral), var(--coral-dark)); color: var(--white); }
        .btn--primary:hover { transform: scale(1.02); box-shadow: 0 4px 14px rgba(255, 56, 92, 0.4); }
        .btn--secondary { background: var(--black); color: var(--white); }
        .btn--secondary:hover { background: var(--gray-900); }
        .btn--outline { background: transparent; border: 2px solid var(--coral); color: var(--coral); }
        .btn--outline:hover { background: var(--coral); color: var(--white); }
        .btn--full { width: 100%; }
        .btn--large { padding: 18px 40px; font-size: 20px; }

        /* HERO */
        .lp-hero { position: relative; padding: 48px 0 64px; background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%); overflow: hidden; }
        .lp-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); opacity: 0.5; }
        .lp-hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; position: relative; z-index: 1; }
        @media (min-width: 950px) { .lp-hero__grid { grid-template-columns: 1fr 420px; gap: 64px; } }
        .lp-hero__content { color: var(--white); }
        .lp-hero__badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(255, 56, 92, 0.15); border: 1px solid rgba(255, 56, 92, 0.3); border-radius: var(--radius-full); font-size: 13px; font-weight: 600; color: var(--coral-light); margin-bottom: 20px; }
        .lp-hero__badge-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(1.1); } }
        .lp-hero__headline { font-size: clamp(32px, 5vw, 48px); font-weight: 700; line-height: 1.1; margin-bottom: 16px; color: var(--white); }
        .lp-hero__subheadline { font-size: 20px; color: rgba(255, 255, 255, 0.85); line-height: 1.5; margin-bottom: 32px; max-width: 500px; }
        .lp-hero__trust { display: flex; flex-wrap: wrap; gap: 24px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
        .lp-hero__trust-item { display: flex; align-items: center; gap: 10px; }
        .lp-hero__trust-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
        .lp-hero__trust-icon svg { width: 20px; height: 20px; color: var(--coral); }
        .lp-hero__trust-text { font-size: 14px; }
        .lp-hero__trust-value { font-weight: 700; color: var(--white); display: block; }
        .lp-hero__trust-label { color: rgba(255, 255, 255, 0.6); }

        /* FORM */
        .lp-hero__form { background: var(--white); border-radius: var(--radius-xl); padding: 32px; box-shadow: 0 8px 40px rgba(0,0,0,0.3); }
        .lp-hero__form-header { text-align: center; margin-bottom: 24px; }
        .lp-hero__form-title { font-size: 24px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
        .lp-hero__form-subtitle { font-size: 14px; color: var(--gray-700); }
        .lp-hero__form-urgent { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(0, 138, 5, 0.1); color: var(--success); font-size: 12px; font-weight: 600; border-radius: var(--radius-full); margin-top: 12px; }
        .form-group { margin-bottom: 16px; }
        .form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
        .form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; font-family: var(--font-primary); font-size: 16px; color: var(--black); background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-md); transition: border-color 0.2s, box-shadow 0.2s; }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.15); }
        .form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-500); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        @media (max-width: 550px) { .form-row { grid-template-columns: 1fr; } }
        .form-disclaimer { font-size: 12px; color: var(--gray-700); text-align: center; margin-top: 12px; }

        /* SECTION HEADERS */
        .section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
        .section-header__label { display: inline-block; padding: 6px 14px; background: rgba(255, 56, 92, 0.1); color: var(--coral); font-size: 13px; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
        .section-header__title { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 16px; }
        .section-header__text { font-size: 18px; color: var(--gray-700); line-height: 1.6; }

        /* WHAT'S INCLUDED */
        .lp-included { padding: 80px 0; background: var(--white); }
        .lp-included__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
        @media (max-width: 900px) { .lp-included__grid { grid-template-columns: 1fr; } }
        .lp-included__content { }
        .lp-included__list { list-style: none; }
        .lp-included__item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-300); }
        .lp-included__item:last-child { border-bottom: none; }
        .lp-included__icon { width: 32px; height: 32px; background: rgba(0, 138, 5, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .lp-included__icon svg { width: 16px; height: 16px; color: var(--success); }
        .lp-included__text { }
        .lp-included__text strong { display: block; font-size: 16px; color: var(--black); margin-bottom: 4px; }
        .lp-included__text span { font-size: 14px; color: var(--gray-700); }
        .lp-included__image { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
        .lp-included__image img { width: 100%; height: 100%; object-fit: cover; }
        .lp-included__image-badge { position: absolute; bottom: 16px; left: 16px; padding: 10px 16px; background: var(--white); border-radius: var(--radius-md); font-size: 14px; font-weight: 600; box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

        /* MATERIALS/OPTIONS */
        .lp-materials { padding: 80px 0; background: var(--gray-100); }
        .lp-materials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (max-width: 900px) { .lp-materials__grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 550px) { .lp-materials__grid { grid-template-columns: 1fr; } }
        .lp-material { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
        .lp-material:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
        .lp-material__image { aspect-ratio: 16/10; background: var(--gray-300); }
        .lp-material__image img { width: 100%; height: 100%; object-fit: cover; }
        .lp-material__content { padding: 20px; }
        .lp-material__name { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
        .lp-material__desc { font-size: 14px; color: var(--gray-700); line-height: 1.5; margin-bottom: 12px; }
        .lp-material__features { display: flex; flex-wrap: wrap; gap: 8px; }
        .lp-material__feature { padding: 4px 10px; background: var(--gray-100); border-radius: var(--radius-full); font-size: 12px; color: var(--gray-900); }

        /* PROCESS */
        .lp-process { padding: 80px 0; background: var(--white); }
        .lp-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
        @media (max-width: 900px) { .lp-process__grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 550px) { .lp-process__grid { grid-template-columns: 1fr; } }
        .lp-process__step { text-align: center; position: relative; }
        .lp-process__step:not(:last-child)::after { content: ''; position: absolute; top: 32px; left: calc(50% + 40px); width: calc(100% - 80px); height: 2px; background: var(--gray-300); }
        @media (max-width: 900px) { .lp-process__step::after { display: none; } }
        .lp-process__number { width: 64px; height: 64px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: var(--white); position: relative; z-index: 1; }
        .lp-process__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
        .lp-process__text { font-size: 14px; color: var(--gray-700); line-height: 1.5; }

        /* MID-PAGE CTA */
        .lp-mid-cta { padding: 48px 0; background: var(--coral); color: var(--white); }
        .lp-mid-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
        @media (max-width: 768px) { .lp-mid-cta__inner { flex-direction: column; text-align: center; } }
        .lp-mid-cta__text h2 { font-size: 28px; color: var(--white); margin-bottom: 8px; }
        .lp-mid-cta__text p { font-size: 16px; opacity: 0.9; }
        .lp-mid-cta__actions { display: flex; gap: 16px; flex-shrink: 0; }
        @media (max-width: 550px) { .lp-mid-cta__actions { flex-direction: column; } }
        .lp-mid-cta .btn--primary { background: var(--white); color: var(--coral); }
        .lp-mid-cta .btn--primary:hover { background: var(--gray-100); }
        .lp-mid-cta__phone { display: flex; align-items: center; gap: 8px; color: var(--white); text-decoration: none; font-weight: 600; font-size: 16px; }
        .lp-mid-cta__phone svg { width: 18px; height: 18px; }

        /* WHY CHOOSE US */
        .lp-why { padding: 80px 0; background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%); color: var(--white); }
        .lp-why .section-header__title { color: var(--white); }
        .lp-why .section-header__text { color: rgba(255,255,255,0.7); }
        .lp-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
        @media (max-width: 900px) { .lp-why__grid { grid-template-columns: 1fr; } }
        .lp-why__item { text-align: center; padding: 32px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); }
        .lp-why__icon { width: 72px; height: 72px; margin: 0 auto 20px; background: rgba(255, 56, 92, 0.15); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
        .lp-why__icon svg { width: 36px; height: 36px; color: var(--coral); }
        .lp-why__title { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--white); }
        .lp-why__text { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.6; }

        /* GUARANTEE */
        .lp-guarantee { padding: 80px 0; background: var(--teal); color: var(--white); }
        .lp-guarantee__inner { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
        @media (max-width: 768px) { .lp-guarantee__inner { grid-template-columns: 1fr; text-align: center; } }
        .lp-guarantee__badge { width: 160px; height: 160px; background: var(--white); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
        @media (max-width: 768px) { .lp-guarantee__badge { margin: 0 auto; } }
        .lp-guarantee__badge-years { font-size: 48px; font-weight: 700; color: var(--teal); line-height: 1; }
        .lp-guarantee__badge-text { font-size: 14px; font-weight: 600; color: var(--gray-700); text-transform: uppercase; }
        .lp-guarantee__content { }
        .lp-guarantee__title { font-size: clamp(28px, 4vw, 36px); font-weight: 700; margin-bottom: 16px; }
        .lp-guarantee__text { font-size: 18px; opacity: 0.9; line-height: 1.6; margin-bottom: 24px; }
        .lp-guarantee__list { display: flex; flex-wrap: wrap; gap: 16px; }
        @media (max-width: 768px) { .lp-guarantee__list { justify-content: center; } }
        .lp-guarantee__item { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; }
        .lp-guarantee__item svg { width: 20px; height: 20px; }

        /* PRICING/VALUE */
        .lp-value { padding: 80px 0; background: var(--gray-100); }
        .lp-value__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (max-width: 900px) { .lp-value__grid { grid-template-columns: 1fr; } }
        .lp-value__card { background: var(--white); border-radius: var(--radius-xl); padding: 32px; text-align: center; border: 2px solid var(--gray-300); transition: border-color 0.2s, box-shadow 0.2s; }
        .lp-value__card--featured { border-color: var(--coral); box-shadow: 0 8px 32px rgba(255, 56, 92, 0.15); position: relative; }
        .lp-value__card--featured::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 6px 16px; background: var(--coral); color: var(--white); font-size: 12px; font-weight: 600; border-radius: var(--radius-full); }
        .lp-value__icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--gray-100); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; }
        .lp-value__card--featured .lp-value__icon { background: rgba(255, 56, 92, 0.1); }
        .lp-value__icon svg { width: 32px; height: 32px; color: var(--gray-700); }
        .lp-value__card--featured .lp-value__icon svg { color: var(--coral); }
        .lp-value__title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
        .lp-value__desc { font-size: 14px; color: var(--gray-700); margin-bottom: 20px; }
        .lp-value__features { text-align: left; margin-bottom: 24px; }
        .lp-value__feature { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--gray-900); }
        .lp-value__feature svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }

        /* GALLERY */

        /* TESTIMONIALS */
        .lp-social-proof { padding: 80px 0; background: var(--gray-100); }
        .lp-social-proof__header { text-align: center; margin-bottom: 40px; }
        .lp-social-proof__title { font-size: clamp(24px, 4vw, 32px); margin-bottom: 8px; }
        .lp-social-proof__rating { display: inline-flex; align-items: center; gap: 8px; font-size: 18px; }
        .lp-social-proof__stars { display: flex; gap: 2px; }
        .lp-social-proof__stars svg { width: 20px; height: 20px; fill: var(--coral); }
        .lp-social-proof__count { color: var(--gray-700); }
        .lp-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (max-width: 950px) { .lp-testimonials { grid-template-columns: 1fr; } }
        .lp-testimonial { padding: 24px; background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-lg); }
        .lp-testimonial__stars { display: flex; gap: 2px; margin-bottom: 12px; }
        .lp-testimonial__stars svg { width: 16px; height: 16px; fill: var(--coral); }
        .lp-testimonial__quote { font-size: 15px; color: var(--gray-900); line-height: 1.6; margin-bottom: 16px; }
        .lp-testimonial__author { display: flex; align-items: center; gap: 12px; }
        .lp-testimonial__avatar { width: 40px; height: 40px; background: var(--coral); color: var(--white); font-weight: 700; font-size: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .lp-testimonial__name { font-weight: 600; color: var(--black); font-size: 14px; }
        .lp-testimonial__location { font-size: 13px; color: var(--gray-700); }

        /* FAQ */
        .lp-faq { padding: 80px 0; background: var(--white); }
        .lp-faq__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
        @media (max-width: 768px) { .lp-faq__grid { grid-template-columns: 1fr; } }
        .lp-faq__item { padding: 24px; background: var(--gray-100); border-radius: var(--radius-lg); }
        .lp-faq__question { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 12px; display: flex; align-items: flex-start; gap: 12px; }
        .lp-faq__question svg { width: 20px; height: 20px; color: var(--coral); flex-shrink: 0; margin-top: 2px; }
        .lp-faq__answer { font-size: 14px; color: var(--gray-700); line-height: 1.6; padding-left: 32px; }

        /* SERVICE AREA */
        .lp-area { padding: 80px 0; background: var(--gray-100); }
        .lp-area__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
        @media (max-width: 768px) { .lp-area__inner { grid-template-columns: 1fr; } }
        .lp-area__map { aspect-ratio: 4/3; background: var(--gray-300); border-radius: var(--radius-xl); overflow: hidden; }
        .lp-area__map img { width: 100%; height: 100%; object-fit: cover; }
        .lp-area__content { }
        .lp-area__title { font-size: 28px; font-weight: 700; margin-bottom: 16px; }
        .lp-area__text { font-size: 16px; color: var(--gray-700); line-height: 1.6; margin-bottom: 24px; }
        .lp-area__cities { display: flex; flex-wrap: wrap; gap: 8px; }
        .lp-area__city { padding: 8px 16px; background: var(--white); border-radius: var(--radius-full); font-size: 14px; color: var(--gray-900); box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
        .lp-area__city--current { background: var(--coral); color: var(--white); }

        /* FINAL CTA */
        .lp-final-cta { padding: 80px 0; background: linear-gradient(135deg, var(--black) 0%, #1a1a2e 100%); text-align: center; }
        .lp-final-cta__content { max-width: 700px; margin: 0 auto; }
        .lp-final-cta__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
        .lp-final-cta__text { font-size: 18px; color: rgba(255, 255, 255, 0.8); margin-bottom: 32px; }
        .lp-final-cta__actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
        @media (min-width: 550px) { .lp-final-cta__actions { flex-direction: row; justify-content: center; } }
        .lp-final-cta__phone { display: flex; align-items: center; gap: 8px; padding: 16px 32px; background: transparent; border: 2px solid var(--white); color: var(--white); font-size: 18px; font-weight: 700; border-radius: var(--radius-md); text-decoration: none; transition: all 0.2s; }
        .lp-final-cta__phone:hover { background: var(--white); color: var(--black); }
        .lp-final-cta__phone svg { width: 20px; height: 20px; }

        /* FOOTER */
        .lp-footer { padding: 24px 0; background: #0a0a0a; text-align: center; }
        .lp-footer__content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
        @media (min-width: 550px) { .lp-footer__content { flex-direction: row; justify-content: space-between; } }
        .lp-footer__copy { font-size: 14px; color: rgba(255, 255, 255, 0.5); }
        .lp-footer__links { display: flex; gap: 24px; }
        .lp-footer__links a { font-size: 14px; color: rgba(255, 255, 255, 0.5); text-decoration: none; }
        .lp-footer__links a:hover { color: rgba(255, 255, 255, 0.8); }
    

/* ==============================================
   EDITOR OVERRIDES - Auto-generated by cr-generate-blocks.php
   Fixes WordPress editor CSS that conflicts with our blocks
   ============================================== */

/* Fix: WordPress editor sets height:auto on all images, breaking aspect-ratio containers */
.editor-styles-wrapper [class*='__img'],
.block-editor__container [class*='__img'] {
    height: 100% !important;
}

/* Fix: Ensure images fill their containers in editor */
.editor-styles-wrapper img[class*='-card__img'],
.editor-styles-wrapper img[class*='-hero__img'] {
    height: 100% !important;
    object-fit: cover !important;
}
