/* BlessSport matches */
.bs-matches-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bs-match-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    padding: 18px;
}

.bs-match-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.bs-match-card-date {
    font-size: 13px;
    color: #6b7280;
}

.bs-match-card-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
}

.bs-match-team {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bs-match-team-right {
    justify-content: flex-end;
    text-align: right;
}

.bs-match-team-logo {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.bs-match-team-name {
    font-weight: 600;
    line-height: 1.3;
}

.bs-match-score {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
}

.bs-badge-status.bs-status-scheduled {
    background: #eff6ff;
    color: #1d4ed8;
}

.bs-badge-status.bs-status-live {
    background: #ecfdf5;
    color: #047857;
}

.bs-badge-status.bs-status-completed {
    background: #f3f4f6;
    color: #374151;
}

.bs-badge-status.bs-status-postponed {
    background: #fff7ed;
    color: #c2410c;
}

@media (max-width: 767px) {
    .bs-match-card-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .bs-match-team,
    .bs-match-team-right {
        justify-content: center;
        text-align: center;
    }

    .bs-match-score {
        justify-content: center;
    }
}