
.category-page-titleBox {
  padding: 0 12vw;
}

.article-card {
  height: 100%;
  position: relative;
  cursor: pointer;
}

.article-image {
  min-height: 80%;
}

.category-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 12vw;
}

.catgeoryAd {
  flex: 7;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  margin: 0 20px 0 0;
}

.articles {
  flex: 2;
  width: 100%;
  margin-top: 20px;
}


.article-title {
  font-size: 1.1rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  line-height: 1.3em;
  max-height: 2.6em; /* 2 lines * line-height */
}

@media (max-width: 400px) {
 .articles{
  padding:10px;
 }
} 

.article-image {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.haber-details-side-wrapper {
  border-radius: 10px;
  flex: 3;
}

@media (max-width: 768px) {
  .category-page {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .article-title {
    font-size: 15px;
    text-align: left !important;
  }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
    max-width: 100%;
  }
  .catgeoryAd {
    margin: 0;
  }
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 100%;
}

.article-item {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: 14px !important;
  text-align: left !important;
}

@media (max-width: 1000px) {
  .category-page {
    padding: 0 5vw !important;
  }
  .category-page-titleBox {
    padding: 0 5vw !important;
  }
}