@media (min-width: 768px) {
    .list-item-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .list-item {
        flex: 0 0 calc(33% - 20px);
        margin-right: 30px;
        margin-bottom: 30px;
        border: 1px solid #eee;
        padding: 20px;
    }

    .list-item:nth-child(2n) {
        margin-right: 0;
    }

    .list-item img {
        width: 100%; /* Genişliği konteynere göre ayarla */
        height: auto; /* Yüksekliği orijinal oranına göre ayarla */
        aspect-ratio: 4 / 3; /* Biraz daha dikdörtgen görünüm */
        object-fit: cover;
    }
}
@media screen and (max-width: 575px) {
  .pagination .page-item .page-link {
      padding: 0 3px;
      line-height: 20px;
  }
}
.pagination .page-item .page-link {
  color: #818181;
  border-radius: 5px;
  padding: 0 20px;
  border: none;
  background-color: #f5f5f5;
  font-size: 14px;
  line-height: 45px;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.seo-keywords {
    padding: 20px 0;
    color: #666; /* Soft gray color */
    background-color: #f8f9fa; /* Light background to keep it subtle */
    font-size: 0.75rem; /* Small font size for subtleness */
    line-height: 1.5; /* Adequate line spacing for small text */
  }
  .seo-keywords a {
    color: #666; /* Matching the text color */
    text-decoration: none; /* No underline to keep it clean */
  }
  /* Only display the SEO keywords on non-mobile devices */
  @media (max-width: 767.98px) {
    .seo-keywords {
      display: none;
    }
  }
  @media (max-width: 991.98px) {
    .seo-keywords {
      display: none;
    }
  }
  