/* ============================================
   BV Enrollment Notice Widget
   Version: 1.7.3
   ============================================
   Visual properties (color, font-size, font-weight)
   are set via Elementor controls with defaults.
   This file handles only structural / layout CSS.
   ============================================ */

/* ── Wrapper ── */
.bv-en-wrapper {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* ── Title (above card) ── */
.bv-en-title {
    margin: 0 0 16px 0;
    padding: 0;
    line-height: 1.3;
    text-align: center;
}

/* ── Card ── */
.bv-en-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    width: 100%;
}

/* ── Icon Container (white box) ── */
.bv-en-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.bv-en-icon img {
    object-fit: contain;
    display: block;
}

/* ── Content ── */
.bv-en-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bv-en-description {
    margin: 0;
}

/* ── Features ── */
.bv-en-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bv-en-feature {
    padding-left: 1.2em;
    position: relative;
}

.bv-en-feature::before {
    content: attr(data-bullet);
    position: absolute;
    left: 0;
}

/* ── Button ── */
.bv-en-btn-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.bv-en-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.bv-en-btn:hover,
.bv-en-btn:focus {
    text-decoration: none;
}

/* ── Expired Message ── */
.bv-en-expired {
    text-align: center;
    color: #6b7b8a;
    font-size: 0.95rem;
    padding: 32px 16px;
    margin: 0;
}

/* ── Tablet (max 1024px) ── */
@media (max-width: 1024px) {
    .bv-en-card {
        padding: 24px 24px;
        gap: 20px;
    }
}

/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {
    .bv-en-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .bv-en-content {
        align-items: center;
    }

    .bv-en-features {
        align-items: flex-start;
        text-align: left;
    }

    .bv-en-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Small Mobile (max 480px) ── */
@media (max-width: 480px) {
    .bv-en-card {
        padding: 20px 16px;
    }
}
