/* ================================================================
   PROPOSITION PAGE — Stonebridge
   Scoped entirely to #proposition-banner / #proposition-cta /
   #proposition-documents / #proposition-faqs / .proposition-*
   Does NOT affect any other page template
   Bootstrap 4 breakpoints: sm 576 | md 768 | lg 992 | xl 1200
   ================================================================ */

/* ─────────────────────────────────────────
   BANNER — curved gradient panel over photo
───────────────────────────────────────── */
#proposition-banner {
    position: relative;
    min-height: 472px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #e9e4e3;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.proposition-banner-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    min-width: 340px;
    max-width: 662px;
    min-height: 472px;
    padding: 0 40px 0 50px;
    background: linear-gradient(to left, rgba(237, 114, 26, .7) 0%, #ed721a 100%);
    border-radius: 0 200px 200px 0;
}

.proposition-banner-title {
    color: #fff;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 0;
}

.proposition-banner-divider {
    display: block;
    width: 191px;
    height: auto;
}

@media (max-width: 767px) {
    #proposition-banner,
    .proposition-banner-panel {
        min-height: 197px;
    }

    .proposition-banner-panel {
        min-width: 220px;
        max-width: 280px;
        padding: 0 20px 0 20px;
        border-radius: 0 215px 215px 0;
        gap: 5px;
    }

    .proposition-banner-title {
        font-size: 20px;
    }

    .proposition-banner-divider {
        width: 65px;
    }
}

/* ─────────────────────────────────────────
   CTA PANEL — "Join Stonebridge for access to:"
───────────────────────────────────────── */
.proposition-panel {
    border: 1px solid #ec721a;
    border-radius: 10px;
    padding: 2.5rem;
}

.proposition-panel h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.proposition-panel-list ul {
    column-count: 2;
    column-gap: 2.5rem;
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.proposition-panel-list li {
    margin-bottom: 1rem;
    break-inside: avoid;
}

@media (max-width: 991px) {
    .proposition-panel {
        padding: 1.5rem;
    }

    .proposition-panel h2 {
        font-size: 1.25rem;
        text-align: left;
    }

    .proposition-panel-list ul {
        column-count: 1;
    }
}

/* ─────────────────────────────────────────
   DOCUMENTS CARD
───────────────────────────────────────── */
.proposition-documents-card {
    background: #fff;
    border: 1px solid #d24218;
    border-radius: 10px;
    overflow: hidden;
}

.proposition-documents-label {
    padding: 16px 40px 17px;
    border-bottom: 1px solid #d24218;
    color: #8d2c10;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.proposition-document-row {
    padding: 16px 40px;
    border-bottom: 1px solid #e9e4e3;
}

.proposition-document-row:last-child {
    border-bottom: none;
}

.proposition-document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    border-radius: 5px;
    background: #e9e4e3;
    flex-shrink: 0;
}

.proposition-document-icon img {
    width: 20px;
    height: 20px;
}

.proposition-document-title {
    font-size: 14px;
    color: #1b1b1b;
}

.proposition-download-link {
    gap: 6px;
    color: #ec721a;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.proposition-download-link:hover {
    color: #c9521a;
    text-decoration: none;
}

.proposition-download-icon {
    width: 16px;
    height: 16px;
}

@media (max-width: 767px) {
    .proposition-documents-label,
    .proposition-document-row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .proposition-document-icon {
        width: 30px;
        height: 30px;
    }

    .proposition-document-icon img {
        width: 16px;
        height: 16px;
    }

    .proposition-download-label {
        display: none;
    }
}

/* ─────────────────────────────────────────
   FAQ ACCORDION — rounded pill rows
───────────────────────────────────────── */
.proposition-faq-row {
    margin-bottom: 20px;
}

.proposition-faq-row:last-child {
    margin-bottom: 0;
}

.proposition-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 20px;
    box-shadow: -1px -1px .5px rgba(0, 0, 0, .25), 1px 1px .5px rgba(0, 0, 0, .25);
    text-align: left;
    text-decoration: none !important;
}

.proposition-faq-question {
    color: #d24218;
    font-size: 20px;
    font-weight: 600;
}

.proposition-faq-chevron {
    flex-shrink: 0;
    width: 9px;
    height: 16px;
    transform: rotate(90deg);
    transition: transform .2s;
}

.proposition-faq-toggle:not(.collapsed) .proposition-faq-chevron {
    transform: rotate(-90deg);
}

.proposition-faq-body {
    padding: 20px 20px 5px;
}

@media (max-width: 767px) {
    .proposition-faq-toggle {
        padding: 10px 15px;
    }

    .proposition-faq-question {
        font-size: 14px;
    }
}
