/* Event Filter Styles */
.church-event-filter {
    margin: 25px 0;
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 15px 20px;
    border: 1px solid #e5e7eb;
}

.church-event-filter-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .church-event-filter-inner {
        flex-direction: row;
        align-items: center;
    }
}

.church-event-filter-label {
    font-weight: 600;
    color: #374151;
    min-width: 120px;
}

.church-event-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.church-event-filter-item {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f3f4f6;
    border-radius: 4px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.church-event-filter-item:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.church-event-filter-item.active {
    background-color: #3b82f6;
    color: white;
    border-color: #2563eb;
}
/* ── Dropdown filter style ────────────────────────────────────────────────── */
.church-event-filter-inner--dropdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 480px) {
    .church-event-filter-inner--dropdown {
        flex-direction: row;
        align-items: center;
    }
}

.church-event-filter-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 36px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    min-width: 200px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.church-event-filter-select:hover {
    border-color: #9ca3af;
}

.church-event-filter-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

@media (max-width: 479px) {
    .church-event-filter-select {
        width: 100%;
    }
}
