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

  .blog-list__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .blog-list__heading {
    font-size: 32px;
    color: #00a86b;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
  }

  .blog-list__description {
    font-size: 16px;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .blog-list__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

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

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

  .blog-list__link-area {
    text-decoration: none;
    color: inherit;
  }

  .blog-list__image-wrapper {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #333;
    border-bottom: 1px solid #3a3a3a;
  }

  .blog-list__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

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

  .blog-list__title-link {
    color: #00a86b;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .blog-list__title-link:hover {
    color: #00e08c;
    text-decoration: underline;
  }

  .blog-list__summary {
    font-size: 15px;
    color: #b0b0b0;
    margin-bottom: 15px;
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    flex-grow: 1;
  }

  .blog-list__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #3a3a3a;
  }

  .blog-list__published-date {
    font-size: 13px;
    color: #888;
  }

  .blog-list__read-more {
    display: inline-block;
    background-color: #00a86b;
    color: #ffffff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .blog-list__read-more:hover {
    background-color: #00e08c;
    transform: translateY(-2px);
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .blog-list__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .blog-list__heading {
      font-size: 28px;
    }
    .blog-list__description {
      font-size: 15px;
    }
  }

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

  @media (max-width: 767px) {
    .blog-list__wrapper {
      padding: 15px;
    }
    .blog-list__heading {
      font-size: 24px;
      margin-bottom: 10px;
    }
    .blog-list__description {
      font-size: 14px;
      margin-bottom: 30px;
      padding: 0 10px;
    }
    .blog-list__grid {
      display: flex;
      flex-direction: column;
      padding-left: 40px;
      position: relative;
      gap: 0; 
    }

    .blog-list__grid::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background-color: #444;
      z-index: 0;
    }

    .blog-list__item {
      margin-bottom: 30px;
      padding-left: 30px;
      position: relative;
      z-index: 1;
    }

    .blog-list__item:last-child {
      margin-bottom: 0;
    }

    .blog-list__item::before {
      content: '';
      position: absolute;
      left: -20px;
      top: 25px;
      width: 16px;
      height: 16px;
      background-color: #00a86b;
      border: 3px solid #1a1a1a;
      border-radius: 50%;
      z-index: 2;
      box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.5);
    }

    .blog-list__image-wrapper {
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .blog-list__content {
      padding: 15px;
    }

    .blog-list__title {
      font-size: 18px;
    }

    .blog-list__summary {
      font-size: 14px;
      -webkit-line-clamp: 4;
    }

    .blog-list__read-more {
      padding: 7px 12px;
      font-size: 13px;
    }
  }