/* ===

Theme Name: Hey Victor
Author: Koval Web
Author URI: https://kovalweb.com/
Description: Website development by Koval Web
Tags: html5, css3, sass, js, gulp, bootstrap grid
Version: 1.0

=== */
.events-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--base);
    color: var(--contrast);
    border: 2px solid currentColor;
    padding: 2.5rem 1.375rem;
    font-size: 1.125rem;
    min-height: 22rem;
    text-decoration: none;
    border-radius: 1.25rem;
}

.events-item .btn-link {
    margin-top: 1.5rem;
}

.bg-contrast .events-item, .bg-accent .events-item, .bg-accent2 .events-item {
    border-color: transparent;
}

.events-item-date {
    font-family: var(--heading-font-family);
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.events-item-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.events-item-time {
    text-transform: uppercase;
    margin: 0;
}

@media (min-width: 768px) {
    .events-item {
        padding: 3rem 2rem;
        min-height: 25rem;
    }
}