.tile-list {
    background-color: #F7F7F7;
}

.tile-list--blue {
    background-color: #007DB9;
}

.tile-list--blue .tile-list__heading {
    color: #F8B60D;
}

.tile-list--blue .tile-list__subheading {
    color: #FFFFFF;
}

.tile-list__items {
    display: flex;
    flex-wrap: wrap;
    gap: 34px;
    justify-content: center;
    margin: 50px auto;
}

@media (min-width: 992px) {
    .tile-list__items {
        margin: 102px auto;
    }
}

.tile-list__item {
    flex: 1 1 390px;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
}

.tile-list__image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    margin-bottom: 44px;
}

.tile-list__items>.tile-list__item:only-child {
    margin-left: auto;
    margin-right: auto;
}

.tile-list__heading {
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    color: #007DB9;
    margin-bottom: 20px;
}

.tile-list__subheading {
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    margin-bottom: 33px;
}

.tile-list__button {
    margin-top: auto;
}