/*
 * BS Reboot задає img { max-width: 100%; height: auto } — у порожній рамці висота стає 0.
 * Рамка з aspect-ratio + absolute img гарантують видиму площу.
 */
.intro-performance-split__thumb {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 14rem;
    aspect-ratio: 4 / 3;
}

.intro-performance-split__thumb > img.intro-performance-split__img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: cover;
    z-index: 0;
}

.intro-performance-split__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-performance-split__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.content-quote-panel__slash {
    transform: rotate(45deg);
}

.tips-cards__card {
    max-width: 24rem;
}

/* subscribe v27 — gradient-mesh hero: geometry shared by both CSS frameworks, no colors */
.mailing-hero-mesh__section--py-4xl {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mxw-3xl {
    max-width: 48rem !important;
}

.mxw-xl {
    max-width: 36rem !important;
}

.mxw-md {
    max-width: 28rem !important;
}

@keyframes mailing-hero-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}

.mailing-hero-mesh__blob {
    filter: blur(64px);
    will-change: transform;
}

.mailing-hero-mesh__blob--one {
    top: -2.5rem;
    inset-inline-start: -2.5rem;
    width: 18rem;
    height: 18rem;
}

.mailing-hero-mesh__blob--two {
    bottom: -4rem;
    inset-inline-end: -2.5rem;
    width: 20rem;
    height: 20rem;
}

.mailing-hero-mesh__blob--three {
    top: 33.333333%;
    inset-inline-end: 25%;
    width: 14rem;
    height: 14rem;
}

.mailing-hero-mesh__dot {
    width: 0.75rem;
    height: 0.75rem;
    animation: mailing-hero-float 4s ease-in-out infinite;
}

.mailing-hero-mesh__dot--a {
    top: 2.5rem;
    inset-inline-start: 25%;
    animation-delay: 0s;
}

.mailing-hero-mesh__dot--b {
    bottom: 6rem;
    inset-inline-start: 33.333333%;
    animation-delay: 1.3s;
}

.mailing-hero-mesh__dot--c {
    top: 50%;
    inset-inline-end: 20%;
    animation-delay: 2.6s;
}

.mailing-hero-mesh__title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1;
}

.mailing-hero-mesh__subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.mailing-hero-mesh__row {
    flex-direction: column;
    gap: 0.75rem;
}

.mailing-hero-mesh__input,
.mailing-hero-mesh__cta {
    padding: 0.75rem 1rem;
}

.mailing-hero-mesh__cta {
    padding-inline: 1.5rem;
}

.mailing-hero-mesh__thanks {
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .mailing-hero-mesh__row {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .mailing-hero-mesh__title {
        font-size: 4.5rem;
    }

    .mailing-hero-mesh__subtitle {
        font-size: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mailing-hero-mesh__dot {
        animation: none;
    }
}

