div.centerpiece-trio-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "centerpiece centerpiece"
        "item-0 item-1";

    >.gallery-item {
        position: relative;
        width: auto;

        transition: all 0.2s;

        &.centerpiece {
            grid-area: centerpiece;
        }

        &.item-0 {
            grid-area: item-0;

        }

        &.item-1 {
            grid-area: item-1;
        }

        >img {
            border-style: solid;
            border-color: transparent;
        }

        >div.contents {
            position: absolute;

            /* align-content: center; */
            left: 0%;
            bottom: 0%;

            color: var(--text-color);

            border-color: var(--line-color);

            border-radius: var(--border-radius);
            backdrop-filter: blur(5px);
            margin: 0.5em;
            padding: 1em;

            transition: all 0.2s;

            >.description {
                width: auto;

                >.role {
                    /* text-align: center; */
                    font-style: italic;

                    margin: 0em;
                    margin-bottom: 0em;
                }

                >ul.accomplishments {
                    margin: 0em;
                    margin-top: 0.25em;
                    padding-left: 1.5em;

                    @media screen and (width <=450px) 
                    {               
                        display:none;
                    }
                }
            }
        }

        &:hover {
            transform: scale(98%);

            >img {
                border-style: solid;
                border-color: var(--link-hover-color);
            }

            >div.contents {
                /* transform: scale(105%); */
                backdrop-filter: blur(20px);
            }
        }
    }

    @media screen and (width <=450px) {

        grid-template-columns: auto;
        grid-template-areas:
                "centerpiece"
                "item-0"
                "item-1";
    }
}


/*
@media only screen and (max-width: 1920px) {
    div.gallery-item {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 1080px) {
    div.gallery-item {
        width: calc(100% - 20px);
    }
} */