.podcast-root{
    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;



    background-color: var(--back-light);

    border-radius: 0.4em;
    /* margin: 1em 0.2em; */
    padding: 2em 2.2em;
    box-shadow: 0px 0px 5px 0px var(--box-shadows);
}

.podcast-grid{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    justify-content: space-between;
    /* column-gap: 8em; */
    row-gap: 6em;
}



.col-spacer{
    width: 14em;
}


.podcast-element-container{
    background-color: var(--back);
    border-radius: 1.2em;
    display: flex;
    flex-direction: column;
    width: min-content;
    gap: 0.25em;
    box-shadow: 7px 7px 9px -1px var(--box-shadows-dark);
    margin-left: 2.2em;
    margin-right: 2.2em;
}