.challenge-tiles-preview-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 1.5rem;
}

.challenge-tile {
    position: relative;
    background-color: #e2f6f5;
}

.challenge-tile--link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.challenge-tile--image {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    background-color: white;
}

.challenge-tile--image--img {
    width: 100%;
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.challenge-tile:first-of-type .challenge-tile--image--img {
    border-top-left-radius: 2rem;
}

.challenge-tile:last-of-type {
    border-bottom-right-radius: 2rem;
}

.challenge-tile--content {
    padding: 2rem;
}

.challenge-tile--title h3 {
    padding-bottom: 1.5rem;
    padding-top: .5rem;
    font-weight: bold;
}

.page-id-54 .challenge-tile--title h3 {
    padding-top: 1.5rem;
}

.challenge-tile--button a.vce-separated-button {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: inline-flex;
    background-color: transparent;
    color: #00afaa;
}

.challenge-tile--button a:hover {
    text-decoration: none;
}

.tiles-button-text:before {
    content: "\2192";
    display: inline-block;
    margin-right: 0.5rem;
}

.challenge-tile--open-call-indicator {
    background: purple;
    display: inline-block;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 9999px;
    aspect-ratio: 1/1;
    color: white;
    width: 4rem;
    height: 4rem;
    text-align: center;
    line-height: 1.25;
    padding-top: 0.9rem;
    position: absolute;
    right: 2rem;
    margin-top: -2rem;
}

h3.vce-faq-toggle-title-text {
    /* margin-bottom: 1rem; */
}