.tile-item {
    margin-bottom: 25px;
}
.tile-item h2 {
    color: #fff;
    font-size: 1.25em;
    font-weight: normal;
}
.tile-item a {
    display: block;
    color: #fff;
    font-weight: bold;
}
.tile-item {
    padding: 15px 15px 15px 15px;
    border: 1px solid transparent;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.tile-item hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #54E081;
    margin-top: auto;
    padding: 0;
}

.tile-item .learn-more {
    margin-top: 20px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.15em;
}

.tile-item .category-link {
    color: #fff;
    font-size: 1.3em;
    font-weight: bold;
}

@media (min-width: 768px) {
    .tile {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 40px;
    }
    .tile-item {
        padding: 150px 20px 20px 20px;
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    /* Styles for tablets and larger screens */
    .tile {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 40px;
    }
    .tile-item {
        padding: 150px 40px 40px 40px;
        margin-bottom: 0;
    }
}

