/*
Theme Name: Helo Child
Template: helo
Version: 1.0.0
*/

.rcc-related-resources {
    margin: 48px 0;
}

.rcc-related-resources__heading {
    text-align: center;
    margin-bottom: 28px;
}

.rcc-related-resources__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.rcc-related-card {
    background: #f7f7f7;
    height: 100%;
}

.rcc-related-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.rcc-related-card__image {
    width: calc(100% - 56px);
    height: 264px;
    margin: 28px 28px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.rcc-related-card__body {
    padding: 28px;
    text-align: center;
}

.rcc-related-card__type {
    margin-bottom: 14px;
    color: #1f4d73;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rcc-related-card__title {
    margin: 0 0 24px;
    color: #1f4d73;
}

.rcc-related-card__excerpt {
    text-align: left;
}

@media (max-width: 900px) {
    .rcc-related-resources__grid {
        grid-template-columns: 1fr;
    }

    .rcc-related-card__image {
        height: 240px;
    }
}