﻿
/* ==========================================================================
   1. BODY — standalone pages only (Layout = null)
   ========================================================================== */

.bespeak-article-body {
    background-color: #F3F3F2;
    font-family: 'Poppins', 'Neue Haas Display', sans-serif;
    color: #1B1917;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ==========================================================================
   2. PAGE WRAPPER
   ========================================================================== */

.bespeak-article-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 24px 80px;
}


/* ==========================================================================
   3. LOGO HEADER — standalone pages only
   ========================================================================== */

.bespeak-article-logo-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E2E0DE;
}

    .bespeak-article-logo-header img {
        width: 180px;
        height: auto;
    }


/* ==========================================================================
   4. HERO — plinth title block (rounded top, flat bottom)
   ========================================================================== */

.bespeak-article-hero {
    background-color: #1B1917;
    color: #F3F3F2;
    border-radius: 24px 24px 0 0;
    padding: 48px 40px 40px;
    margin-bottom: 0;
}

    .bespeak-article-hero h1 {
        font-family: 'Poppins', 'Neue Haas Display', sans-serif;
        font-weight: 700;
        font-size: 26px;
        line-height: 1.3;
        letter-spacing: 0.02em;
        color: #F3F3F2;
        margin: 0 0 16px 0;
    }

    .bespeak-article-hero .bespeak-article-updated {
        font-family: 'Poppins', 'Neue Haas Display', sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #A7A39D;
        margin: 0;
    }

    .bespeak-article-hero .bespeak-article-accent-line {
        width: 48px;
        height: 3px;
        background-color: #DF3546;
        border-radius: 2px;
        margin-top: 24px;
    }


/* ==========================================================================
   5. CONTENT BODY — white card (flat top, rounded bottom)
   ========================================================================== */

.bespeak-article-content {
    background-color: #FFFFFF;
    border-radius: 0 0 16px 16px;
    padding: 48px 40px 56px;
    box-shadow: 0 4px 24px rgba(27, 25, 23, 0.06);
}


/* ==========================================================================
   6. SECTIONS & HEADINGS
   ========================================================================== */

.bespeak-article-section {
    margin-bottom: 40px;
}

    .bespeak-article-section:last-child {
        margin-bottom: 0;
    }

.bespeak-article-section-heading {
    font-family: 'Poppins', 'Neue Haas Display', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #6C655C;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #DF3546;
    display: inline-block;
}


/* ==========================================================================
   7. BODY TEXT
   ========================================================================== */

.bespeak-article-text {
    font-family: 'Poppins', 'Neue Haas Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.75;
    color: #1B1917;
    margin: 0;
}

.bespeak-article-intro {
    font-family: 'Poppins', 'Neue Haas Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.75;
    color: #1B1917;
    margin: 0 0 40px 0;
}


/* ==========================================================================
   8. NUMBERED LISTS (for Terms-style clauses)
   ========================================================================== */

ol.bespeak-article-numbered-list {
    list-style: none;
    counter-reset: bespeak-counter;
    padding-left: 0;
    margin: 0;
}

    ol.bespeak-article-numbered-list > li {
        counter-increment: bespeak-counter;
        position: relative;
        padding-left: 36px;
        margin-bottom: 18px;
        font-family: 'Poppins', 'Neue Haas Display', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.75;
        color: #1B1917;
    }

        ol.bespeak-article-numbered-list > li::before {
            content: counter(bespeak-counter) ".";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 600;
            font-size: 14px;
            color: #DF3546;
            width: 28px;
        }


/* ==========================================================================
   9. ALPHABETICAL SUB-LISTS
   ========================================================================== */

ol.bespeak-article-alpha-list {
    list-style: none;
    counter-reset: bespeak-alpha;
    padding-left: 0;
    margin-top: 12px;
}

    ol.bespeak-article-alpha-list > li {
        counter-increment: bespeak-alpha;
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.7;
        color: #6C655C;
    }

        ol.bespeak-article-alpha-list > li::before {
            content: "(" counter(bespeak-alpha, lower-alpha) ")";
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 500;
            font-size: 13px;
            color: #89847D;
        }


/* ==========================================================================
   10. LABELLED LISTS (for prohibited-use style items with data-label)
   ========================================================================== */

ol.bespeak-article-labelled-list {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

    ol.bespeak-article-labelled-list > li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 10px;
        font-size: 13px;
        line-height: 1.7;
        color: #6C655C;
    }

        ol.bespeak-article-labelled-list > li::before {
            content: attr(data-label);
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 500;
            font-size: 13px;
            color: #89847D;
        }


/* ==========================================================================
   11. ROMAN NUMERAL LISTS (for Privacy-style sub-items with data-num)
   ========================================================================== */

ol.bespeak-article-roman-list {
    list-style: none;
    padding-left: 0;
    margin-top: 14px;
    margin-bottom: 14px;
}

    ol.bespeak-article-roman-list > li {
        position: relative;
        padding-left: 36px;
        margin-bottom: 10px;
        font-family: 'Poppins', 'Neue Haas Display', sans-serif;
        font-weight: 400;
        font-size: 13px;
        line-height: 1.7;
        color: #6C655C;
    }

        ol.bespeak-article-roman-list > li::before {
            content: attr(data-num);
            position: absolute;
            left: 0;
            top: 0;
            font-weight: 500;
            font-size: 13px;
            color: #DF3546;
            width: 30px;
        }


/* ==========================================================================
   12. CONTACT / DETAIL LISTS
   ========================================================================== */

.bespeak-article-contact-list {
    list-style: none;
    padding-left: 0;
    margin-top: 16px;
}

    .bespeak-article-contact-list > li {
        font-family: 'Poppins', 'Neue Haas Display', sans-serif;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.75;
        color: #1B1917;
        margin-bottom: 6px;
    }

        .bespeak-article-contact-list > li strong {
            font-weight: 600;
            color: #6C655C;
        }


/* ==========================================================================
   13. LINKS
   ========================================================================== */

.bespeak-article-content a {
    color: #DF3546;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

    .bespeak-article-content a:hover {
        color: #6B2239;
        text-decoration: underline;
    }


/* ==========================================================================
   14. DIVIDERS
   ========================================================================== */

.bespeak-article-divider {
    height: 1px;
    background-color: #E2E0DE;
    margin: 40px 0;
    border: none;
}


/* ==========================================================================
   15. FOOTER SPACER
   ========================================================================== */

.bespeak-article-footer-spacer {
    height: 40px;
}


/* ==========================================================================
   16. RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .bespeak-article-wrapper {
        padding: 32px 16px 60px;
    }

    .bespeak-article-hero {
        padding: 32px 24px 28px;
        border-radius: 20px 20px 0 0;
    }

        .bespeak-article-hero h1 {
            font-size: 20px;
        }

    .bespeak-article-content {
        padding: 32px 24px 40px;
    }

    .bespeak-article-text,
    .bespeak-article-intro,
    ol.bespeak-article-numbered-list > li {
        font-size: 13px;
    }

    ol.bespeak-article-numbered-list > li {
        padding-left: 28px;
    }

    .bespeak-article-logo-header img {
        width: 140px;
    }
}
