.contentContainer {
  margin-top: 50px;
  direction: rtl;
  display: flex;
  gap: 30px;
  flex-direction: column;
}

content-container {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

news-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 70%;
  height: max-content;
}

other-news {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 30%;
}

.newsTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.newsTitle h1 {
  font-family: "PeydaBold";
  font-size: 20pt;
  max-width: 670px;
}

.newsTitle p {
  font-family: "PeydaLight";
  font-size: 13pt;
}
.newsContentContainer {
  width: 100%;
  height: max-content;
  background: var(--white);
  border-radius: 15px;
  padding: 15px;
}

.newsContentContainer img {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  object-fit: cover;
}

.newsContentContainer p {
  margin-top: 15px;
  font-size: 14pt;
  background-color: var(--white) !important;
}
.otherNewsTitle h3 {
  font-size: 20pt;
  font-family: "PeydaBold";
}

.otherNewsDesc a {
  color: var(--darkBlue);
  position: relative;
  left: 7px;
}

.otherNewsContainer {
  display: flex;
  height: max-content;
  background: var(--white);
  border-radius: 15px;
  padding: 15px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.otherNewsItem {
  width: 100%;
  height: 120px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid #313131;
}

.otherNewsItem img {
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px;
}

.otherNewsDesc p {
  width: 100%;
  height: 75px;
  text-align: justify;
  display: -webkit-box;
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
}

.otherNewsDesc {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.otherNewsItem:last-child {
  border: none;
  padding-bottom: 0;
  height: 100px;
}

footer {
  margin-top: 30px;
}
