/* Custom styles for social sharing buttons and elements */
.social-share-wrap {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.social-share-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #8B8074;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4px;
}

.social-share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #E2D9C8;
  background: #FBF6EE;
  color: #5C5249;
  cursor: pointer;
  transition: all 180ms ease;
}

.social-btn:hover {
  background: #7A2E2E;
  color: #FBF6EE;
  border-color: #7A2E2E;
  transform: translateY(-2px);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
