/* Title */
.event > h2 {
    margin-bottom: 10px;
}

.event > div > h2 {
    margin-bottom: 10px;
}

/* Dates */

.dates {
    margin: var(--space-md) 0;
}

.dates > p {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

/* Location */

.location {
    margin-bottom: var(--space-md);
}

.location > p {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: -1rem;
    line-height: 1.2rem;
}

.location > .address {
    font-weight: 600;
    font-size: 1rem;
    margin-top: -1rem;
}

/* Description */

.description {
    margin-bottom: var(--space-md);
}

/* Images */

@media only screen and (max-width: 1200px) {
    /* No longer two columns */
    event.two-columns { 
        grid-template-columns: auto;
    }
}

@media only screen and (min-width: 1200px) {
    /* Actually two columns */
    .event.two-columns { 
        grid-template-columns: 2fr 3fr;
    }
    .event > .right-column > img {
        margin-top: 1.5rem;
    }
}