/**
 * @file
 * Article feedback styles.
 */
.vel-feedback {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 33px 0;
  border-top: 1px solid var(--vel-border);
  border-bottom: 1px solid var(--vel-border);
}

.vel-feedback__question {
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-base);
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.3125px;
  color: var(--vel-primary);
  text-align: center;
  margin: 0;
}

.vel-feedback__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.vel-feedback__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  color: var(--vel-bg-white);
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.vel-feedback__btn:hover {
  transform: translateY(-2px);
  color: var(--vel-bg-white);
}

.vel-feedback__btn:focus-visible {
  outline: 2px solid var(--vel-accent);
  outline-offset: 2px;
}

.vel-feedback__btn--facebook {
  background: #3B5998;
}

.vel-feedback__btn--twitter {
  background: #000000;
}

.vel-feedback__btn--linkedin {
  background: #0077B5;
}

.vel-feedback__btn--email {
  background: var(--vel-primary);
}

@media (min-width: 992px) {
  .vel-feedback {
    align-items: center;
  }
}
/*# sourceMappingURL=article-feedback.css.map */
