/* Editorial highlight panel */
.article-highlight {
    margin: 2rem 0;
    padding: 1.75rem 2rem;
    background: #f8faf8;
    border-left: 5px solid #2e7d32;
    border-radius: 8px;
}

/* Main takeaway */
.article-highlight h6 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    color: #1d2b36;
    letter-spacing: -0.01em;
}

/* CTA section */
.article-highlight blockquote {
    margin: 1.5rem 0 0;
    padding: 0;
    border: 0;
    background: transparent;
}

/* Remove default list styling */
.article-highlight blockquote ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* CTA items */
.article-highlight blockquote li {
    margin-bottom: 0.75rem;
}

/* CTA links */
.article-highlight blockquote a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    color: #005fcc;
    transition: all 0.2s ease;
}

/* Editorial arrow */
.article-highlight blockquote a::before {
    content: "→";
    color: #2e7d32;
    font-weight: 700;
}

.article-highlight blockquote a:hover {
    color: #003f8a;
    transform: translateX(4px);
}