/* -- Button hover states -- */
.hero-btn-primary {
    transition: filter 0.2s ease, transform 0.15s ease;
}
.hero-btn-primary:hover,
.hero-btn-primary:focus {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.hero-btn-outline-secondary {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.hero-btn-outline-secondary:hover,
.hero-btn-outline-secondary:focus {
    background-color: var(--bs-secondary) !important;
    color: #fff !important;
    border-color: var(--bs-secondary) !important;
    transform: translateY(-1px);
}

.hero-btn-outline-primary-light {
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.hero-btn-outline-primary-light:hover,
.hero-btn-outline-primary-light:focus {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
    transform: translateY(-1px);
}
.context-card-hover {
    transition: transform 0.3s ease;
}

.context-card-hover:hover {
    transform: scale(1.05);
}

.context-border-w-4 {
    border-left-width: 4px !important;
}

/* subscribe v25 — overlapping avatar stack: geometry shared by both CSS frameworks, no colors */
.mailing-avatar-stack__section--py-4xl {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

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

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

.mailing-avatar-stack__item {
    width: 4rem;
    height: 4rem;
    margin-left: -1rem;
    flex-shrink: 0;
}

.mailing-avatar-stack__item:first-child {
    margin-left: 0;
}

.mailing-avatar-stack__title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.mailing-avatar-stack__row {
    flex-direction: column;
    gap: 0.75rem;
}

.mailing-avatar-stack__input,
.mailing-avatar-stack__cta {
    padding: 0.75rem 1rem;
}

.mailing-avatar-stack__cta {
    padding-inline: 1.5rem;
}

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

@media (min-width: 768px) {
    .mailing-avatar-stack__title {
        font-size: 2.25rem;
    }
}

