/* GSL Menu Extensions — Promo Panel */

.gsl-mega-menu-promo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: var(--gsl-mm-radius, 0);
}

.gsl-mega-menu__sub-menu--promo .gsl-mega-menu-promo {
    width: 100%;
    height: 100%;
}

.gsl-mega-menu-promo__image {
    width: 100%;
    position: relative;
}

.gsl-mega-menu-promo__image-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gsl-mega-menu-promo__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
}

.gsl-mega-menu-promo__title {
    font-family: var(--gsl-mm-font-heading, var(--wp--preset--font-family--heading, serif));
    font-size: var(--wp--preset--font-size--heading-4, 1.375rem);
    font-weight: 400;
    margin: 0;
    color: var(--gsl-mm-fg, inherit);
}

.gsl-mega-menu-promo__description {
    font-family: var(--gsl-mm-font-body, var(--wp--preset--font-family--body, sans-serif));
    font-size: var(--wp--preset--font-size--small, 0.875rem);
    margin: 0;
    opacity: 0.8;
}

.gsl-mega-menu-promo__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: 1px solid var(--gsl-mm-border, currentColor);
    font-family: var(--gsl-mm-font-body, var(--wp--preset--font-family--body, sans-serif));
    font-size: 0.875rem;
    text-decoration: none;
    text-transform: capitalize;
    color: var(--gsl-mm-fg, inherit);
    margin-top: 0.5rem;
    width: fit-content;
    transition: background 200ms ease, color 200ms ease;
}

.gsl-mega-menu-promo__button:hover {
    background: var(--gsl-mm-fg, #3a3a38);
    color: var(--gsl-mm-bg, #fff);
}
