section.news:hover
{
    cursor: pointer;
}

section.news.bento
{
    background: white;
    border: 1px solid #e6e6e6;
    margin-bottom: 14px;
    filter: drop-shadow(3px 5px 2px whitesmoke);
}

section.news.bento:hover,
section.news.bento:active 
{
    border: 1px solid gray;
}

section.news.bento .image
{
    width: 100%;
    height: 200px;
    background-image: var(--bg-img);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

section.news.bento .container
{
    padding: 0 16px 7px 16px;
}

/* @media only screen and (min-device-width: 780px) */
@media only screen and (width > 780px)
{
    div.bento-container
    {
        display: grid;
        grid-template-columns: repeat(6, minmax(180px, 1fr));
        grid-auto-flow: dense;
        gap: 1rem;
    }

    section.news.bento
    {
        margin-bottom: 0;
        /* max-width: 460px; */
        display: flex;
        flex-direction: column;
    }

    section.news.bento:nth-child(1)
    {
        grid-column: span 3;
        grid-row: span 2;
    }

    section.news.bento:nth-child(2)
    {
        grid-column: span 2;
        grid-row: span 2;
    }

    section.news.bento:nth-child(3)
    {
        grid-column: span 1;
        grid-row: span 2;
    }

    section.news.bento:nth-child(4)
    {
        grid-column: span 2;
        grid-row: span 2;
    }

    section.news.bento:nth-child(5)
    {
        grid-column: span 2;
        grid-row: span 2;
    }

    section.news.bento:nth-child(6)
    {
        grid-column: span 2;
        grid-row: span 2;
    }

    section.news.bento .image
    {
        width: 100%;
        background-image: var(--bg-img);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    section.news.bento .image
    {
        flex-grow: 1;
    }

    section.news.bento:nth-child(4) .image,
    section.news.bento:nth-child(5) .image,
    section.news.bento:nth-child(6) .image
    {
        height: 170px;
    }

    section.news.bento .container
    {
        padding: 0 16px 7px 16px;
    }
}