/* ===== SHARE BUTTON STYLING ===== */

.faulkner-share-button-container {
  position: relative;
  display: inline-block;
  margin: 0;
}

.faulkner-share-button {
  display: flex;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px 8px 0;
  transition: all 0.3s ease;
  font-family: var(--fira);
  font-weight: 700;
  font-size: var(--smallestFontMax);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faulkner-share-button:hover {
  opacity: 0.8;
}

.share-text {
  color: var(--Primary-Blue);
  font-weight: 700;
}

.faulkner-share-button .share-icon {
  width: 26px;
  height: 29px;
  transition: transform 0.3s ease;
}

.faulkner-share-button:hover .share-icon {
  transform: translateY(-2px);
}

/* Share dropdown */
.faulkner-share-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  background: white;
  border: 1px solid rgba(0, 93, 170, 0.2);
  border-radius: 8px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 7px 16px;
  display: flex;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-bottom: 8px;
}

.faulkner-share-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-decoration: none;
  color: var(--black);
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.share-option:hover {
  background-color: rgba(0, 93, 170, 0.05);
  color: var(--Primary-Blue);
}

.share-option .share-icon {
  font-size: 20px;
  width: 24px;
  height: 24px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-option .share-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--Primary-Blue);
}

.share-option.twitter .share-icon {
  width: 20px;
  height: 18px;
}

.share-option.twitter .share-icon svg {
  width: 20px;
  height: 18px;
}
