/**Layer 106: dynamic Highlights*/

.dynamic-highlights-panel {
    background: #fdf2f8;
    /* Light Pink tone for separation */
    border-left: 5px solid #db2777;
    margin: 2rem 0;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    font-family: 'Georgia', serif;
}

.highlight-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: #831843;
    margin: 0 0 1.5rem 0;
    line-height: 1.4;
    position: relative;
    padding-left: 1rem;
}

.highlight-quote::before {
    content: '“';
    font-size: 3rem;
    color: #fbcfe8;
    position: absolute;
    left: -1rem;
    top: -1rem;
}

.highlight-section.points h4 {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #db2777;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.highlight-section.points ul {
    margin: 0;
    padding-left: 1.25rem;
}

.highlight-section.points li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #1f2937;
    line-height: 1.5;
}

/* Float styling for inline injection */
.highlight-float-right {
    float: right;
    width: 300px;
    margin: 0 0 1rem 1.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .highlight-float-right {
        float: none;
        width: 100%;
        margin: 1.5rem 0;
    }
}