.blog-list {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
  }

  .blog-list__header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .blog-list__title {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .blog-list__description {
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .blog-list__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
  }

  @media (min-width: 768px) {
    .blog-list__container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .blog-list__container {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .blog-list__item {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .blog-list__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  }

  .blog-list__item-image-wrapper {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
  }

  .blog-list__item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog-list__item:hover .blog-list__item-image {
    transform: scale(1.05);
  }

  .blog-list__item-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .blog-list__item-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4;
  }

  .blog-list__item-title-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-list__item-title-link:hover {
    color: #ffe066;
  }

  .blog-list__item-summary {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .blog-list__item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
  }

  .blog-list__item-date {
    font-size: 13px;
    color: #aaaaaa;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }

  .blog-list__item-date::before {
    content: '📅';
    margin-right: 5px;
    font-size: 16px;
    color: #007bff;
  }

  .blog-list__item-read-more-link {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }

  .blog-list__item-read-more-link:hover {
    background-color: #0056b3;
  }

  .blog-list__pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding: 0 20px;
  }

  .blog-list__pagination-link {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background-color: #3a3a3a;
    color: #FFD700;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 16px;
  }

  .blog-list__pagination-link:hover {
    background-color: #007bff;
    color: #ffffff;
  }

  .blog-list__pagination-link--active {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
  }