/* Photo Gallery - Same Image Size */
.photo-gallery {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.photo-gallery-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.photo-gallery-image figure {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.photo-gallery-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    display: block;
}

/* News & Event Same Image Size */
/*.event-item .event-image {
    height: 280px !important;
    overflow: hidden !important;
}

.event-item .event-image a,
.event-item .event-image figure {
    width: 100% !important;
    height: 280px !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.event-item .event-image img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    display: block !important;
}

@media (max-width: 767px) {
    .event-item .event-image,
    .event-item .event-image figure,
    .event-item .event-image img {
        height: 220px !important;
    }
}*/