/**
 * GHVM homepage — Birthdays & Notices spotlight
 * Uses theme fonts (Poppins / Spartan) and brand colors so it blends with EduBlink.
 */
.ghvm-spotlight {
    --ghvm-spot-teal: var(--color-primary, #1ab69d);
    --ghvm-spot-teal-deep: #0f8f7a;
    --ghvm-spot-coral: var(--color-secondary, #ee4a62);
    --ghvm-spot-ink: var(--color-heading, #181818);
    --ghvm-spot-muted: #6b7385;
    --ghvm-spot-stage: #eef8f6;
    --ghvm-spot-ease: cubic-bezier(0.22, 1, 0.36, 1);
    background:
        radial-gradient(ellipse 60% 50% at 10% 0%, rgba(26, 182, 157, 0.1), transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 20%, rgba(238, 74, 98, 0.06), transparent 50%),
        #f8fbfa;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
}

.ghvm-spotlight .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1400px) {
    .ghvm-spotlight .container {
        padding-left: 28px;
        padding-right: 28px;
    }
}

.ghvm-spotlight .section-title {
    margin-bottom: 36px;
}

.ghvm-spotlight-chip,
.ghvm-section-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(26, 182, 157, 0.22);
    box-shadow: 0 8px 22px rgba(20, 32, 43, 0.06);
    color: var(--ghvm-spot-teal-deep, #0f8f7a);
    font-family: var(--font-primary, Poppins, sans-serif);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ghvm-spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 7fr);
    gap: 24px;
    align-items: stretch;
}

.ghvm-spotlight-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.08);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 14px 40px rgba(20, 32, 43, 0.08);
    overflow: hidden;
}

.ghvm-spotlight-bday {
    border-top: 3px solid var(--ghvm-spot-teal);
}

.ghvm-spotlight-notice {
    border-top: 3px solid var(--ghvm-spot-coral);
}

.ghvm-spotlight-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 18px 22px;
    background: linear-gradient(180deg, #f4faf8 0%, #fff 100%);
    border-bottom: 1px solid rgba(20, 32, 43, 0.06);
}

.ghvm-spotlight-bday .ghvm-bday-empty,
.ghvm-spotlight-bday .ghvm-bday-carousel,
.ghvm-spotlight-notice .ghvm-notice-list,
.ghvm-spotlight-notice .ghvm-notice-empty {
    margin: 18px 22px 22px;
}

.ghvm-spotlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--ghvm-spot-teal), var(--ghvm-spot-teal-deep));
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(15, 143, 122, 0.28);
}

.ghvm-spotlight-icon-coral {
    background: linear-gradient(135deg, #ff6b81, var(--ghvm-spot-coral));
    box-shadow: 0 8px 18px rgba(238, 74, 98, 0.28);
}

.ghvm-spotlight-panel-title {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 800;
    color: var(--ghvm-spot-ink);
    line-height: 1.25;
}

.ghvm-spotlight-panel-sub {
    margin: 2px 0 0;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: var(--ghvm-spot-muted);
}

.ghvm-spotlight-all {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    color: var(--ghvm-spot-coral);
    text-decoration: none;
    white-space: nowrap;
    transition: gap 0.2s var(--ghvm-spot-ease), color 0.2s ease;
}

.ghvm-spotlight-all:hover {
    color: var(--ghvm-spot-teal-deep);
    gap: 7px;
}

/* ---- Birthday empty ---- */
.ghvm-bday-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px 18px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--ghvm-spot-stage) 0%, #fff 100%);
    border: 1px dashed rgba(26, 182, 157, 0.35);
    min-height: 280px;
}

.ghvm-bday-empty-art {
    position: relative;
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ghvm-bday-empty-orb {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(26, 182, 157, 0.14);
    animation: ghvm-spot-pulse 2.4s ease-in-out infinite;
}

.ghvm-bday-empty-art i {
    position: relative;
    font-size: 30px;
    color: var(--ghvm-spot-teal);
}

.ghvm-bday-empty h4 {
    margin: 0 0 6px;
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 800;
    color: var(--ghvm-spot-ink);
}

.ghvm-bday-empty p {
    margin: 0;
    max-width: 260px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--ghvm-spot-muted);
}

@keyframes ghvm-spot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.8; }
}

/* ---- Birthday carousel ---- */
.ghvm-bday-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ghvm-bday-carousel .carousel-inner {
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
}

