.grid-newsletters,
.grid-events {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5em 3em;
}

.grid-newsletter,
.grid-event {
    font-family: 'Montserrat', sans-serif;
    color: white;
    text-align: center;
}

.grid-newsletter-image > img,
.grid-event-image > img {
    height: 180px !important;
    width: auto !important;
    max-width: 100% !important;
    text-align: center;
}

.grid-newsletter-date,
.grid-event-date {
    font-size: 14px;
    margin-top: 24px;
    font-weight: 300;
}

.grid-newsletter-title,
.grid-event-title {
    font-weight: 900;
    line-height: 1.2;
    margin-top: 8px;
    font-size: 18px;
}

.grid-newsletter-link,
.grid-event-link {
    margin-top: 25px;
    display: inline-block;
    background-color: #d9d9d9;
    padding: 7px 35px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold !important;
    color: #11213A !important;
}

@media(max-width: 768px){
	.grid-newsletters,
	.grid-events {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2em 3em;
    }
}