.org-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s, transform 0.15s;
    padding: 16px 20px;
    margin-bottom: 12px;
}
.org-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}
.org-logo {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--primary, #e65100);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 600;
    flex-shrink: 0;
}
.org-info { min-width: 0; }
.org-info .org-name {
    margin: 0 0 4px 0;
    font-size: 17px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.org-info .org-inn {
    font-size: 12px;
    margin-bottom: 4px;
}
.org-info .org-about {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: var(--text-secondary, #777);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}
.org-info .org-verified {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
}
.org-stats {
    display: flex;
    gap: 24px;
    flex-shrink: 0;
    align-items: center;
}
.org-stats .stat-item {
    text-align: center;
    min-width: 72px;
    padding: 0;
}
.org-stats .stat-value {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary, #222);
}
.org-stats .stat-label {
    font-size: 11px;
    color: var(--text-secondary, #888);
    margin-top: 2px;
    text-transform: lowercase;
}
.org-stats .stat-item.melting .stat-value { color: #e65100; }

@media (max-width: 640px) {
    .org-card {
        grid-template-columns: auto 1fr;
        grid-template-areas: "logo info" "stats stats";
        gap: 12px;
    }
    .org-logo { grid-area: logo; }
    .org-info { grid-area: info; }
    .org-stats {
        grid-area: stats;
        justify-content: flex-start;
        padding-top: 8px;
        border-top: 1px solid var(--border, #eee);
        margin-top: 4px;
    }
}
