.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: #f8f8f8;
      color: #333;
      font-family: Arial, sans-serif;
      line-height: 1.6;
    }

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .blog-list__heading {
      font-size: 2.2em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .blog-list__timeline {
      position: relative;
      margin: 0 auto;
      padding: 20px 0;
    }

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 20px; 
      width: 4px;
      background-color: #e0e0e0;
      z-index: 1;
    }

    .blog-list__item {
      display: flex;
      flex-direction: column;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      margin-bottom: 30px;
      position: relative;
      padding: 20px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-left: 50px; 
    }

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

    .blog-list__item::before {
      content: '';
      position: absolute;
      top: 25px;
      left: -40px; 
      width: 16px;
      height: 16px;
      background-color: #007bff; 
      border: 3px solid #e0e0e0;
      border-radius: 50%;
      z-index: 2;
    }

    .blog-list__item-image-wrapper {
      width: 100%;
      padding-bottom: 56.25%; 
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .blog-list__item-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }

    .blog-list__item-content {
      flex-grow: 1;
    }

    .blog-list__item-title-link {
      font-size: 1.25em; 
      font-weight: bold;
      color: #007bff; 
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      transition: color 0.3s ease;
    }

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

    .blog-list__item-summary {
      font-size: 0.95em; 
      color: #666;
      margin-bottom: 15px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
    }

    .blog-list__item-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85em; 
      color: #555;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #eee;
    }

    .blog-list__item-date {
      color: #555;
    }

    .blog-list__read-more-link {
      color: #007bff;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .blog-list__read-more-link:hover {
      color: #0056b3;
    }

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        left: 50%; 
        transform: translateX(-2px);
      }

      .blog-list__item {
        width: calc(50% - 50px); 
        margin-left: 0;
        padding: 25px;
      }

      .blog-list__item:nth-child(odd) {
        float: left;
        clear: both;
        margin-right: calc(50% + 50px); 
      }

      .blog-list__item:nth-child(even) {
        float: right;
        clear: both;
        margin-left: calc(50% + 50px); 
      }

      .blog-list__item:nth-child(odd)::before {
        left: calc(100% + 24px); 
        top: 25px;
      }

      .blog-list__item:nth-child(even)::before {
        left: -40px; 
        top: 25px;
      }

      .blog-list__timeline::after {
        content: '';
        display: block;
        clear: both;
      }
    }

    @media (min-width: 1024px) {
      
    }