.single-resource {
    .resource-list-block a {
        display: block;
        height: 100%;
    }
    .background-type {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 305px;
        transition: background-color 0.3s ease;
    }
    .info-wrapper {
        transition: border-left-color 0.3s ease;
    }
    .wp-block-heading {
        margin-bottom: 0;
        margin-top: auto;
    }
    .wheat-400 {
        background-color: var(--wp--preset--color--wheat-400);
        .wp-block-heading,
        .type-term {
            color: var(--wp--preset--color--cgc-grey-900) !important;
        }
        .wp-block-outermost-icon-block svg path {
            fill: var(--wp--preset--color--cgc-grey-900);
        }
    }
    .sage-400 {
        background-color: var(--wp--preset--color--sage-400);
        .wp-block-heading,
        .type-term {
            color: var(--wp--preset--color--cgc-grey-900) !important;
        }
        .wp-block-outermost-icon-block svg path {
            fill: var(--wp--preset--color--cgc-grey-900);
        }
    }
    .grey-500 {
        background-color: var(--wp--preset--color--cgc-grey-500);
    }
    .background-wrapper {
        display: flex;
        justify-content: space-between;
    }
    &:is(:hover, :focus) {
        .grey-500 {
            background-color: var(--wp--preset--color--cgc-grey-700);
        }
        .sage-400 {
            background-color: var(--wp--preset--color--sage-300);
        }
        .wheat-400{
            background-color: var(--wp--preset--color--wheat-300);
        }
        .info-wrapper {
            border-left-color: var(--wp--preset--color--cgc-grey-300) !important;
        }
    }
}