h1.page-title {
    background: #d21f1f;
    color: white;
    font-size: 3rem;
    font-family: 'cooperblack';
}

.page-title {
    text-align: center;
    margin: 40px 0;
}

/* MAIN PAGE LAYOUT */

.page-layout {
    max-width: 1200px;
    margin: auto;
    display: grid;

    /* 2/3 events | 1/3 social */
    grid-template-columns: 2fr 1fr;

    gap: 30px;
    padding: 20px;
}


/* EVENTS GRID */

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}


/* EVENT CARD */

.event-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}

.event-card img {
    width: 100%;
    display: block;
}

.event-card h2 {
    margin: 15px;
    color: #d21f1f;
    font-family: 'Open Sans';
    font-size: 2.25rem;
}

.event-card .venue {
    font-weight: bold;
    margin: 0 15px;
}

.event-card p {
    margin: 10px 15px 20px;
}


/* Date badge */

.date-badge {
    position: absolute;
    top: 12px;
    left: 12px;

    display: flex;

    font-weight: bold;
    z-index: 5;
}

.date-badge .month {
    background: black;
    color: white;
    padding: 6px 8px;
    font-size: 12px;
}

.date-badge .day {
    background: #e31c23;
    color: white;
    padding: 6px 10px;
    font-size: 14px;
}

/* SOCIAL COLUMN */

.social-column {
    position: sticky;
    top: 20px;
}

.facebook-box {
    background: white;
    padding: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}


/* RESPONSIVE */

@media (max-width:900px) {

    .page-layout {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .facebook-box {
        justify-self: anchor-center;
        width: 360px;
    }

}