.card-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding-top:16px;
  margin-top:18px;
  border-top:1px solid #e7eef6;
}

.share-btn,
.share-whatsapp,
.share-email,
.copy-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  padding:0;
  border:1px solid #dce8f4;
  border-radius:999px;
  background:#f7fbff;
  color:var(--public-blue);
  font-size:0;
  font-weight:800;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.share-btn:hover,
.share-whatsapp:hover,
.share-email:hover,
.copy-link:hover{
  transform:translateY(-1px);
  background:#edf5fb;
  border-color:#bfd7ec;
}

.share-btn i,
.share-whatsapp i,
.share-email i,
.copy-link i{
  font-size:16px;
  line-height:1;
  color:var(--ccdres-blue);
}

.copy-link.is-copied{
  background:#ebfbf2;
  border-color:#bde5d0;
  color:var(--public-green);
}

.copy-link.is-copied i{
  color:var(--public-green);
}

.card-actions .copy-label{
  display:none;
}

@media (max-width:640px){
  .card-actions{
    gap:6px;
  }

  .share-btn,
  .share-whatsapp,
  .share-email,
  .copy-link{
    flex:0 0 auto;
  }
}
