.events-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
    flex-direction: row;
    justify-content: center;
    flex-flow: row wrap;
}
.events-cards .event-card:nth-child(2n+1) {
    justify-content: flex-end;
}
.events-cards .event-card {
    min-height: 0px;
    min-width: 0px;
    width: calc(100% - 1.875rem);
    margin-right: 0.9375rem;
    margin-left: 0.9375rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    margin-bottom: 1;
    border: 1px solid #003854;
    background: #fefefe;
    overflow: hidden;
    flex: 1 0 auto;
    padding: 1rem;
    position: relative;
    display: flex;
    align-items: stretch;
    margin-bottom: 0.9375rem;
    margin-top: 0.9375rem;
    padding: 0;
    transition: box-shadow 0.3s ease-in-out;
    max-width: 350px;
}
.event-card > :last-child {
    margin-bottom: 0;
}
.event-card__image {
    flex-direction: row;
    display: flex;
}
.event-card__image img {
    object-fit: cover;
    height: 175px;
    width: 100%;
}
.event-card__content {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    padding: 16px;
}
.event-card .event-card__content :last-child {
    margin-top: auto;
}
.event-card__event-datetime,
.event-card__event-price {
    font-family: "PT Sans", helvetica, arial, sans-serif;
    font-weight: normal;
    line-height: 1.5;
}
.event-card__event-title {
    font-size: 18px;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 8px;
    color: inherit;
}
.event-card__event-location {
    line-height: normal;
    font-style: italic;
    font-size: .95em;
    margin-bottom: 32px;
}
.event-card__meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.event-card__event-button {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
    padding: 1.5em 2em;
    -webkit-appearance: none;
    border: 1px solid #71ABA7;
    color: white;
    border-radius: 4px;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 1.25rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #71ABA7;
}
.event-card__event-button:hover {
    background-color: white;
    color: #71ABA7;
    border-color: #71ABA7;
    text-decoration: none;
}
@media (min-width: 640px) {
    .event-card__event-title {
        font-size: 25px;
    }
}