/* RIK kereső – Flex rács + soronkénti gomb (Grid/@supports nélkül) */
.rik-cards{display:flex;flex-wrap:wrap;gap:22px;align-items:stretch}
.rik-cards .rik-card{flex:1 1 360px;min-width:300px;max-width:32%}

/* Kártya: bal 180px (banner), jobb rugalmas (sorok) */
.rik-card{
  background:#fff;border:1px solid #e6e9ef;border-radius:12px;box-shadow:0 1px 3px rgba(0,0,0,.05);
  display:flex
}
.rik-card-left{flex:0 0 180px;border-right:1px solid #eef2f7}
.rik-card-right{flex:1 1 auto;min-width:0;padding:12px 14px}

.rik-card-left-inner{padding:12px 14px;display:flex;flex-direction:column;gap:10px;height:100%}
.rik-lead{font-weight:600;color:#111;line-height:1.2}
.rik-banner-wrap{
  background:#f7f9fc;border:1px solid #eef2f7;border-radius:8px;height:120px;
  display:flex;align-items:center;justify-content:center;overflow:hidden
}
.rik-banner-wrap img{max-width:100%;max-height:100%;object-fit:contain;display:block}

.rik-lines{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px}
.rik-line{display:flex;align-items:center;justify-content:space-between;gap:12px;background:#f8faff;border:1px solid #e8eef9;border-radius:10px;padding:8px 10px}
.rik-q{font-size:.95rem;color:#0b1f4d;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.rik-btn{background:#0d6efd;color:#fff;padding:7px 12px;border-radius:9px;text-decoration:none;font-size:.9rem;font-weight:700;line-height:1;white-space:nowrap}
.rik-btn:hover{background:#0b5ed7}

@media (max-width:620px){
  .rik-card{flex-direction:column}
  .rik-card-left{border-right:none;border-bottom:1px solid #eef2f7}
}


/* KÉT HASÁBOS KIOSZTÁS bent a kártyán */
.rik-card{
  display:grid !important;
  grid-template-columns: 180px 1fr !important;
  column-gap: 12px;
}

/* Kis mobilon mehet oszloposra */
@media (max-width:480px){
  .rik-card{
    grid-template-columns: 1fr !important;
  }
  .rik-card-left{
    border-right: none;
    border-bottom: 1px solid #eef2f7;
  }
}