:root {
    /* --baseline: 2.5rem; */
}

/* 
COLOR
*/
.c-gray {
    opacity: .5;
}

/* 
DISPLAY
*/
.hide {
    display: none;
}

/* 
ELEMENTS
*/
.backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    background-color: rgba(0, 0, 0, .25);
    z-index: 1;
    transition: 500ms ease-in-out;
}

.backdrop.disabled {
    opacity: 0;
}

/* 
GRID
*/
.grid-feed,
.grid-layout {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: min-content;
}

.grid-layout {
    column-gap: .5rem;
}

/* PADDING */
.padding {
    padding-top: .5rem;
    padding-right: .5rem;
    padding-bottom: .5rem;
    padding-left: .5rem;
}


/* DESKTOP */
@media only screen and (min-width: 1024px) {
    .grid-layout {
        grid-template-columns: repeat(12, 1fr);
    }
}


/* 
HOVER
*/
@media (hover: hover) {

}