/**
 * SeaNeB Highlight Card — Premium Info Card Styles
 */

.seaneb-highlight-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Heading inside the card */
.seaneb-highlight-card h1,
.seaneb-highlight-card h2,
.seaneb-highlight-card h3,
.seaneb-highlight-card h4,
.seaneb-highlight-card h5,
.seaneb-highlight-card h6 {
    color: var(--seaneb-text-primary, #ffffff);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

/* List styling */
.seaneb-highlight-card ul,
.seaneb-highlight-card ol {
    margin: 0;
    padding: 0 0 0 8px;
}

.seaneb-highlight-card li {
    color: var(--seaneb-text-secondary, rgba(255, 255, 255, 0.85));
    font-size: 1rem;
    line-height: 1.8;
    list-style: disc;
    margin-left: 16px;
}

.seaneb-highlight-card li::marker {
    color: rgba(255, 255, 255, 0.5);
}

/* Paragraphs */
.seaneb-highlight-card p {
    color: var(--seaneb-text-secondary, rgba(255, 255, 255, 0.85));
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Hover subtle lift */
.seaneb-highlight-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .seaneb-highlight-card {
        padding: 28px 24px !important;
    }
}
