/* Filter Section */
.exploration-filters {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Match faint outline */
    border-radius: 12px;
    padding: 16px 24px;
    margin: 30px auto;
    max-width: 1300px;
    width: min(1340px, 95%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    font-family: var(--font);
}

.search-sort-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.search-input-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    background-color: rgba(6, 12, 28, 0.7);
    border-radius: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-input-wrapper ion-icon {
    font-size: 1.1rem;
    color: #38bdf8;
    margin-right: 12px;
}

.search-input-wrapper input {
    background: transparent;
    border: none;
    color: #f8fafc;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
}

.filter-dropdowns {
    display: flex;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-family: inherit;
    flex: 1;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label ion-icon {
    font-size: 0.9rem;
    color: #38bdf8;
}

/* Custom Select Dropdown Styling */
.filter-group select {
    background-color: rgba(6, 12, 28, 0.7);
    color: #f8fafc;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Mimic screenshot */
    padding: 10px 16px;
    border-radius: 8px;
    outline: none;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338bdf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    font-family: inherit;
    font-size: 0.9rem;
}

.filter-group select option {
    background-color: #0f172a;
    color: #fff;
    padding: 10px;
}

/* Stats and Featured Text Header */
.results-header {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 30px auto 20px;
    max-width: 1300px;
    width: min(1340px, 95%);
    padding: 0 24px;
    font-family: var(--font);
}

.results-header strong {
    color: #fff;
    font-weight: 500;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 500;
    margin: 0 auto 30px;
    max-width: 1300px;
    width: min(1340px, 95%);
    padding: 0 24px;
    font-family: var(--font);
}

.section-title ion-icon {
    color: #38bdf8;
}

.organization-container h1{
    font-size: 50px;
    margin: 70px 0 10px 0;
}

.org-title-desc{
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 50px;
}

.section-title{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .filter-dropdowns {
        flex-direction: column;
        gap: 16px;
    }
    .search-input-wrapper ion-icon,
    .filter-group label ion-icon,
    .section-title ion-icon {
        color: #38bdf8 !important;
    }
}