/* ============================
   ФИЛЬТРЫ
   ============================ */
.bonus-filters {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bonus-filters a {
  padding: 6px 14px;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: #fff;
  color: #0743ff;
  text-decoration: none;
  font-size: 13px;
  transition: border-color .2s, color .2s;
}
.bonus-filters a:hover,
.bonus-filters a.active {
  background: #fff;
  color: #0743ff;
  border-color: #0743ff;
}

/* ============================
   СЕТКА КАРТОЧЕК
   ============================ */
.bonus-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ============================
   КАРТОЧКА
   ============================ */
.bonus-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 0 1px #ddd;
  transition: box-shadow .3s;
}
.bonus-card:hover {
  box-shadow: 0 0 0 2px #000;
}

/* ============================
   ЛОГОТИП
   ============================ */
.bonus-logo {
  text-align: center;
  margin-bottom: 12px;
}
.bonus-logo img {
  display: inline-block;
  width: 134px;
  height: 60px;
  object-fit: contain;
}

/* ============================
   ВЕРХ КОНТЕНТА
   ============================ */
.bonus-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px; /* отступ перед футером */
}
.bonus-category {
  margin: 0;
  font-size: 13px;
  color: #999;
  text-transform: uppercase;
}
.bonus-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}
.bonus-description {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

/* ============================
   ФУТЕР (ПРИЖИМАЕМ К НИЗУ)
   ============================ */
.bonus-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}
.bonus-promo {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}

/* ============================
   КНОПКА
   ============================ */
.bonus-btn {
  padding: 10px 15px;
  border: 2px solid #000;
  border-radius: 6px;
  background: #fff;
  color: #0743ff;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: border-color .2s, color .2s;
}
.bonus-btn:hover {
  background: #fff;
  color: #0743ff;
  border-color: #0743ff;
}

/* ============================
   КНОПКА «ПОКАЗАТЬ ЕЩЁ»
   ============================ */
.bonus-more-wrap {
  text-align: center;
  margin: 30px 0;
}

/* ============================
   АДАПТИВ
   ============================ */
@media (max-width: 600px) {
  .bonus-cards-grid {
    grid-template-columns: 1fr;
  }
}
