/* Shared article share toolbar — used across News, Charcha, Gen-Z, Lifestyle modals */

.article-share-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 14px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #f4f7ff 0%, #fff 100%);
  border: 1px solid rgba(0, 55, 255, 0.12);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 55, 255, 0.06);
}

.article-share-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #555;
  padding-top: 6px;
  flex-shrink: 0;
}

.article-share-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-end;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 24px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  color: #0037ff;
  border-color: rgba(0, 55, 255, 0.25);
}

.share-btn-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.share-btn-whatsapp:hover { border-color: #25d366; color: #128c41; }
.share-btn-facebook:hover { border-color: #1877f2; color: #1877f2; }
.share-btn-twitter:hover { border-color: #000; color: #000; }
.share-btn-telegram:hover { border-color: #0088cc; color: #0088cc; }
.share-btn-linkedin:hover { border-color: #0a66c2; color: #0a66c2; }
.share-btn-email:hover { border-color: #666; color: #444; }

.share-btn-copy.is-copied,
.share-btn-native.is-copied {
  background: linear-gradient(90deg, #e8f7ee, #f6fff9);
  border-color: #2e9b55;
  color: #1d6b3a;
}

.article-modal-excerpt {
  color: #666;
  margin: 0 0 12px;
}

.article-modal-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.article-modal-gallery img {
  max-width: 100%;
  border-radius: 8px;
}

.news-read-link,
.charcha-read-link,
.genz-read-link,
.lifestyle-read-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0037ff;
  text-decoration: none;
}

.news-read-link:hover,
.charcha-read-link:hover,
.genz-read-link:hover,
.lifestyle-read-link:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .article-share-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .article-share-actions {
    justify-content: flex-start;
  }

  .share-btn {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
  }

  .share-btn-label {
    font-size: 0.78rem;
  }
}
