/* Tags Styles */
.news-tags-container {
  display: flex;
  flex-wrap: wrap;
}

.news-tag {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem 0.25rem 1.5rem; /* Added left padding for the dot */
  font-size: 0.875rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  cursor: default;
}

.news-tag::before {
  display: block !important;
  content: "";
  position: absolute;
  left: 8px; /* Positioned inside the tag with proper gap */
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Perfect vertical centering */
  background: #13c35d;
}

.news-tag-link {
  color: white;
  text-decoration:none !important;
  transition: opacity 0.3s ease;
}

.news-tag-link:hover {
  opacity: 0.8;
  color: white;
  text-decoration:none !important;
}

.news-tag-text {
  color: white;
}

/* Hide all tags after the 3rd one */
.news-tags-container .news-tag:nth-child(n+4) {
  display: none;
}




/* Content Section */
.news-content-section {
 padding: 10px 0 0 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .news-content-section {
    padding: 10px 0 0 0;
  }
}

.news-content-container {
  margin: 0 auto;
  
}

/* Summary Styles */
.news-summary-section {
  margin-bottom: 10px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.news-summary-section p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333333;
  font-weight: 300;
  font-style: italic;
}


/* Meta Section (Author & Share) */
.news-meta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

@media (max-width: 768px) {
  .news-meta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.news-author-section {
  flex: 1;
}

.news-author-text {
  color: #000000;
  margin: 0;
  font-size: 0.9rem;
}

/* Share Section */
.news-share-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.news-share-label {
  font-weight: 500;
  color: #000000;
  font-size: 0.9rem;
}

.news-share-buttons {
  display: flex;
  gap: 0.5rem;
}

.news-share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  text-decoration: none !important;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  overflow: hidden;
}

.news-share-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-share-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.news-share-button:hover::before {
  opacity: 0.1;
}

.news-share-facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.news-share-twitter:hover {
  background: #1da1f2;
  color: white;
  border-color: #1da1f2;
}

.news-share-linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}

.news-share-icon {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}