/* === Custom Block Styling === */
.postSelector{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin-top: var(--CB-margin-top);
    margin-bottom: var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
}

.selectedPosts__outerWrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.selectedPosts__imageWrapper{
    max-height: 275px;
    aspect-ratio: 3/2;
    border-radius: 1.5rem;
    overflow: hidden;
    margin-bottom: 20px;
}
.selectedPosts__image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}