@import url(https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,500&display=swap);
.news-homepage-wrapper {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media (max-width: 768px) {
  .news-homepage-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.inter-500, .news-title {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.bg-gray {
  background-color: #f6f3f5;
}

.cursor-pointer {
  cursor: pointer;
}

.news-img-wrapper {
  width: 100%;
  overflow: hidden;
}

.news-img {
  width: 100%;
  object-fit: cover;
}

@media (max-width: 1920px) {
  .news-img {
    max-height: 330px !important;
  }
}

@media (max-width: 1440px) {
  .news-img {
    max-height: 250px !important;
  }
}

@media (max-width: 1280px) {
  .news-img {
    max-height: 220px !important;
  }
}

.img-rounded {
  border-radius: 18px;
}

.h3-title {
  letter-spacing: 0;
  line-height: 120%;
}

.tags {
  padding: 0px 12px;
  border: 1px solid #666;
  border-radius: 24px;
  font-size: 12px;
}

.tags:not(:last-child) {
  
  margin-right: 4px;
}

[dir="rtl"] .tags:not(:last-child) {
  margin-right: 0;
  
  margin-left: 4px;
}

.news-title {
  font-size: 18px;
  line-height: 140%;
}

.text-read-more {
  font-size: 14px;
  font-weight: 400;
}

.text-gray {
  color: #666;
}

@media (max-width: 500px) {
  .news-title {
    font-size: 16px;
  }
}

.card-image-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border: 1px transparent solid;
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 1280px) {
  .card-image-wrapper {
    aspect-ratio: 16/9;
    height: auto;
  }
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