.ghvm-bday-slide {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    align-items: center;
    min-height: 0;
    padding: 20px 16px;
    background: linear-gradient(135deg, var(--ghvm-spot-stage) 0%, #fff 55%);
    border-radius: 14px;
    border: 1px solid rgba(26, 182, 157, 0.18);
}

.ghvm-bday-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 143, 122, 0.22);
    border: 3px solid #fff;
}

.ghvm-bday-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ghvm-bday-badge {
    display: inline-block;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(238, 74, 98, 0.12);
    color: var(--ghvm-spot-coral);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ghvm-bday-name {
    margin: 0 0 8px;
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 800;
    color: var(--ghvm-spot-ink);
    line-height: 1.2;
}

.ghvm-bday-wish {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--ghvm-spot-muted);
}

.ghvm-bday-dots {
    position: static;
    margin: 14px 0 0;
    gap: 6px;
}

.ghvm-bday-dots [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26, 182, 157, 0.3);
    border: 0;
    opacity: 1;
    margin: 0 3px;
    text-indent: -9999px;
}

.ghvm-bday-dots .active {
    background: var(--ghvm-spot-teal);
    width: 20px;
    border-radius: 999px;
}

.ghvm-bday-nav {
    width: auto;
    opacity: 1;
}

.ghvm-bday-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--ghvm-spot-teal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 20px;
}

.ghvm-bday-carousel .carousel-control-prev {
    left: 6px;
    justify-content: flex-start;
}

.ghvm-bday-carousel .carousel-control-next {
    right: 6px;
    justify-content: flex-end;
}

/* ---- Notices ---- */
.ghvm-notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.ghvm-notice-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.08);
    box-shadow: 0 6px 18px rgba(20, 32, 43, 0.05);
    text-decoration: none !important;
    color: inherit;
    transition: border-color 0.18s ease, transform 0.18s var(--ghvm-spot-ease), box-shadow 0.18s ease;
}

