:root {
    --primary: hsl(215, 85%, 55%);
    --primary-dark: hsl(215, 85%, 45%);
    --primary-light: hsl(215, 85%, 65%);
    --accent: hsl(260, 70%, 60%);
    --accent-light: hsl(260, 70%, 70%);
    --bg: hsl(220, 25%, 7%);
    --bg-secondary: hsl(220, 20%, 10%);
    --bg-card: hsl(220, 20%, 13%);
    --bg-elevated: hsl(220, 20%, 16%);
    --text: hsl(210, 40%, 96%);
    --text-secondary: hsl(215, 20%, 65%);
    --text-muted: hsl(215, 15%, 45%);
    --border: hsl(215, 20%, 20%);
    --border-light: hsl(215, 20%, 25%);
    --success: hsl(142, 70%, 50%);
    --warning: hsl(38, 92%, 50%);
    --error: hsl(0, 84%, 60%);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px hsla(0, 0%, 0%, 0.1);
    --shadow-md: 0 4px 20px hsla(0, 0%, 0%, 0.2);
    --shadow-lg: 0 20px 50px hsla(0, 0%, 0%, 0.4);
    --shadow-glow: 0 0 40px hsla(215, 85%, 55%, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 17, 25, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 20px;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--border-light);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
}

.team-page {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: pulse 8s infinite;
}

.hero-glow-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, hsla(215, 85%, 55%, 0.2) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-glow-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsla(260, 70%, 60%, 0.15) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

.hero-glow-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsla(142, 70%, 50%, 0.1) 0%, transparent 70%);
    top: 50%;
    left: -100px;
    animation-delay: 6s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(hsla(215, 20%, 20%, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, hsla(215, 20%, 20%, 0.2) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
}

.page-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 100px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.page-badge i {
    font-size: 16px;
}

.page-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.organizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.org-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out;
}

.org-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.org-logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
}

.org-logo {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border: 2px solid var(--border-light);
    transition: transform 0.4s ease;
}

.org-card:hover .org-logo {
    transform: scale(1.05);
}

.org-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    z-index: 1;
    animation: pulse 4s infinite;
}

.org-glow-purple {
    background: var(--accent);
}

.org-content {
    text-align: center;
}

.org-name {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text);
}

.org-tagline {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.org-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.org-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    font-size: 20px;
    color: white;
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-value {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.org-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.org-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.org-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 237, 0.3);
}

.org-link i {
    font-size: 16px;
}

.collaboration-section {
    margin-top: 80px;
}

.collaboration-header {
    text-align: center;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.collaboration-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.collaboration-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.collaboration-feature {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.8s ease-out backwards;
}

.collaboration-feature:nth-child(1) {
    animation-delay: 0.4s;
}

.collaboration-feature:nth-child(2) {
    animation-delay: 0.5s;
}

.collaboration-feature:nth-child(3) {
    animation-delay: 0.6s;
}

.collaboration-feature:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.collab-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    font-size: 28px;
    color: white;
    transition: transform 0.4s ease;
}

.collaboration-feature:hover .collab-icon {
    transform: scale(1.1) rotate(5deg);
}

.collaboration-feature h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.collaboration-feature p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.cta-section {
    padding: 80px 0;
    background: var(--bg);
}

.collaboration-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.collaboration-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.collaboration-cta::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    pointer-events: none;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 36px;
    color: white;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    font-size: 20px;
}

.collaboration-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
    padding: 120px 0;
    box-shadow: inset 0 0 200px rgba(45, 122, 237, 0.1);
}

.collab-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.collab-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.25;
    animation: pulse 10s infinite;
}

.collab-bg-glow-1 {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, hsla(215, 85%, 55%, 0.6) 0%, transparent 70%);
    top: -500px;
    left: 50%;
    transform: translateX(-50%);
}

.collab-bg-glow-2 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, hsla(260, 70%, 60%, 0.5) 0%, transparent 70%);
    bottom: -400px;
    right: -300px;
    animation-delay: 3s;
}

.collab-bg-glow-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, hsla(142, 70%, 50%, 0.4) 0%, transparent 70%);
    top: 50%;
    left: -300px;
    animation-delay: 6s;
}

.collab-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(hsla(215, 20%, 20%, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, hsla(215, 20%, 20%, 0.15) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}

.collab-hero-content {
    position: relative;
    z-index: 1;
}

.collab-hero-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.collab-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.collab-hero-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.collab-orgs-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.collab-org-item {
    text-align: center;
    transition: transform 0.4s ease;
}

.collab-org-item:hover {
    transform: translateY(-10px);
}

.collab-org-logo {
    width: 160px;
    height: 160px;
    border-radius: 24px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid var(--border-light);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.collab-org-item:hover .collab-org-logo {
    border-color: var(--primary);
    box-shadow: 0 20px 80px rgba(45, 122, 237, 0.4);
    transform: scale(1.05);
}

.collab-org-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
}

.collab-connector {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    font-size: 28px;
    color: white;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 10px 40px rgba(45, 122, 237, 0.3);
}

.collab-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 64px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.collab-stat {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    position: relative;
}

.collab-stat::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.collab-stat:hover::before {
    opacity: 0.5;
}

.collab-stat:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(45, 122, 237, 0.4);
}

.stat-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.stat-counter {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-plus {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #34dfeb, #3446eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4px;
    animation: plusPulse 2s ease-in-out infinite;
}

@keyframes plusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1); }
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collab-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.collab-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.collab-feature-pill:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(45, 122, 237, 0.3);
}

.collab-feature-pill i {
    font-size: 18px;
}

.footer {
    padding: 64px 0 32px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    color: var(--text);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 24px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .collab-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .organizations-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .org-card {
        padding: 32px 24px;
    }

    .org-stats {
        grid-template-columns: 1fr;
    }

    .collaboration-header h2 {
        font-size: 32px;
    }

    .collaboration-header p {
        font-size: 16px;
    }

    .collaboration-grid {
        grid-template-columns: 1fr;
    }

    .collaboration-feature {
        padding: 32px 24px;
    }

    .collaboration-cta {
        padding: 32px 24px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-text h3 {
        font-size: 24px;
    }

    .cta-text p {
        font-size: 14px;
    }

    .collab-hero-title {
        font-size: 40px;
    }

    .collab-hero-subtitle {
        font-size: 18px;
    }

    .collab-orgs-showcase {
        flex-direction: column;
        gap: 32px;
    }

    .collab-connector {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .collab-org-logo {
        width: 120px;
        height: 120px;
    }

    .collab-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-counter {
        font-size: 40px;
    }

    .stat-plus {
        font-size: 24px;
    }

    .collab-feature-pill {
        padding: 12px 20px;
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 1100px) {
    .organizations-grid {
        grid-template-columns: 1fr;
    }
}
