/* DohoHub — Hot Deals карточки/сетка (главная и страница /deals).
   Использует CSS-переменные темы, определённые в :root каждой страницы. */
.deals-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(265px,1fr)); gap:14px; margin-bottom:44px; }
.hotdeal { display:flex; flex-direction:column; background:var(--bg2); border:1px solid rgba(245,158,11,0.25); border-radius:13px; padding:16px 17px; text-decoration:none; position:relative; overflow:hidden; transition:all 0.2s; }
.hotdeal::before { content:''; position:absolute; top:0; left:0; right:0; height:2px; background:linear-gradient(90deg,#f59e0b,#fbbf24); }
.hotdeal:hover { border-color:rgba(245,158,11,0.5); transform:translateY(-2px); background:var(--bg3); }
.hotdeal-top { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:11px; min-height:22px; }
.hotdeal-badge { display:inline-block; background:rgba(245,158,11,0.13); color:#fbbf24; border:1px solid rgba(245,158,11,0.28); border-radius:5px; padding:3px 9px; font-size:11px; font-weight:600; font-family:var(--font-mono, monospace); }
.hotdeal-fire { font-size:15px; flex-shrink:0; }
.hotdeal-title { font-family:var(--font-display, inherit); font-size:15px; font-weight:700; color:var(--text); line-height:1.3; margin-bottom:5px; }
.hotdeal-desc { font-size:12px; color:var(--text2); line-height:1.55; margin-bottom:12px; flex:1; }
.hotdeal-foot { display:flex; align-items:center; gap:8px; flex-wrap:wrap; margin-top:auto; }
.hotdeal-code { font-family:var(--font-mono, monospace); font-size:11px; font-weight:600; color:var(--accent3); background:rgba(16,185,129,0.1); border:1px dashed rgba(16,185,129,0.4); border-radius:5px; padding:2px 8px; }
.hotdeal-ends { font-family:var(--font-mono, monospace); font-size:11px; color:var(--text3); }
.hotdeal-prov { font-size:11px; color:var(--text3); }
.hotdeal-go { font-size:12px; font-weight:600; color:var(--accent); margin-left:auto; }
@media(max-width:700px){ .deals-grid { grid-template-columns:1fr; } }
