.best-banks__wrapper{
    padding-top: 70px;
    padding-bottom: 60px;
}
.best-banks__wrapper h2 {
	font-size: 35px;
	margin-bottom: 0;
}
.best-banks__wrapper .bank-cards {
    --bankPerRow: 4;
	--bankGap: 30px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 40px;
    gap: var(--bankGap);
}

.best-banks__wrapper .bank-cards .card {
    display: flex;
    flex-direction: column;
    gap: 19px;
    justify-content: space-between;
    padding: 30px;
    width: calc((100% - var(--bankGap) * (var(--bankPerRow) - 1)) / var(--bankPerRow));
    background: #FFF;
    box-shadow: 2px 6px 35px 0px rgba(0, 0, 0, 0.1)
}

.best-banks__wrapper .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.best-banks__wrapper .card-header img{
    width: 40px;
    aspect-ratio: 1;
}

.best-banks__wrapper .card-header .card-name__bank{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: none;
}

.best-banks__wrapper .card-header .card-name__bank h3 {
    margin: 0;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
}

.best-banks__wrapper .card-body{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.best-banks__wrapper .card-body .card-body__country{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}
.best-banks__wrapper .card-body .card-body__country img{
    width: 35px;
    aspect-ratio: 1;
}
.best-banks__wrapper .card-body .card-body__country span{
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.8px;
}
.best-banks__wrapper .card-body .card-body__desc{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: none;

    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.8px;
}

.best-banks__wrapper .card-body .card-body__price{
    color: #333;
    font-size: 14px;
    font-style: normal;
    line-height: 16.8px;
}
.best-banks__wrapper .card-body .card-body__price span:first-child{
    font-weight: 400;
}

.best-banks__wrapper .card-body .card-body__price span:nth-child(2){
    font-weight: 700;
}

.best-banks__wrapper .card-footer {
	margin-top: auto;
}

.best-banks__wrapper .details-btn {
    display: inline-block;
    padding: 10px 15px;
    color: #263F29;
    text-align: center;
    text-decoration: none;
    border: 1px solid #92CF33;
}

.best-banks__wrapper .details-btn:hover {
    background-color: #e0f7d4;
    color: #333;
    border-color: #81c784;
}

@media(max-width: 992px){
    .best-banks__wrapper .bank-cards {
        --bankPerRow: 2;
    }
}

@media(max-width: 540px){
    .best-banks__wrapper .bank-cards {
        --bankPerRow: 1;
    }
}


.best-banks__wrapper .bank-cards + p {
	display: flex;
	margin-top: 40px;
	margin-bottom: 0;
	color: #333;
	font-size: 15px;
}
.best-banks__wrapper .bank-cards + p:before {
	content: "*";
	margin-right: 4px;
}