/* Shared preview height (Tailwind h-64 / md:h-80; Bootstrap has no matching rem height utilities). */
.editorial-stack-cover {
  height: 16rem;
}

@media (min-width: 768px) {
  .editorial-stack-cover {
    height: 20rem;
  }
}

/* subscribe v18 — geometry shared by both CSS frameworks (Bootstrap has no utilities for it) */
.mailing-chat__section--py-4xl {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mxw-lg {
    max-width: 32rem !important;
}

.mailing-chat__line {
    gap: 0.75rem;
}

.mailing-chat__avatar,
.mailing-chat__send {
    width: 2.5rem;
    height: 2.5rem;
}

.mailing-chat__bubble {
    max-width: 20rem;
    padding: 0.75rem 1rem;
}

.mailing-chat__bubble--bot {
    border-bottom-left-radius: 0.25rem;
}

.mailing-chat__bubble--reply {
    border-bottom-right-radius: 0.25rem;
}

.mailing-chat__author {
    font-size: 0.75rem;
}

.mailing-chat__input {
    min-width: 0;
}

.mailing-chat__composer {
    min-height: 3rem;
}

.mailing-chat__send--hover {
    transition: transform 0.2s ease;
}

.mailing-chat__send--hover:hover {
    transform: scale(1.05);
}

.mailing-chat__bubble-in {
    animation: mailing-chat-bubble-in 0.3s ease-out;
}

@keyframes mailing-chat-bubble-in {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mailing-chat__send--hover:hover {
        transform: none;
    }

    .mailing-chat__bubble-in {
        animation: none;
    }
}

