@charset "UTF-8";
/**
 * @file
 * Share buttons styles — icons variant only (v2).
 */
.vel-share {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vel-share__label {
  font-family: var(--vel-font-body);
  font-size: var(--vel-text-base);
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.1504px;
  color: var(--vel-primary);
  margin: 0;
}

.vel-share__buttons {
  display: flex;
  gap: 12px;
}

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

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

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

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

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

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

.vel-share__btn--email {
  background: var(--vel-primary);
  border-radius: 10px;
}

.vel-share__btn--lg {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.vel-share__btn--lg svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   lg (992px) — Desktop
   ========================================================================== */
@media (min-width: 992px) {
  .vel-share__label {
    font-size: var(--vel-text-sm);
  }
}
/*# sourceMappingURL=share-buttons.css.map */
