.pl-mega-menu {
    width: 100%;
    background: #ffffff;
    box-sizing: border-box;
}

.pl-mega-menu__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 20px 20px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: start;
    gap: 20px 18px;
}

.pl-mega-menu__col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pl-mega-menu__title {
    padding: 4px 8px;
    color: rgba(51, 51, 51, 0.7);
    text-transform: uppercase;
    font-family: var(--pl-font-base, 'Exo 2', system-ui, sans-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.pl-mega-menu__divider {
    height: 1px;
    background: #cccccc;
    margin: 0 8px;
}

.pl-mega-menu__item {
    padding: 8px;
    color: #333333;
    font-family: var(--pl-font-base, 'Exo 2', system-ui, sans-serif);
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    text-decoration: none;
}

.pl-mega-menu__item:hover {
    text-decoration: underline;
}

.pl-mega-menu__promo {
    font-family: var(--pl-font-base, 'Exo 2', system-ui, sans-serif);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
}

.pl-mega-menu__promo-img {
    width: 100%;
    height: auto;
    aspect-ratio: 179 / 105;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.pl-mega-menu__promo-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pl-mega-menu__promo-date {
    color: rgba(51, 51, 51, 0.6);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.pl-mega-menu__promo-title {
    color: #333333;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.pl-mega-menu__promo:hover .pl-mega-menu__promo-title {
    text-decoration: underline;
}

/* Мегаменю: промежуточные ширины (без смены HTML — сетка сама переносит колонки) */
@media (max-width: 1240px) {
    .pl-mega-menu__container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px 20px;
    }
}

@media (max-width: 960px) {
    .pl-mega-menu__container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 18px;
        padding: 14px 16px 18px;
    }
}

@media (max-width: 780px) {
    .pl-mega-menu__container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 12px 16px 16px;
    }
}
