/* ==========================================================================
   Homepage SEO Content Blocks
   Styled to match the blog-slider / channel-card design language:
   Open Sans, #1e293b headings, #617ca3 accent, 12px border-radius cards.
   ========================================================================== */

/* ── Shared block wrapper ───────────────────────── */
.sltv-seo-block {
    margin: 28px 0;
    font-family: 'Open Sans', Arial, sans-serif;
}

.sltv-seo-block__inner {
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: 32px 30px;
    text-align: center;
}

/* ── Heading ── */
.sltv-seo-block__heading {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 14px;
    line-height: 1.3;
}

/* ── Body text ── */
.sltv-seo-block__text {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0 auto 12px;
    max-width: 720px;
}

.sltv-seo-block__text:last-of-type {
    margin-bottom: 0;
}

/* ── Accent bar (decorative divider under intro) ── */
.sltv-seo-block__accent-bar {
    width: 60px;
    height: 3px;
    background: #617ca3;
    border-radius: 2px;
    margin: 20px auto 0;
}

/* ── Icon (directory section) ── */
.sltv-seo-block__icon {
    margin-bottom: 10px;
}

.sltv-seo-block__icon svg {
    display: inline-block;
}

/* ── CTA button ── */
.sltv-seo-block__cta {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 28px;
    background: #617ca3;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.sltv-seo-block__cta:hover {
    background: #4e6a8e;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── Variant: Intro block ── */
.sltv-seo-block--intro .sltv-seo-block__inner {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
    border-color: #e2e8f0;
}

/* ── Variant: Directory block ── */
.sltv-seo-block--directory .sltv-seo-block__inner {
    background: #fff;
}

/* ── Variant: Trust block ── */
.sltv-seo-block--trust .sltv-seo-block__inner {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecf1 100%);
    border-color: #dde3ea;
}

/* Left-aligned inner (for trust section with link grids) */
.sltv-seo-block__inner--left {
    text-align: left;
}

.sltv-seo-block__inner--left .sltv-seo-block__text {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
}

.sltv-seo-block__inner--left .sltv-seo-block__heading {
    text-align: center;
    margin-bottom: 16px;
}

/* Inline links in body text */
.sltv-seo-block__text a {
    color: #617ca3;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(97, 124, 163, 0.3);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.sltv-seo-block__text a:hover {
    color: #4e6a8e;
    border-bottom-color: #4e6a8e;
}

/* ── Subheading (h3) ── */
.sltv-seo-block__subheading {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin: 22px 0 12px;
    line-height: 1.3;
}

/* ── Link grid (pill-style practice area links) ── */
.sltv-seo-link-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sltv-seo-link-grid li a {
    display: inline-block;
    padding: 7px 16px;
    background: #fff;
    color: #2a5885;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.sltv-seo-link-grid li a:hover {
    background: #617ca3;
    color: #fff;
    border-color: #617ca3;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
    .sltv-seo-block__inner {
        padding: 24px 20px;
    }

    .sltv-seo-block__heading {
        font-size: 19px;
    }

    .sltv-seo-block__subheading {
        font-size: 16px;
    }

    .sltv-seo-block__text {
        font-size: 14px;
    }

    .sltv-seo-block__cta {
        padding: 10px 22px;
        font-size: 14px;
    }

    .sltv-seo-link-grid {
        gap: 6px;
    }

    .sltv-seo-link-grid li a {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sltv-seo-block {
        margin: 20px 0;
    }

    .sltv-seo-block__inner {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .sltv-seo-block__heading {
        font-size: 17px;
    }

    .sltv-seo-link-grid li a {
        padding: 5px 10px;
        font-size: 12px;
    }
}
