.infopaisa-results{
display:grid;
gap:20px;
}

@media(min-width:1200px){
.infopaisa-results{
grid-template-columns:repeat(4,1fr);
}
}

@media(min-width:768px) and (max-width:1199px){
.infopaisa-results{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:767px){
.infopaisa-results{
grid-template-columns:1fr;
}
}

/* =========================================
UNLOCKED OFFER CARD
========================================= */

.unlocked-card{
background:#ffffff;
border:1px solid #e5e7eb;
border-radius:24px;
overflow:hidden;
box-shadow:0 6px 20px rgba(0,0,0,.08);
position:relative;
height:100%;
display:flex;
flex-direction:column;
}

/* =========================================
TOP BADGE
========================================= */

.unlocked-card .offer-top-badge{
position:absolute;
top:0;
right:0;
background:#0046ff;
color:#ffffff;
font-size:13px;
font-weight:700;
padding:10px 18px;
border-radius:0 24px 0 18px;
z-index:5;
}

/* =========================================
TOP SECTION
40% BANK
60% OFFER
========================================= */

.unlocked-card .offer-top-section{
display:grid;
grid-template-columns:40% 60%;
align-items:center;
gap:12px;
padding:55px 15px 15px;
}

/* =========================================
BANK COLUMN
========================================= */

.unlocked-card .offer-bank-column{
text-align:center;
border-right:1px solid #e5e7eb;
padding-right:12px;
}

.unlocked-card .offer-bank-logo-large{
width:70px;
height:70px;
object-fit:contain;
display:block;
margin:0 auto 10px;
}

.unlocked-card .offer-bank-name-large{
font-size:15px;
font-weight:800;
line-height:1.3;
color:#111827;
margin-bottom:8px;
}

.unlocked-card .offer-trusted-badge{
display:inline-block;
padding:5px 10px;
background:#ecfdf5;
color:#16a34a;
font-size:11px;
font-weight:700;
border-radius:8px;
}

/* =========================================
LOAN COLUMN
========================================= */

.unlocked-card .offer-title{
font-size:12px;
color:#6b7280;
margin-bottom:6px;
}

.unlocked-card .offer-amount{
font-size:34px;
font-weight:900;
line-height:1;
color:#0046ff;
margin-bottom:10px;
}

.unlocked-card .offer-score-row{
font-size:13px;
margin-bottom:8px;
color:#374151;
}

.unlocked-card .offer-score-row strong{
color:#16a34a;
font-size:18px;
margin-left:4px;
}

.unlocked-card .offer-match-label{
display:inline-block;
padding:6px 12px;
background:#ecfdf5;
color:#16a34a;
font-size:12px;
font-weight:700;
border-radius:10px;
}

/* =========================================
DIVIDER
========================================= */

.unlocked-card .offer-divider{
height:1px;
background:#e5e7eb;
}

/* =========================================
STATS
========================================= */

.unlocked-card .offer-stats-row{
display:grid;
grid-template-columns:repeat(3,1fr);
}

.unlocked-card .offer-stat-box{
padding:14px 10px;
text-align:center;
}

.unlocked-card .offer-stat-box:not(:last-child){
border-right:1px solid #e5e7eb;
}

.unlocked-card .offer-stat-box span{
display:block;
font-size:11px;
color:#6b7280;
margin-bottom:5px;
}

.unlocked-card .offer-stat-box strong{
font-size:14px;
font-weight:800;
color:#111827;
}

/* =========================================
BUTTONS
========================================= */

.unlocked-card .offer-actions-row{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
padding:15px;
}

.unlocked-card .chat-expert-btn{
height:48px;
border:2px solid #0046ff;
border-radius:12px;
background:#ffffff;
color:#0046ff;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
font-size:13px;
font-weight:700;
}

.unlocked-card .claim-now-btn-new{
height:48px;
border-radius:12px;
background:#0046ff;
color:#ffffff;
text-decoration:none;
display:flex;
align-items:center;
justify-content:center;
font-size:13px;
font-weight:700;
}

/* =========================================
TRUST FOOTER
========================================= */

.unlocked-card .offer-footer-trust{
margin-top:auto;
border-top:1px solid #e5e7eb;
display:grid;
grid-template-columns:repeat(3,1fr);
}

.unlocked-card .offer-footer-trust span{
padding:10px;
font-size:11px;
font-weight:700;
text-align:center;
color:#16a34a;
}

.unlocked-card .offer-footer-trust span:not(:last-child){
border-right:1px solid #e5e7eb;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:767px){

.unlocked-card .offer-top-section{
grid-template-columns:35% 65%;
}

.unlocked-card .offer-bank-logo-large{
width:55px;
height:55px;
}

.unlocked-card .offer-bank-name-large{
font-size:13px;
}

.unlocked-card .offer-amount{
font-size:28px;
}

.unlocked-card .offer-actions-row{
grid-template-columns:1fr 1fr;
}

.unlocked-card .offer-footer-trust{
grid-template-columns:repeat(3,1fr);
}

.unlocked-card .offer-footer-trust span{
border-right:none !important;
border-bottom:1px solid #e5e7eb;
}

}
