.awesomeBox p {
    font-size:1.2em;
}

.tour-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 0.75rem;
    grid-template-rows: repeat(2, auto);
    @media screen and (max-width: 600px) {
        grid-template-columns: repeat(1, 1fr);
    }
}

.tour-card {
    max-width: 600px;
    text-align: center;
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
    margin-bottom: 1em;
    border-bottom: 2px solid #edf2fa;
}

.tour-card-image {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    min-width: 0;
    min-height: 0;
}

.tour-card-image img {
    min-width: 100%;
    object-fit: cover;
    min-height: 100%;
}

.tour-card-caption {
    padding: 1em;
    text-align: left;
    background-color: #d9edf8; 
}