.sp-sermon-gallery__year {
    margin: 0 0 36px;
}

.sp-sermon-gallery__year > h2 {
    margin-bottom: 16px;
    padding-bottom: 7px;
    border-bottom: 1px solid #ddd;
}

.sp-sermon-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sp-sermon-gallery__item {
    min-width: 0;
    margin: 0;
}

.sp-sermon-gallery__image,
.sp-sermon-gallery__image img {
    display: block;
    width: 100%;
}

.sp-sermon-gallery__image {
    overflow: hidden;
    border-radius: 4px;
    background: #eee;
}

.sp-sermon-gallery__image img {
    height: 180px;
    object-fit: cover;
    transition: transform 160ms ease;
}

.sp-sermon-gallery__image:hover img,
.sp-sermon-gallery__image:focus img {
    transform: scale(1.025);
}

.sp-sermon-gallery figcaption {
    padding-top: 8px;
    line-height: 1.35;
}

.sp-sermon-gallery figcaption strong,
.sp-sermon-gallery figcaption span {
    display: block;
}

.sp-sermon-gallery figcaption span {
    margin-top: 3px;
    color: #666;
    font-size: 0.9em;
}

@media screen and (max-width: 760px) {
    .sp-sermon-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 480px) {
    .sp-sermon-gallery__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .sp-sermon-gallery__image img {
        height: auto;
    }
}
