.church-header {
    padding: 20px 20px 22px 20px;
    background: linear-gradient(160deg, #4A6FA5 0%, #2B4570 100%);
    border-radius: 0 0 28px 28px;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(43, 69, 112, 0.2);
}
.back-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px 6px 12px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.back-pill:hover { background: rgba(255, 255, 255, 0.22); }

.church-eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
    margin-bottom: 6px;
}
.church-header h1 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    margin-bottom: 6px;
}
.church-subhead {
    font-size: 13px;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 16px;
}
.church-locate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: 0.15s;
}
.church-locate-btn:hover { background: rgba(255, 255, 255, 0.26); }

.section-block {
    padding: 0 20px 24px 20px;
}
.section-heading h2 {
    font-size: 15px;
    font-weight: 600;
    color: #2A2624;
    margin-bottom: 12px;
}
.section-heading h2 i {
    color: #2B4570;
    margin-right: 6px;
}

.church-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.church-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid #EFEAE4;
    border-radius: 16px;
    padding: 14px 16px;
}
.church-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(160deg, #4A6FA5, #2B4570);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.church-meta { flex: 1; min-width: 0; }
.church-meta h4 {
    font-size: 15px;
    font-weight: 600;
    color: #2A2624;
}
.church-meta p {
    font-size: 12px;
    color: #8A7A7A;
    font-weight: 300;
}
.church-distance {
    font-size: 12px;
    color: #4A6FA5;
    font-weight: 600;
    flex-shrink: 0;
    text-align: right;
}
.church-directions {
    display: block;
    font-size: 11px;
    color: #A09898;
    font-weight: 400;
    margin-top: 2px;
}

@media (min-width: 768px) {
    .church-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}
