﻿.calev-container {
    font-family: "Roboto", sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

    .calev-container h3.year {
        font-size: 40px;
        text-align: center;
        border-bottom: 1px solid #b1b1b1;
    }

    .calev-container .calev {
        box-shadow: 0 4px 16px -8px rgba(0, 0, 0, 0.4);
        display: flex;
        border-radius: 8px;
        margin: 32px 0;
    }

.calev .calev-left {
    background: #87c137;
    min-width: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee;
    padding: 8px 48px;
    font-weight: bold;
    text-align: center;
    border-radius: 8px 0 0 8px;
}

    .calev .calev-left .date {
        font-size: 56px;
    }

    .calev .calev-left .month {
        font-size: 16px;
        font-weight: normal;
    }

.calev .calev-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
}

    .calev .calev-right h3.calev-title {
        font-size: 24px;
        margin: 24px 0 10px 0;
        color: #c13737;
        text-transform: uppercase;
    }

    .calev .calev-right .calev-spacing { 
        margin: 24px 0; 
    }

    .calev .calev-right .calev-description {
        text-align: justify;
        font-family: 'Open Sans';
    }
         

@media (max-width: 720px) {
    .calev {
        flex-direction: column;
    }

        .calev .calev-left {
            padding: 0;
            border-radius: 8px 8px 0 0;
        }

            .calev .calev-left .calev-date .date,
            .calev .calev-left .calev-date .month {
                display: inline-block;
                font-size: 24px;
            }

            .calev .calev-left .calev-date {
                padding: 10px 0;
            }
}
