/* ===== ORGANIZERS SECTION ===== */
.org-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Card */
.org-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(22, 47, 102, 0.04);
    transition: all 0.4s var(--transition-smooth);
    animation: orgFadeInUp 0.8s ease-out both;
}

.org-card:hover {
    border-color: rgba(0, 139, 69, 0.2);
    box-shadow: 0 12px 40px rgba(22, 47, 102, 0.08);
    transform: translateY(-4px);
}

.org-card:nth-child(1) {
    animation-delay: 0.3s;
}

.org-card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Layout */
.org-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.org-row.reverse {
    direction: rtl;
}

.org-row.reverse>* {
    direction: ltr;
}

/* Logo Box */
.org-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border-radius: 20px;
    background: var(--light);
    border: 1px solid var(--light-gray);
    padding: 32px;
    transition: all 0.4s var(--transition-smooth);
}

.org-logo-wrap:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 139, 69, 0.08);
}

.org-logo-wrap img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
}

/* Typography */
.org-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.org-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.org-link {
    display: inline-block;
    font-size: 15px;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.org-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-gold));
    transition: width 0.3s ease;
}

.org-link:hover {
    color: var(--accent-gold);
}

.org-link:hover::after {
    width: 100%;
}

/* Social Icons */
.org-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.org-social {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.org-social i {
    font-size: 16px;
    color: var(--gray);
    transition: color 0.3s;
}

.org-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(22, 47, 102, 0.08);
}

/* Social Brand Colors on Hover */
.org-social.linkedin:hover {
    border-color: #0a66c2;
    background: rgba(10, 102, 194, 0.08);
}

.org-social.linkedin:hover i {
    color: #0a66c2;
}

.org-social.twitter:hover {
    border-color: #1da1f2;
    background: rgba(29, 161, 242, 0.08);
}

.org-social.twitter:hover i {
    color: #1da1f2;
}

.org-social.instagram:hover {
    border-color: #e4405f;
    background: rgba(228, 64, 95, 0.08);
}

.org-social.instagram:hover i {
    color: #e4405f;
}

.org-social.facebook:hover {
    border-color: #1877f2;
    background: rgba(24, 119, 242, 0.08);
}

.org-social.facebook:hover i {
    color: #1877f2;
}

.org-social.youtube:hover {
    border-color: #ff0000;
    background: rgba(255, 0, 0, 0.08);
}

.org-social.youtube:hover i {
    color: #ff0000;
}

.org-social.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.08);
}

.org-social.whatsapp:hover i {
    color: #25d366;
}

.org-social.wechat:hover {
    border-color: #07c160;
    background: rgba(7, 193, 96, 0.08);
}

.org-social.wechat:hover i {
    color: #07c160;
}

/* Animations */
@keyframes orgFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .org-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .org-row.reverse {
        direction: ltr;
    }

    .org-card {
        padding: 32px 24px;
    }

    .org-logo-wrap {
        min-height: 140px;
    }

    .org-name {
        font-size: 22px;
    }
}