/* Хаб тендеров — адаптивная сетка карточек. */

/* Фильтр-чипы (аванс + сферы) */
.hub-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 20px;
}
.hub-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:13.5px;
  font-weight:700;
  text-decoration:none;
  padding:7px 14px;
  border-radius:22px;
  background:#eef2f7;
  color:#0D3B66;
  border:1px solid transparent;
  transition:background .15s ease, border-color .15s ease;
}
.hub-chip:hover{ background:#e1e8f0; }
.hub-chip:focus-visible{ outline:3px solid rgba(4,119,179,.5); outline-offset:2px; }
.hub-chip--active{ background:#0D3B66; color:#fff; }
.hub-chip--avans{ background:#e4f4ec; color:#1f9b57; }
.hub-chip--avans:hover{ background:#d5efe0; }
.hub-chip--avans.hub-chip--active{ background:#1f9b57; color:#fff; }

/* Подвал перелинковки по сферам */
.hub-seolinks{
  margin:26px 0 6px;
  padding:20px 22px;
  background:#f5f8fb;
  border:1px solid #e1e8f0;
  border-radius:14px;
}
.hub-seolinks__title{
  font-size:16px;
  font-weight:800;
  color:#0b1c2e;
  margin-bottom:12px;
}
.hub-seolinks__grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:6px 22px;
}
.hub-seolinks__grid a{
  color:#0D3B66;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  padding:3px 0;
  border-bottom:1px solid transparent;
}
.hub-seolinks__grid a:hover{ border-bottom-color:#0D3B66; }
.hub-seolinks__grid a:focus-visible{ outline:3px solid rgba(4,119,179,.5); outline-offset:2px; }

/* Бейдж сферы на карточке */
.hub-card__sphere{
  align-self:flex-start;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:#0D3B66;
  background:#e7eef5;
  padding:3px 9px;
  border-radius:6px;
}

.hub-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:18px;
  margin:6px 0 10px;
}
.hub-card{
  display:flex;
  flex-direction:column;
  gap:9px;
  background:#fff;
  border:1px solid #e1e8f0;
  border-radius:14px;
  padding:20px 20px 18px;
  text-decoration:none;
  color:inherit;
  transition:box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.hub-card:hover{
  border-color:#c2d3e6;
  box-shadow:0 8px 24px rgba(13,59,102,.12);
  transform:translateY(-2px);
}
.hub-card:focus-visible{
  outline:3px solid rgba(4,119,179,.5);
  outline-offset:2px;
}
.hub-card__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.hub-card__num{
  font-size:13px;
  font-weight:800;
  color:#0D3B66;
}
.hub-card__date{
  font-size:12px;
  font-weight:700;
  color:#6b7889;
  background:#eef2f7;
  padding:3px 9px;
  border-radius:20px;
  white-space:nowrap;
}
.hub-card__object{
  font-size:16px;
  font-weight:700;
  line-height:1.32;
  color:#0b1c2e;
  margin:0;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.hub-card__customer{
  font-size:13.5px;
  color:#586074;
  line-height:1.4;
  margin:0;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.hub-card__spacer{ flex:1 1 auto; min-height:4px; }
.hub-card__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  padding-top:12px;
  border-top:1px solid #eef2f7;
}
.hub-card__price{
  font-size:17px;
  font-weight:800;
  color:#0b1c2e;
}
.hub-card__prepay{
  font-size:12px;
  font-weight:800;
  color:#1f9b57;
  background:#e4f4ec;
  padding:4px 10px;
  border-radius:20px;
  white-space:nowrap;
}
.hub-card__link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:800;
  color:#C10E0E;
}
.hub-card__link span{ transition:transform .18s ease; }
.hub-card:hover .hub-card__link span{ transform:translateX(4px); }
@media(max-width:600px){
  .hub-grid{ grid-template-columns:1fr; gap:14px; }
  .hub-card__object{ font-size:15px; }
}
