.org-card {
    position: relative;
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid rgba(191, 201, 196, 0.7);
    box-shadow: 10px 10px 0 rgba(0, 52, 43, 0.12);
    min-height: 18.5rem;
}

.org-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 1rem;
    border-radius: 1.25rem 1.25rem 0 0;
    background: var(--accent, #00843d);
}

.org-avatar {
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 9999px;
    border: 4px solid var(--accent, #00843d);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 52, 43, 0.12);
}

.org-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.org-card hr {
    width: 100%;
    border: 0;
    border-top: 1px solid rgba(191, 201, 196, 0.7);
    margin: 1rem 0 0.75rem;
}

.org-accent-president {
    --accent: #0b8b52;
}

.org-accent-finance {
    --accent: #1d4ed8;
}

.org-accent-accounting {
    --accent: #0f766e;
}

.org-accent-legal {
    --accent: #7c3aed;
}

.org-accent-institutional {
    --accent: #2563eb;
}

.org-accent-projects {
    --accent: #c2410c;
}

.org-accent-advisory {
    --accent: #d97706;
}

.org-accent-fiscal {
    --accent: #a21caf;
}

.org-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.org-row-shell {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.org-row-shell-connected {
    margin-top: 0.25rem;
}

.org-row-connector {
    position: relative;
    width: 100%;
    height: 4rem;
}

.org-row-connector::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 1.75rem;
    transform: translateX(-50%);
    background: #85a89c;
}

.org-row-connector::after {
    content: "";
    position: absolute;
    left: 2rem;
    right: 2rem;
    top: 1.75rem;
    height: 2px;
    background: #85a89c;
    border-radius: 999px;
}

.org-row {
    display: grid;
    gap: 2rem;
    justify-content: center;
}

.org-row-cols-1 {
    grid-template-columns: minmax(0, 16rem);
}

.org-row-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 16rem));
}

.org-row-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 16rem));
}

.org-row-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 16rem));
}

.org-row .org-card,
.org-mobile-grid .org-card {
    width: 16rem;
}

@media (max-width: 1024px) {
    .org-mobile-grid .org-card {
        width: 100%;
    }
}
