/* ═══════════════════════════════════════════════════════════════
   BRN Member Cards
   ═══════════════════════════════════════════════════════════════ */

.brn-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    max-width: 420px;
}

.brn-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

/* Photo */
.brn-card__photo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
}

.brn-org-card .brn-card__photo {
    border-radius: 8px;
    background: #f0f0ee; /* grey fallback shows when logo doesn't fill the box */
}

/* Rep headshots: cover (circular crop, fills box) */
.brn-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Org logos: contain + padding so full logo is always visible */
.brn-org-card .brn-card__photo img {
    object-fit: contain;
    padding: 6px;
    box-sizing: border-box;
}

/* Placeholder initials circle */
.brn-card__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1d5db;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4b5563;
    letter-spacing: 0.05em;
}

/* Info */
.brn-card__info {
    flex: 1;
    min-width: 0;
}

.brn-card__label {
    margin: 0 0 2px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.brn-card__name {
    margin: 0 0 2px;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.brn-card__title {
    margin: 0 0 4px;
    font-size: 0.85rem;
    color: #6b7280;
}

.brn-card__cta {
    margin: 4px 0 0;
    font-size: 0.8rem;
    font-weight: 600;
    color: #2563eb;
}

/* Responsive */
@media ( max-width: 480px ) {
    .brn-card {
        gap: 12px;
        padding: 14px 16px;
    }
    .brn-card__photo {
        width: 56px;
        height: 56px;
    }
}
