/* Blog conversion layer: preserves the archive and provides relevant next steps. */
.blog-next-step,
.blog-post-next-step {
    margin: 64px auto 0;
    padding: 48px 26px;
    max-width: 940px;
    border: 1px solid rgba(255,255,255,.18);
    background: #151515;
    color: #ffffff;
    text-align: center;
}
.blog-next-step-kicker,
.blog-post-next-step-kicker {
    display: block;
    margin-bottom: 9px;
    color: #ff0000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.blog-next-step h2,
.blog-post-next-step h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: clamp(24px, 2.2vw, 36px);
    line-height: 1.15;
    text-transform: uppercase;
}
.blog-next-step p,
.blog-post-next-step p {
    max-width: 680px;
    margin: 0 auto 25px;
    color: #d9d9d9 !important;
    font-size: 16px;
    line-height: 1.65;
}
.blog-next-step-actions,
.blog-post-next-step-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.blog-next-step-actions a,
.blog-post-next-step-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #ff0000;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
}
.blog-next-step-actions a:hover,
.blog-next-step-actions a:focus,
.blog-post-next-step-actions a:hover,
.blog-post-next-step-actions a:focus {
    background: #ffffff;
    color: #111111 !important;
}
.blog-next-step-primary,
.blog-post-next-step-primary {
    background: #ff0000;
}
@media (max-width: 700px) {
    .blog-next-step,
    .blog-post-next-step { margin-top: 42px; padding: 40px 20px; }
    .blog-next-step h2,
    .blog-post-next-step h2 { font-size: 24px; }
    .blog-next-step-actions,
    .blog-post-next-step-actions { flex-direction: column; align-items: stretch; }
}
