/** Display Posts Press & Media **/
.noom-press-media {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Creates 3 rows, each taking up 1 fractional unit of available space */
    grid-template-rows: repeat(3, 1fr);
    /* Adds space between the grid items */
    gap: 30px;
}

@media (max-width: 768px) {
    .noom-press-media {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .noom-press-media {
        grid-template-columns: repeat(2, 1fr);
    }
}

.noom-press-media .dps-layout-press-media {
    background-color: #fff;
    padding: 2%;
    border: none;
	box-shadow: rgba(0,0,0,0.04) 0px 3px 5px;
}

.noom-press-media .dps-layout-press-media h3 {
    font-size: 1.25rem;
}

.noom-press-media .dps-layout-press-media .image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 175px;
    border-bottom: 1px solid #eee;
}

.noom-press-media .dps-layout-press-media .image-wrapper .wp-post-image {
    max-height: 175px !important;
    width: 50%;
    margin: 0 auto;
}

.noom-press-media .dps-layout-press-media .meta-wrapper {
    padding: 10px 30px 10px;
    display: flex;
    flex-direction: column;
    /* justify-content: baseline; */
    /* height: 100%; */
    justify-content: space-between;
    min-height: 140px;
}

.noom-press-media .dps-layout-press-media .publication-meta-wrapper {
    color: #333;
    font-weight: bold;
    font-size: .75em;
}
