/* W6G MAIN_SLIDER */

.w6g-ms-wrapper {
    max-width: 100%;
    margin: 0 0 24px 0;
}

.w6g-ms-hero {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
}

.w6g-ms-hero-card {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background-color: var(--w6g-ms-card-bg, rgba(0,0,0,0.65));
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.w6g-ms-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    max-width: 100%;
}

.w6g-ms-hero-date {
    color: var(--w6g-ms-date-color, #fff);
    font-size: var(--w6g-ms-date-size, 14px);
    font-weight: 600;
    white-space: nowrap;
}

.w6g-ms-hero-cat {
    color: var(--w6g-ms-cat-color, #fff);
    font-size: var(--w6g-ms-cat-size, 14px);
    font-weight: 700;
    white-space: nowrap;
}

.w6g-ms-hero-sep {
    display: block;
    width: auto;
    object-fit: contain;
}

.w6g-ms-hero-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    max-width: 900px;
}

.w6g-ms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.w6g-ms-grid-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.w6g-ms-grid-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.w6g-ms-grid-title {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--w6g-ms-grid-title-color, #222);
}

@media (max-width: 782px) {
    .w6g-ms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .w6g-ms-hero-card {
        padding: 10px 14px;
    }
    .w6g-ms-hero-title {
        font-size: 16px;
    }
    .w6g-ms-hero-date,
    .w6g-ms-hero-cat {
        font-size: 11px !important;
    }
    .w6g-ms-hero-sep {
        height: 16px !important;
    }
}

@media (max-width: 480px) {
    .w6g-ms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .w6g-ms-grid-item:nth-child(n+3) {
        display: none;
    }
}
