/* Feedback page overrides */

/* "Написать напрямую" heading — Peace Sans 20px, NOT Mono 11px block__title */
.feedback__contact-title {
  font: 400 20px 'Peace Sans';
  text-transform: uppercase;
  color: var(--text);
}

/* The "что нам особенно интересно" block title uses muted color, not section */
.feedback__interest-title {
  color: var(--text-muted);
}

/* Contact block gap: 16px */
.feedback__contact-block {
  gap: 16px;
}

/* Interest block gap: 10px */
.feedback__interest-block {
  gap: 10px;
}

/* Decorative icon in contact buttons */
.feedback__icon {
  font: 400 16px 'IBM Plex Mono';
  flex: none;
}

/* Contact buttons row */
.feedback__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Mail button */
.feedback__mail-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--on-accent);
  font: 400 15px 'Peace Sans';
}
.feedback__mail-btn:hover {
  color: var(--on-accent);
}