.resources__grid .press-image  {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9 !important;
    border-radius: 9px  9px 0 0;
}

.resource-card-block {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.resources__grid .resource-card-block .resource-image {
	width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9 !important;
    border-radius: 9px  9px 0 0;
}
.resources__grid .resource-card-block .resource-post-type {
    font-size: .875em;
    line-height: 1.4;
    font-weight: 400;
    position: relative;
    display: block;
    margin-right: 2rem;
    margin-left: 2rem;
    margin-top: 1rem;
    color: #606885;
}
.resources__grid .resource-card-block .resource-post-title {
	margin: var(--space-xs) 2rem;
	font-weight: 500;
	font-size: var(--text-m);
	color: #343457;
}
.wpgb-radio-facet {
    display: flex !important;
    gap: 5px !important;
    flex-direction: row;
    align-items: center;
    max-width: 360px;
    flex-wrap: wrap;
}
.radio-checkbox input[type="radio"]
{
    display: none;
}
@media (min-width: 768px) {
    .wpgb-radio-facet {
        max-width: unset;
    }
}

.checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox .custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid #c7c7c7;
    border-radius: 4px;
    margin-right: 8px;
    transition: border-color ease 0.25s, background-color ease 0.25s;
}

.checkbox input[type="checkbox"]:checked + .custom-checkbox {
    border-color: #343457;
    background-color: #343457;
}

.checkbox input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 45%;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.resources__grid .wpgb-card-body {
	border-radius: 9px;
}