/* Contexta — product CTA boxes (editor + frontend) */
.rm-cta-box {
    margin: 1.25em 0;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8f7ff 0%, #eef2ff 100%);
    border: 1px solid #d4d4f0;
    border-left: 4px solid #5b50e8;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(91, 80, 232, .08);
}
.rm-cta-box .rm-cta-text {
    margin: 0 0 10px;
    line-height: 1.65;
    color: #374151;
}
.rm-cta-box .rm-cta-text:last-child {
    margin-bottom: 0;
}
.rm-cta-box .rm-cta-text a.rm-cta-link {
    color: #5b50e8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.rm-cta-box .rm-cta-text a.rm-cta-link:hover {
    color: #4a41d6;
}
.rm-cta-box .rm-cta-btn {
    display: inline-block;
    margin-top: 4px;
    padding: 11px 20px;
    background: #5b50e8;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    transition: background .15s ease, transform .1s ease;
    box-shadow: 0 2px 6px rgba(91, 80, 232, .25);
}
.rm-cta-box .rm-cta-btn:hover {
    background: #4a41d6;
    transform: translateY(-1px);
}
