*::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
*::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  border-radius: 6px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(18, 14, 71, 0.99);
}
*::-webkit-scrollbar-track {
  background-color: #f3fcff;
}

a {
  text-decoration: none;
}

.truncate1 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate2 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.truncate3 {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.common-btn {
  border: unset;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 13px 22px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  letter-spacing: 1.2px;
  text-align: left;
  color: #333333;
  background-color: #ade6ed;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
.common-btn svg {
  margin-left: 6px;
  transition: transform 0.25s ease;
}
.common-btn:hover {
  color: #333333;
  text-decoration: underline;
}
.common-btn:hover .black-arrow-up-right {
  transform: rotate(45deg);
}
.common-btn:hover svg {
  transform: translateX(3px);
}

.beige-badge {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #cdda89;
  font-size: 12px;
  font-weight: 500;
  line-height: 12.46px;
  text-align: left;
  color: #00314d;
  border-radius: 40px;
  padding: 4px 17px;
}
@media (min-width: 992px) {
  .beige-badge {
    font-size: 16px;
    line-height: 20px;
  }
}

.img-container {
  width: 100%;
  overflow: hidden;
}
.img-container img {
  transition: transform 0.35s ease;
}

.section-heading {
  font-size: 28px;
  font-weight: 500;
  line-height: 49.95px;
  text-align: left;
  color: #151515;
  border-left: 4px solid #ff5b23;
  padding: 1px 13px;
  word-spacing: 5px;
  text-transform: uppercase;
}

.related-articles-wrapper .card-container {
  overflow: hidden;
}
.related-articles-wrapper .card-container:hover .img-container img {
  transform: scale3d(1.05, 1.05, 1.05);
}
.related-articles-wrapper .card-container:hover .interviews-head {
  color: #0056b3 !important;
}
.related-articles-wrapper .interviews-head {
  font-size: 16px;
  font-weight: 500;
  line-height: 24.55px;
  text-align: left;
  color: #151515;
}
.related-articles-wrapper .img-container {
  width: 100%;
  overflow: hidden;
}
.related-articles-wrapper .img-container img {
  aspect-ratio: 16/10;
  -o-object-fit: contain;
     object-fit: contain;
}
.related-articles-wrapper .article-img-container img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-articles-wrapper .info-container {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  color: #151515;
}
.related-articles-wrapper .info-container.article {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #505050;
}

@media screen and (min-width: 992px) {
  .section-heading {
    font-size: 32px;
    font-weight: 500;
    line-height: 49.95px;
  }
  .related-articles-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    gap: 35px; /* Space between grid items */
  }
  .related-articles-wrapper .interviews-head {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: #151515;
  }
  .related-articles-wrapper .interviews-head {
    font-size: 17px;
    font-weight: 500;
    line-height: 23px;
    text-align: left;
  }
  .related-articles-wrapper .info-container {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.15px;
    text-align: left;
    color: #151515;
  }
  .related-articles-wrapper .info-container.article {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    letter-spacing: 0.02em;
    text-align: left;
    color: #505050;
  }
}
