/*
 * Content / marketing page styling (cloud, guarantee, future content pages).
 * Loaded globally via inc/shared-assets.php. Portable dev->prod with the theme.
 */

/* Brand button -- matches the site primary (#0077E5, the "Start Free Trial" button) */
.fls-btn {
    display: inline-block;
    background: #0077E5;
    color: #ffffff !important;
    padding: 12px 26px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none !important;   /* beats the theme's .page-content a underline */
    line-height: 1.2;
    margin: 4px 0;
}
.fls-btn:hover,
.fls-btn:focus { background: #0066c4; color: #ffffff !important; text-decoration: none !important; }

/* Cloud page: two columns (image | content) inside the content column */
.fls-cloud-cols { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.fls-cloud-img { flex: 0 0 auto; }
.fls-cloud-img img { max-width: 220px; height: auto; }   /* never upscales the icon */
.fls-cloud-body { flex: 1; min-width: 280px; }
.fls-cloud-body ul { line-height: 1.9; }
