.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.article-prose {
    color: #475569;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.article-prose > section {
    margin-top: 3.5rem;
}

.article-prose > section:first-of-type {
    margin-top: 0;
}

.article-prose section p + p {
    margin-top: 1.25rem;
}

.article-intro {
    margin-bottom: 2.5rem;
    color: #191c1d;
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 500;
    line-height: 1.65;
}

@keyframes soft-pulse {
    0% { box-shadow: 0 0 0 0 rgba(187, 1, 26, 0.65); }
    70% { box-shadow: 0 0 0 15px rgba(187, 1, 26, 0); }
    100% { box-shadow: 0 0 0 0 rgba(187, 1, 26, 0); }
}

.pulse-red {
    animation: soft-pulse 2s infinite;
}

@media (prefers-reduced-motion: reduce) {
    .pulse-red {
        animation: none;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
    }
}
