.banci-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
@media (max-width: 1100px) { .banci-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .banci-grid { grid-template-columns: 1fr; } }

.banca-card {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.07);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .18s, transform .15s, border-color .18s;
}
.banca-card:hover {
    box-shadow: 0 6px 24px rgba(41,128,185,.12);
    transform: translateY(-2px);
    border-color: #aac8e8;
}
.banca-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.banca-logo {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2980b9, #1a6fa0);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Roboto Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: .02em;
}
.banca-titlu {
    flex: 1;
    min-width: 0;
}
.banca-nume {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.3;
}
.banca-url {
    font-size: 12px;
    color: #2980b9;
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    display: block;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.banca-url:hover { text-decoration: underline; }
.banca-btn {
    flex-shrink: 0;
    background: #eef2f7;
    border: 1px solid #dde3ec;
    color: #2980b9;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: background .13s, border-color .13s;
    white-space: nowrap;
}
.banca-btn:hover {
    background: #2980b9;
    border-color: #2980b9;
    color: #fff;
}
.banca-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.banca-icon {
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}
.banca-text {
    font-size: 13px;
    color: #5a6178;
    line-height: 1.5;
}
.banca-data {
    font-size: 11px;
    color: #95a5a6;
    margin-top: 2px;
}

.banca-row-obs { align-items: flex-start; }
.banca-obs {
    font-size: 12px;
    color: #95a5a6;
    font-style: italic;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.banca-card:hover .banca-obs {
    -webkit-line-clamp: unset;
    overflow: visible;
}