/* ==================== SIMPLE ORG CARD - CLEAN HORIZONTAL ==================== */
.modern-org-card {
    display: block;
    background: #fff;
    border-left: 4px solid #015266;
    border-radius: 8px;
    padding: 24px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(1, 82, 102, 0.08);
    height: 100%;
    position: relative;
}

.modern-org-card:hover {
    border-left-color: #a2b910;
    box-shadow: 0 8px 20px rgba(1, 82, 102, 0.15);
    transform: translateX(5px);
}

/* Hide icon - tidak perlu */
.org-card-icon {
    display: none;
}

.org-card-content {
    width: 100%;
}

.org-card-content h5 {
    color: #015266;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.modern-org-card:hover .org-card-content h5 {
    color: #a2b910;
}

.org-leader {
    color: #015266;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.75;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.org-leader svg {
    fill: #a2b910;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Hide arrow - tidak perlu */
.org-card-arrow {
    display: none;
}

/* Badge indicator */
.modern-org-card::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #015266;
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0;
    transition: all 0.3s ease;
}

.modern-org-card:hover::after {
    opacity: 0.3;
    right: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .modern-org-card {
        padding: 20px 24px;
    }

    .org-card-content h5 {
        font-size: 1.05rem;
    }

    .org-leader {
        font-size: 0.85rem;
    }
}