/* ============================================================
   Shared responsive card styles
   Used by list pages (Clubs, Teams, Players, Training, etc.)
   Table shown on lg+, cards shown below lg.
   ============================================================ */

.resp-card-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.resp-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.resp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    flex-wrap: wrap;
}

.resp-card-header .resp-card-title {
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.resp-card-header .resp-card-badges {
    display: flex;
    gap: 0.3rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.resp-card-body {
    padding: 0.6rem 0.85rem;
    font-size: 0.875rem;
}

.resp-card-body .resp-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    padding: 0.2rem 0;
    color: #495057;
}

.resp-card-body .resp-row .resp-label {
    color: #6c757d;
    font-size: 0.78rem;
    flex-shrink: 0;
    min-width: 5rem;
}

.resp-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.6rem 0.85rem;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}
