/* =====================================================================
   Premium Highlight Block — answer-box for featured snippets & AI search
   Design tokens: brand-blue gradient, white text, white checks, orange CTA
   ===================================================================== */

.bobex-premium-highlight {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(to right, #2878C8, #0D4785);
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .bobex-premium-highlight {
        padding: 2rem;
    }
}

/* ── Title ── */
.bobex-ph-title {
    margin: 0;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    font-size: 1.25rem;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .bobex-ph-title {
        font-size: 1.5rem;
    }
}

/* ── Subtitle ── */
.bobex-ph-subtitle {
    margin: 0.5rem 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .bobex-ph-subtitle {
        font-size: 0.9375rem;
    }
}

/* ── Callout box ── */
.bobex-ph-callout {
    margin-top: 1.25rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
}

@media (min-width: 768px) {
    .bobex-ph-callout {
        padding: 1.25rem;
    }
}

.bobex-ph-callout-heading {
    margin: 0;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.bobex-ph-callout-body {
    margin: 0.375rem 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* ── Optional subheading above checklist ── */
.bobex-ph-subheading {
    margin: 1.25rem 0 0;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

/* ── Checklist ── */
.bobex-ph-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.bobex-ph-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: #fff !important;
    font-size: 0.875rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

/* Fix: force white fill on the checkmark SVG icon regardless of theme CSS overrides */
.bobex-ph-item svg {
    fill: #fff !important;
    color: #fff !important;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .bobex-ph-item {
        font-size: 0.9375rem;
    }
}

.bobex-ph-item strong {
    font-weight: 600;
    /* color unchanged (inherits white) */
}

.bobex-ph-item a {
    text-decoration: underline;
    text-underline-offset: 2px;
    color: inherit;
}

.bobex-ph-item a:hover {
    color: rgba(255, 255, 255, 0.9);
}

/* ── CTA button ── */
.bobex-ph-cta {
    margin-top: 1.5rem;
}

.bobex-ph-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #e55a2b, #e13c0e);
    color: #fff;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(229, 90, 43, 0.4);
    font-family: 'Montserrat', sans-serif;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (min-width: 640px) {
    .bobex-ph-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.bobex-ph-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 90, 43, 0.5);
    color: #fff;
    text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
    .bobex-ph-btn {
        transition: none;
    }

    .bobex-ph-btn:hover {
        transform: none;
    }
}

/* ── Source citation ── */
.bobex-ph-source {
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .bobex-ph-source {
        font-size: 0.8125rem;
    }
}

.bobex-ph-source-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.bobex-ph-source-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

