.title-1 {
    font-weight: bolder;
    font-size: 1.5em;
    margin: 1em 0;
    padding: 0 15px;
    border-left: #A26D0A solid 5px;
}
.more-btn {
    font-size: .8em;
    color: #A26D0A;
    margin-left: 1em;
}
.card-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.card-list>div{
    width: 32%;
    margin-bottom: 15px;
    margin-right: 1%;
}
.card-1 {
    background-color: #fff;
    /*box-shadow: rgba(0, 0, 0, 0.05) 0 0 20px;*/
    border: #e1e4ec solid 1px;
    /*border: #d35400 solid 1px;*/
}
.card-1:hover {
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.05) 0 0 20px;
}
.card-1>div {
    padding: 1em;
}
.card-1 .card-header {
    font-size: 1.2em;
    /*border-bottom: #d35400 solid 2px;*/
    background-color: #f3ebe0;
    /*background-color: #e5e8ec;*/
    font-weight: bold;
}
.card-1 .card-body {
    font-size: .9em;
    line-height: 2em;
}
.card-1 .card-footer {
    font-size: .9em;
    border-top: rgba(0,0,0,.1) solid .5px;
    /*background-color: #e5e8ec;*/
}
.card-1 .card-body > span {
    font-weight: bold;
    color: #A26D0A;
}
.card-1 .card-body > p {
    color: #5c6670;
    /*font-style: italic;*/
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 6em;
}
.card-1 .card-footer > span::before {
    content: '📍';
}
.card-1 .card-header > span, .card-1 .card-footer > span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.card-header-content {
    display: flex;
    align-items: center;
}
.bank-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #A26D0A;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}
.card-body-content {
    display: flex;
    flex-direction: column;
}
.card-item {
    display: flex;
    margin: 5px 0;
}
.item-label {
    font-weight: bold;
    color: #A26D0A;
    min-width: 80px;
    margin-right: 10px;
}
.item-value {
    flex: 1;
}
.card-footer {
    display: flex;
    justify-content: space-between;
    padding: 15px 1em !important;
    border-top: rgba(0,0,0,.1) solid .5px;
    background-color: #f3ede1;
}
.footer-left, .footer-right {
    flex: 1;
    text-align: center;
}
.footer-left {
    border-right: 1px solid #d9c5a5;
}
.footer-label {
    font-size: .8em;
    color: #A26D0A;
    margin-bottom: 5px;
}
.footer-value {
    font-size: 1.2em;
    font-weight: bold;
    color: #A26D0A;
}
section {
    padding: 10px 0;
}