/* Common styles shared across the public website */

:root {
  --brand-orange: #f28b2a;
  --brand-orange-dark: #d97a1f;
  --brand-orange-hover: #d97a1f;
}

/* =====================
   CTA Button
   ===================== */

.cta-button {
  display: inline-block;
  padding: 1em 2em;
  border: none;
  border-radius: 30px;
  background-color: #f28b2a;
  color: #ffffff;
  cursor: pointer;
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #d97a1f;
}

/* =====================
   Pricing CTA (inline link styled as button)
   ===================== */

a.pricing-cta {
  padding: 0.5em;
  border: none;
  border-radius: 30px;
  background-color: #f28b2a;
  color: #ffffff;
  cursor: pointer;
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin-top: 0.4em;
}

/* =====================
   Avatar
   ===================== */

.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 10px;
}

.avatar-neo {
  background-color: #f28b2a;
  background-image: url(/static/images/animations/neo.svg);
}