.ghvm-notice-item:hover {
    border-color: rgba(26, 182, 157, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(20, 32, 43, 0.1);
}

/* Fixed media slot — never overlaps text */
.ghvm-notice-media {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--ghvm-spot-teal) 0%, var(--ghvm-spot-teal-deep) 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.ghvm-notice-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Date always visible — full badge, or compact overlay on photos */
.ghvm-notice-date {
    position: absolute !important;
    inset: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    float: none !important;
    background: transparent !important;
    color: #fff !important;
    line-height: 1.15 !important;
    font-family: var(--font-primary);
    font-style: normal !important;
    text-align: center !important;
    z-index: 2;
}

.ghvm-notice-item.has-photo .ghvm-notice-date {
    inset: auto 0 0 0 !important;
    top: auto !important;
    height: auto !important;
    min-height: 26px;
    padding: 3px 4px !important;
    flex-direction: row !important;
    gap: 4px;
    background: linear-gradient(180deg, transparent, rgba(8, 18, 24, 0.82)) !important;
}

.ghvm-notice-day,
.ghvm-notice-month {
    display: block !important;
    float: none !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    text-align: center !important;
}

.ghvm-notice-day {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.1 !important;
}

.ghvm-notice-month {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.2 !important;
}

.ghvm-notice-item.has-photo .ghvm-notice-day {
    font-size: 12px !important;
}

.ghvm-notice-item.has-photo .ghvm-notice-month {
    font-size: 10px !important;
}

.ghvm-notice-body {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.ghvm-notice-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 650;
    color: var(--ghvm-spot-teal-deep);
    line-height: 1.3;
}

.ghvm-notice-meta i {
    font-size: 13px;
    color: var(--ghvm-spot-teal);
}

.ghvm-notice-title {
    margin: 0 0 4px;
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 700;
    color: var(--ghvm-spot-ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.ghvm-notice-blurb {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 400;
    color: var(--ghvm-spot-muted);
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.ghvm-notice-go {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ghvm-spot-teal);
    color: #fff;
    font-size: 20px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.ghvm-notice-item:hover .ghvm-notice-go {
    background: var(--ghvm-spot-teal-deep);
    transform: translateX(2px);
}

.ghvm-notice-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 220px;
    border-radius: 8px;
    background: #f7f9fa;
    color: var(--ghvm-spot-muted);
    text-align: center;
    font-family: var(--font-primary);
}

.ghvm-notice-empty i {
    font-size: 28px;
    color: var(--ghvm-spot-coral);
    opacity: 0.85;
}

.ghvm-notice-empty p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

@media (max-width: 991px) {
    .ghvm-spotlight-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ghvm-spotlight-panel-head {
        flex-wrap: wrap;
    }

    .ghvm-spotlight-all {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 575px) {
    .ghvm-spotlight-panel-head {
        padding: 16px;
    }

    .ghvm-spotlight-bday .ghvm-bday-empty,
    .ghvm-spotlight-bday .ghvm-bday-carousel,
    .ghvm-spotlight-notice .ghvm-notice-list,
    .ghvm-spotlight-notice .ghvm-notice-empty {
        margin: 14px 16px 16px;
    }

    .ghvm-notice-item {
        gap: 12px;
        padding: 12px;
    }

    .ghvm-notice-go {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .ghvm-notice-media {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
    }
}

/* Homepage FAQ — stretch edge-to-edge, less empty side space */
.faq-style-1 .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 1400px) {
    .faq-style-1 .container {
        padding-left: 28px;
        padding-right: 28px;
    }
}

.faq-style-1 .row--45 {
    margin-left: -12px;
    margin-right: -12px;
    column-gap: 0;
}

.faq-style-1 .row--45 > [class*="col"],
.faq-style-1 .row--45 > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.faq-style-1 .row--45 > .col-lg-5 {
    padding-right: 28px;
}

.faq-style-1 .row--45 > .col-lg-7 {
    padding-left: 28px;
}

@media (max-width: 991px) {
    .faq-style-1 .row--45 > .col-lg-5,
    .faq-style-1 .row--45 > .col-lg-7 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.faq-style-1 .edu-faq-content {
    width: 100%;
    max-width: none;
}

.faq-style-1 .ghvm-faq-list,
.faq-style-1 .ghvm-faq-list .accordion,
.faq-style-1 .ghvm-faq-list .accordion-item,
.faq-style-1 .ghvm-faq-list .accordion-header,
.faq-style-1 .ghvm-faq-list .accordion-button,
.faq-style-1 .ghvm-faq-list .accordion-collapse,
.faq-style-1 .ghvm-faq-list .accordion-body {
    width: 100%;
    max-width: none;
}

.faq-style-1 .ghvm-faq-list .accordion-item {
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(20, 32, 43, 0.06);
    overflow: hidden;
}

.faq-style-1 .ghvm-faq-list .accordion-item .accordion-button {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 16px 42px 16px 18px;
    font-size: 16px;
    line-height: 1.45;
    white-space: normal;
    text-align: left;
    border-radius: 12px;
}

.faq-style-1 .ghvm-faq-list .accordion-item .accordion-button.collapsed {
    background-color: #fff;
    color: var(--color-heading, #181818);
    border-radius: 12px;
}

.faq-style-1 .ghvm-faq-list .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 12px 12px 0 0;
}

.faq-style-1 .ghvm-faq-list .accordion-item .accordion-button:before {
    top: 20px;
    right: 16px;
}

.faq-style-1 .ghvm-faq-list .accordion-item .accordion-body {
    padding: 4px 18px 18px;
}

.faq-style-1 .ghvm-faq-more {
    margin-top: 22px;
}

.faq-style-1 .ghvm-faq-more .edu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ghvm-faqs-page .ghvm-faq-list {
    margin-top: 10px;
}

.ghvm-faqs-page .ghvm-faq-list .accordion-item {
    margin-bottom: 14px;
    background: #fff;
    border: 1px solid rgba(20, 32, 43, 0.08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(20, 32, 43, 0.06);
    overflow: hidden;
}

.ghvm-faqs-page .ghvm-faq-list .accordion-item .accordion-button {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 16px 42px 16px 18px;
    font-size: 16px;
    line-height: 1.45;
    white-space: normal;
    text-align: left;
    border-radius: 12px;
}

.ghvm-faqs-page .ghvm-faq-list .accordion-item .accordion-button.collapsed {
    background-color: #fff;
    color: var(--color-heading, #181818);
    border-radius: 12px;
}

.ghvm-faqs-page .ghvm-faq-list .accordion-item .accordion-button:not(.collapsed) {
    border-radius: 12px 12px 0 0;
}

.ghvm-faqs-page .ghvm-faq-list .accordion-item .accordion-button:before {
    top: 20px;
    right: 16px;
}

.ghvm-faqs-page .ghvm-faq-list .accordion-item .accordion-body {
    padding: 4px 18px 18px;
}
