/* ===================================================================
   KEY TAKEAWAYS SECTION - LUXURY ARCHITECTURAL DESIGN
   This CSS is isolated and will not be affected by other styles
   =================================================================== */

/* Main container with double border frame */
.key-takeaways {
    position: relative;
    border: 1px solid #E8DBCD;
    padding: 32px;
    margin: 0 0;
    background: #FFFFFF;
    border-radius: 0;
    box-sizing: border-box;
}

/* Inner border frame for depth */
.key-takeaways::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #E8DBCD;
    pointer-events: none;
}

/* Golden corner accent - Art Deco detail */
.key-takeaways::after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 60px;
    height: 60px;
    border-top: 3px solid #C9A86A;
    border-left: 3px solid #C9A86A;
}

/* Dark title badge with cream text */
.key-takeaways-title {
    position: relative;
    display: inline-block;
    background: #1E1D1D;
    padding: 6px 20px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 2.5px;
    color: #E8DBCD;
    text-transform: uppercase;
    box-sizing: border-box;
    font-family: 'Quinn', 'Calibri', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Content wrapper */
.key-takeaways-content {
    box-sizing: border-box;
}

/* Reset list styles */
.key-takeaways-content ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

/* List items with golden cross markers */
.key-takeaways-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #1E1D1D;
    padding-left: 36px;
    position: relative;
    box-sizing: border-box;
    font-family: 'Calibri', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.key-takeaways-content li:last-child {
    margin-bottom: 0;
}

/* Horizontal line of cross marker */
.key-takeaways-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 2px;
    background: #C9A86A;
}

/* Vertical line of cross marker */
.key-takeaways-content li::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 2px;
    height: 10px;
    background: #C9A86A;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .key-takeaways {
        padding: 24px;
        margin: 24px 0;
    }

    .key-takeaways::before {
        top: 6px;
        left: 6px;
        right: 6px;
        bottom: 6px;
    }

    .key-takeaways::after {
        width: 50px;
        height: 50px;
        border-top-width: 2px;
        border-left-width: 2px;
    }
    
    .key-takeaways-title {
        font-size: 10px;
        padding: 5px 16px;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }
    
    .key-takeaways-content li {
        font-size: 15px;
        padding-left: 32px;
        margin-bottom: 14px;
    }
    
    .key-takeaways-content li::before {
        width: 18px;
        top: 9px;
    }

    .key-takeaways-content li::after {
        left: 5px;
        top: 5px;
        height: 9px;
    }
}

/* Ensure specificity - override any theme styles */
.key-takeaways,
.key-takeaways *,
.key-takeaways *::before,
.key-takeaways *::after {
    box-sizing: border-box;
}