.support-page {
  max-width: 1120px;
  margin: 24px auto 40px;
}

.support-header {
  margin-bottom: 24px;
}

.support-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

.support-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

.support-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px 20px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.support-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: #f3f4f6;
  color: #111827;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Основной зеленый */
.support-chip--primary {
  background: rgba(29, 221, 157, 0.12);
  color: #1DDD9D;
}

.support-tag {
  font-size: 11px;
  color: #6b7280;
  white-space: nowrap;
}

.support-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.support-card-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #4b5563;
}

.support-meta {
  margin: 4px 0 10px;
  padding: 0;
}

.support-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  color: #4b5563;
}

.support-meta-row dt {
  margin: 0;
  font-weight: 500;
  color: #6b7280;
}

.support-meta-row dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

/* Кнопка */
.support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: #1DDD9D;
  color: #ffffff;
  cursor: pointer;
  margin-top: auto;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
}

.support-btn:hover {
  background: #17c98d;
  box-shadow: 0 10px 20px rgba(29, 221, 157, 0.35);
  transform: translateY(-1px);
}

/* Вторичная кнопка */
.support-btn--ghost {
  background: #f9fafb;
  color: #111827;
  border: 1px solid #e5e7eb;
}

.support-btn--ghost:hover {
  background: #e8fff7;
  border-color: #1DDD9D;
  box-shadow: 0 8px 18px rgba(29, 221, 157, 0.25);
}





/* блок с идеями */

.support-ideas {
  margin-top: 32px;
}

.support-ideas-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.support-ideas-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.support-ideas-link {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #1DDD9D;
  color: #059669;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(29, 221, 157, 0.08);
  transition: background 0.1s ease, color 0.1s ease, box-shadow 0.1s ease,
    transform 0.1s ease;
}

.support-ideas-link:hover {
  background: #e9fff7;
  transform: translateY(-1px);
}

/* сетка таких же карточек, но можно немного уменьшить размер */

.support-grid--ideas {
  margin-top: 4px;
}

/* модификаторы для карточек идей */

.support-card--idea .support-card-title {
  font-size: 15px;
}

/* чипы по типу */

.support-chip--kind-idea {
  background: rgba(29, 221, 157, 0.12);
  color: #0f766e;
}

.support-chip--kind-bug {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.support-chip--kind-other {
  background: #f3f4f6;
  color: #4b5563;
}

/* статус заявки */

.support-tag--status-new {
  background: #e5f0ff;
  color: #1d4ed8;
}

.support-tag--status-in_progress {
  background: #fff7e5;
  color: #b45309;
}

.support-tag--status-rejected {
  background: #fee2e2;
  color: #b91c1c;
}

.support-tag--status-done {
  background: #dcfce7;
  color: #15803d;
}

/* мета-инфа под текстом идеи */

.support-idea-meta {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.support-idea-author {
  font-weight: 500;
}

.support-idea-dot {
  font-size: 14px;
}

.support-idea-votes {
  white-space: nowrap;
}

/* адаптив */

@media (max-width: 768px) {
  .support-ideas-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-ideas-link {
    align-self: stretch;
    text-align: center;
  }
}

.support-ideas {
  margin-top: 32px;
}

.support-ideas-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.support-ideas-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.support-ideas-subtitle {
  margin: 4px 0;
  font-size: 13px;
  color: #6b7280;
}

.support-ideas-bonus {
  margin: 0;
  font-size: 12px;
  color: #059669;
}

.support-ideas-bonus span {
  font-weight: 600;
}

.support-ideas-link {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #1DDD9D;
  color: #059669;
  text-decoration: none;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(29, 221, 157, 0.08);
  white-space: nowrap;
  align-self: center;
  transition: background 0.1s ease, color 0.1s ease, box-shadow 0.1s ease,
    transform 0.1s ease;
}

.support-ideas-link:hover {
  background: #e9fff7;
  transform: translateY(-1px);
}

.support-ideas-list {
  margin-top: 4px;
}

/* слегка уплотним карточки идей на странице поддержки */
.support-idea-card {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
  .support-ideas-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-ideas-link {
    align-self: stretch;
    text-align: center;
  }
}

