.blog-list {
      padding-top: var(--header-offset, 120px);
      font-family: 'Arial', sans-serif;
      color: #333;
      background-color: #f8f9fa;
      min-height: 100vh;
      line-height: 1.6;
    }

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

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

    .blog-list__description {
      font-size: 1.1em;
      color: #555;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background-color: #e0e0e0;
      transform: translateX(-50%);
      z-index: 0;
    }

    .blog-list__item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    .blog-list__item:nth-child(odd) {
      flex-direction: row-reverse;
    }

    .blog-list__item-date-wrapper {
      width: 50%;
      padding: 0 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
    }

    .blog-list__item-date {
      font-size: 1em;
      color: #6c757d;
      font-weight: 600;
      background-color: #f0f0f0;
      padding: 5px 15px;
      border-radius: 5px;
      border: 1px solid #e0e0e0;
    }

    .blog-list__item-content-wrapper {
      width: 50%;
      padding: 0 30px;
      position: relative;
    }

    .blog-list__item-content-wrapper::before {
      content: '';
      position: absolute;
      top: 20px;
      width: 18px;
      height: 18px;
      background-color: #1a237e;
      border: 4px solid #fff;
      border-radius: 50%;
      z-index: 2;
    }

    .blog-list__item:nth-child(even) .blog-list__item-content-wrapper::before {
      left: -9px;
    }

    .blog-list__item:nth-child(odd) .blog-list__item-content-wrapper::before {
      right: -9px;
    }

    .blog-list__item-link {
      display: block;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      padding-bottom: 20px;
    }

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

    .blog-list__item-image {
      width: 100%;
      height: 225px;
      object-fit: cover;
      display: block;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .blog-list__item-text-content {
      padding: 20px;
    }

    .blog-list__item-title {
      font-size: 1.25em;
      font-weight: bold;
      color: #1a237e;
      margin-bottom: 10px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

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

    .blog-list__item-read-more {
      display: inline-block;
      font-size: 0.9em;
      color: #007bff;
      font-weight: bold;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__item-read-more:hover {
      color: #0056b3;
      text-decoration: underline;
    }

    @media (max-width: 1024px) {
      .blog-list__timeline::before {
        left: 20px;
        transform: translateX(0);
      }

      .blog-list__item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
      }
      
      .blog-list__item:nth-child(odd) {
        flex-direction: column;
      }

      .blog-list__item-date-wrapper,
      .blog-list__item-content-wrapper {
        width: 100%;
        padding: 0 20px 0 60px;
      }

      .blog-list__item-date-wrapper {
        order: -1;
        justify-content: flex-start;
        padding-bottom: 10px;
      }

      .blog-list__item-content-wrapper::before {
        left: 11px;
        right: auto;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-content-wrapper::before {
        left: 11px;
        right: auto;
      }
    }

    @media (max-width: 767px) {
      .blog-list__heading {
        font-size: 1.8em;
      }

      .blog-list__description {
        font-size: 1em;
        margin-bottom: 30px;
      }

      .blog-list__section {
        padding: 15px;
      }

      .blog-list__timeline::before {
        left: 20px;
      }

      .blog-list__item-date-wrapper,
      .blog-list__item-content-wrapper {
        padding: 0 15px 0 50px;
      }

      .blog-list__item-content-wrapper::before {
        left: 11px;
      }

      .blog-list__item-title {
        font-size: 1.15em;
      }

      .blog-list__item-summary {
        font-size: 0.95em;
      }

      .blog-list__item-read-more {
        font-size: 0.85em;
      }
      
      .blog-list__item-image {
        height: 180px;
      }
    }