.news-single {
  width: 50%;
  margin: 8vh auto;
}

.news-title {
  color: var(--grey-mid);
}

.news-subtitle {
  color: var(--grey-light);
  margin-bottom: 16px;
}

.separation-bar {
  width: 4rem;
  height: 4px;
  background-color: var(--crisal-green-light);
  margin: 16px 0 24px 0;
}

.news-single img,
.news-single .card-text img,
.news-container img {
  height: auto;
}

table td, table tr {
    height: auto !important;
}

table {
    height: auto !important;
    margin-bottom: 16px !important;    
}

.translation-content table {
    border-collapse: collapse; 
    width: calc(100% + 16px) !important;
    margin-left: -8px !important;
    margin-right: -8px !important;
    table-layout: fixed !important;
}

.translation-content table td {
    padding: 8px;
}

td img, td video {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important; 
}

.share-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 4vh;
}

.share-label-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  font-weight: 500;
  color: #333;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.share-label-btn:hover {
  background-color: #ebeaea;
  cursor: pointer;
}

.share-label-btn i {
  font-size: 1rem;
}

.share-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: #333;
  transition: color 0.2s;
  border-radius: 50%;
  text-align: center;
}

.share-icons a:hover {
  color: var(--crisal-green-light);
}

.share-bar i {
  font-size: 1.5rem;
  color: var(--grey-mid);
  transition: color 0.3s ease;
}

.share-icons {
  display: flex;
  opacity: 0;
  transform: translateX(-20px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.share-icons.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.share-icons a.facebook:hover i {
  color: #1877f2;
}

.share-icons a.twitter:hover i {
  color: #000000;
}

.share-icons a.linkedin:hover i {
  color: #0a66c2;
}

.share-icons a.whatsapp:hover i {
  color: #25d366;
}

.share-icons a.email:hover i {
  color: #000000;
}

@media screen and (max-width: 768px) {
  .news-single {
    width: 90%;
  }
}

@media (min-width: 1920px) {
  .news-single {
    max-width: 1890px;
  }
}
