.churches-content {
    overflow: hidden;
    position: relative;
    transition: opacity .2s ease;
}

.churches-content.is-loading {
    opacity: 0.45;
    pointer-events: none;
    min-height: 200px;
}

.churches-content.is-loading::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    width: 36px;
    height: 36px;
    margin-left: -18px;
    border: 3px solid #146dac;
    border-top-color: transparent;
    border-radius: 50%;
    animation: churches-spin .7s linear infinite;
    z-index: 10;
}

[data-theme="dark"] .churches-content.is-loading::after {
    border-color: #6ab0e8;
    border-top-color: transparent;
}

@keyframes churches-spin {
    to { transform: rotate(360deg); }
}
