.ba-list {
    display: grid;
    gap: 12px;
}
.ba-row {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: #121826;
    border: 1px solid #1f2937;
    transition: all 0.2s ease-in-out;
}
.ba-row:hover {
    background: #1a2234;
    border-color: #3b82f6;
    transform: translateY(-2px);
}
.ba-score {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-weight: 900;
}
.ba-score strong {
    font-size: 1.15rem;
}
.ba-score span {
    color: #9ca3af;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.ba-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ba-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.ba-copy strong {
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}
.ba-logo {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    background: #ffffff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ba-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.ba-brand h3,
.ba-promo strong {
    color: #ffffff;
    margin: 0;
}
.ba-brand span,
.ba-promo span,
.ba-feature span {
    color: #9ca3af;
    font-size: 0.88rem;
}
.ba-promo strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 800;
    margin-bottom: 4px;
}
.ba-feature {
    display: flex;
    align-items: center;
}
.ba-feature span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    font-size: 0.76rem;
    font-weight: 700;
}
.ba-action a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.04em;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.35);
}
.ba-related-grid {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}
.ba-related-grid a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    background: #121826;
    border: 1px solid #1f2937;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}
@media (min-width: 900px) {
    .ba-row {
        grid-template-columns: 90px 1fr 1fr 180px;
        align-items: center;
    }
}
