.dle-share {
  margin: 25px 0;
  padding: 18px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: #fff;
}

.dle-share__label {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

.dle-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dle-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.dle-share__btn:hover {
  transform: translateY(-2px);
  opacity: .92;
  text-decoration: none;
  color: #fff;
}

.dle-share__btn:focus {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.dle-share__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 18px;
}

.dle-share__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.dle-share__text {
  line-height: 1;
}

.dle-share__btn--facebook { background: #1877f2; }
.dle-share__btn--x { background: #111111; }
.dle-share__btn--telegram { background: #229ed9; }
.dle-share__btn--whatsapp { background: #25d366; }
.dle-share__btn--vk { background: #0077ff; }
.dle-share__btn--linkedin { background: #0a66c2; }

.dle-share__btn--copy {
  background: #f3f4f6;
  color: #111;
}

.dle-share__btn--copy:hover {
  color: #111;
}

.dle-share__notice {
  margin-top: 12px;
  min-height: 18px;
  font-size: 13px;
  color: #0a7a2f;
}

@media (max-width: 640px) {
  .dle-share__list {
    flex-direction: column;
  }

  .dle-share__btn {
    width: 100%;
    justify-content: center;
  }
}