/* ==========================================================================
   Image Modal Styles
   ========================================================================== */
.modal-image {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-image-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-image-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.modal-image-close:hover,
.modal-image-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.event-card-image {
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.event-card-image:hover {
    opacity: 0.8;
}
