﻿/* Share card */
.share-card{
  margin-top: 18px;
  border: 1px solid rgba(230,232,239,.95);
  background: white;
  border-radius: 18px;
  padding: 14px 14px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
}

.share-left{
  min-width: 210px;
}

.share-title{
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .2px;
}

.share-sub{
  margin-top: 4px;
  font-size: 12px;
  opacity: .75;
  line-height: 1.35;
}

.share-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
  align-items:center;
}

.share-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: inherit;
  padding: 8px 10px;
  border-radius: 12px;
  text-decoration:none;
  cursor:pointer;
  font-size: 12px;
  line-height: 1;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}

.share-btn svg{
  width:16px;
  height:16px;
  flex:0 0 auto;
  opacity:.9;
}

.share-btn:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-1px);
}

.share-btn:active{
  transform: translateY(0);
}

.share-btn:focus{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.10);
}

.share-toast{
  width: 100%;
  margin-top: 10px;
  font-size: 12px;
  opacity: .85;
}

@media (max-width: 780px){
  .share-card{
    flex-direction: column;
    align-items: stretch;
  }
  .share-left{
    min-width: 0;
  }
  .share-actions{
    justify-content:flex-start;
  }
}
