/* ============================================================
   SEOScripter — custom overrides
   Loaded AFTER the theme, so everything here wins.
   Safe to delete this file to revert to the stock theme look.
   Managed by Claude · created 2026-09-20
   ============================================================ */

/* ---- CTA buttons: rounded, soft shadow, hover lift ---- */
.action-button,
.register-button,
a.action-button,
.btn-primary {
    border-radius: 11px !important;
    font-weight: 600 !important;
    box-shadow: 0 8px 22px -8px rgba(37, 99, 235, .45);
    transition: transform .12s ease, box-shadow .2s ease, filter .2s ease;
}
.action-button:hover,
.register-button:hover,
.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 12px 30px -10px rgba(37, 99, 235, .55);
}

/* ---- Headings: tighter, more confident ---- */
h1, h2, h3, h4 { letter-spacing: -.02em; }

/* ---- Hero capability strip (replaces the old fake customer count) ---- */
.capability-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    justify-content: center;
}
.capability-strip span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(4px);
}

/* ---- Blog: author box ---- */
.blog-author-box {
    background: #f7f9fc;
    border: 1px solid #e6eaf0;
    border-radius: 16px;
    padding: 22px 24px;
}
.blog-author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

/* ---- Blog: end-of-post CTA ---- */
.blog-cta {
    background: linear-gradient(135deg, #2563eb, #1e3a5f);
    border-radius: 18px;
    padding: 42px 28px;
    color: #fff;
}
.blog-cta h5,
.blog-cta p { color: #fff; }
.blog-cta p { opacity: .9; }
.blog-cta .action-button,
.blog-cta .register-button {
    background: #fff !important;
    color: #1e3a5f !important;
    border-color: #fff !important;
    box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .45);
}

/* ---- Blog: readable article body ---- */
#blog-view-mobile { line-height: 1.75; }
#blog-view-mobile h2 { margin-top: 1.7em; margin-bottom: .4em; font-weight: 700; }
#blog-view-mobile h3 { margin-top: 1.4em; margin-bottom: .35em; font-weight: 600; }
#blog-view-mobile p  { margin-bottom: 1.15em; }
#blog-view-mobile ul,
#blog-view-mobile ol { margin-bottom: 1.15em; padding-left: 1.3em; }
#blog-view-mobile li { margin-bottom: .45em; }

@media (max-width: 576px) {
    .blog-cta { padding: 30px 18px; }
    .blog-author-box { padding: 18px; }
    .blog-author-img { width: 54px; height: 54px; }
}
