/* === ACTIVITY CARD MEDIA === */
.activity-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* === ACTIVITY DETAIL PAGE === */
.activity-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}
.activity-detail .hero-img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 14px;
  margin: 20px 0;
  box-shadow: var(--shadow-lg);
}
.activity-detail h1 {
  font-size: clamp(28px, 5vw, 36px);
  margin: 16px 0 8px;
  color: var(--accent);
}
.activity-detail .meta {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
}
.activity-detail .content {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
}
.activity-detail .content p {
  margin: 0 0 16px;
}

/* === გაზიარების ღილაკი – ლამაზი, მუშა === */
.share-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 16px;
}
.share-row .line {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.share-fb-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #1877f2;
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.25);
}
.share-fb-btn:hover {
  background: #1666d4;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.35);
}
.share-fb-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile */
@media (max-width: 480px) {
  .share-fb-btn {
    padding: 10px 18px;
    font-size: 14px;
  }
  .share-fb-btn svg {
    width: 18px;
    height: 18px;
  }
}
/* მობილური */
@media (max-width: 480px) {
  .share-fb {
    width: 40px;
    height: 40px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .activity-detail { padding: 16px; }
  .share-fb { width: 40px; height: 40px; }
  .share-fb svg { width: 18px; height: 18px; }
}