/**
 * Organizations - Organization cards and listings
 */

/* Organization List Cards */
.org-card {
    cursor: pointer;
}

.org-logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.org-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.org-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
}

/* Organization Hero */
.org-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-slate) 100%);
    min-height: 300px;
    display: flex;
    align-items: center;
}

.org-hero-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.org-hero-logo-placeholder {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
}

/* Organization Stats */
.stat-value {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sports Programs */
.sport-card {
    cursor: pointer;
}

.sport-icon {
    font-size: 3rem;
}
