.crd-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid #d7dde7;
}

.crd-share__label {
  color: #667085;
  font-size: 0.94rem;
  font-weight: 800;
}

.crd-share__button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid #d7dde7;
  border-radius: 8px;
  padding: 0 14px;
  color: #18202b;
  background: #fff;
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.crd-share__button:hover {
  border-color: rgba(10, 111, 111, 0.35);
  box-shadow: 0 10px 24px rgba(24, 32, 43, 0.1);
  transform: translateY(-1px);
}

.crd-share__button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.crd-share__button--facebook span {
  background: #1877f2;
}

.crd-share__button--whatsapp span {
  background: #128c7e;
}

.crd-share__button--instagram span {
  background: linear-gradient(135deg, #833ab4, #e1306c 52%, #f77737);
}

.crd-share__status {
  color: #0a6f6f;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 560px) {
  .crd-share {
    align-items: stretch;
  }

  .crd-share__label,
  .crd-share__status {
    width: 100%;
  }

  .crd-share__button {
    flex: 1 1 150px;
    justify-content: center;
  }
}
