/*** hiding translation message in unwanted pages ***/
.translation-msg {
  display: none;
  font-family: Poppins;
  font-size: 1rem;
  color: #2d2926;
  font-weight: 600;
}

.translation-msg.show {
  display: block;
}
/*** END OF hiding translation message in unwanted pages ***/

/*** article page newl added cards ***/
.detail-page-content .desc .card-wrap {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.icon-card {
  max-width: 286px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.icon-card .img-link img {
  border-radius:3px 3px 0 0;
}

.icon-card .card-content {
  background-color:#ffffff;
  color:#000000;
  font-size:14px;
  line-height:20px;
  padding:10px;
}

.detail-page-content .card-contents {
  margin-top: 40px;
}

.desc .img-check {
  background-color: #60c2e6;
}

.article-detail-page .desc a > strong {
  color: var(--bs-link-color);
}

.article-detail-page table p > strong {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .detail-page-content .desc .card-wrap {
    grid-template-columns: repeat(2,1fr);
  }
}
/*** END OF article page newl added cards ***/
