﻿    /* Organizations Page Specific Styles - Common styles moved to common.css */

    /* Organization banner (details page) */
    .org-banner {
        border-radius: 16px;
        overflow: hidden;
    }

    .org-banner-img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

    @media (max-width: 768px) {
        .org-banner-img {
            height: 180px;
        }
    }

    /* Organization logo in card list (index page) */
    .org-card-logo {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        flex-shrink: 0;
    }

    /* Override page-container max-width for organizations */
    .page-container {
        max-width: 1200px;
    }

    .page-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .page-header h1 {
        font-size: 42px;
        color: #2d3748;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .page-header p {
        font-size: 20px;
        color: #718096;
    }

    .content-section {
        background: #f7fafc;
        padding: 80px 40px;
        border-radius: 12px;
        text-align: center;
    }

    .info-text {
        font-size: 18px;
        color: #4a5568;
        margin: 0;
    }

    .organizations-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 24px;
    }

    .organization-card {
        background: white;
        border-radius: 12px;
        padding: 24px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
    }

    .organization-card:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        transform: translateY(-2px);
    }

    .org-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
        gap: 12px;
    }

    .org-header h2 {
        font-size: 24px;
        color: #2d3748;
        margin: 0;
        font-weight: 600;
        line-height: 1.3;
    }

    .badge {
        padding: 4px 12px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .badge-active {
        background: #c6f6d5;
        color: #22543d;
    }

    .org-description {
        color: #4a5568;
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .org-details {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .detail-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        color: #4a5568;
        font-size: 14px;
    }

    .detail-item svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        margin-top: 2px;
        color: #718096;
    }

    .detail-item a {
        color: #4299e1;
        text-decoration: none;
        transition: color 0.2s;
    }

    .detail-item a:hover {
        color: #2b6cb0;
        text-decoration: underline;
    }

    .view-details {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
        margin-top: 20px;
        padding-top: 16px;
        border-top: 1px solid #e2e8f0;
        color: #4299e1;
        font-size: 14px;
        font-weight: 600;
    }

    .view-details svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
    }

    .organization-card:hover .view-details svg {
        transform: translateX(4px);
    }

    @media (max-width: 768px) {
        .organizations-grid {
            grid-template-columns: 1fr;
        }

        .page-header h1 {
            font-size: 32px;
        }

        .page-header p {
            font-size: 16px;
        }
    }

