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

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

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

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

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

    .blog-list__item::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      background-color: #007bff;
      border: 4px solid #f9f9f9;
      border-radius: 50%;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
    }
    .blog-list__item:nth-child(even)::after {
        left: 50%;
    }

    .blog-list__content-wrapper {
      width: calc(50% - 30px);
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      text-align: left;
    }

    .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
        margin-right: 30px;
    }
    .blog-list__item:nth-child(even) .blog-list__content-wrapper {
        margin-left: 30px;
    }

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

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

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

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: #0056b3;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__title:hover {
      color: #007bff;
    }

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

    .blog-list__published-date {
      font-size: 14px;
      color: #999;
      margin-top: auto;
      margin-bottom: 15px;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: #28a745;
      color: #fff;
      padding: 10px 15px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 15px;
      transition: background-color 0.3s ease;
      text-align: center;
    }

    .blog-list__read-more:hover {
      background-color: #218838;
    }

    .blog-list__section-header {
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
    }

    .blog-list__section-title {
        font-size: 36px;
        color: #0056b3;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .blog-list__section-description {
        font-size: 18px;
        color: #555;
        max-width: 800px;
        margin: 0 auto;
    }

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

      .blog-list__item {
        flex-direction: row !important;
        justify-content: flex-start;
      }

      .blog-list__item::after {
        left: 20px;
        transform: translateX(-50%);
      }

      .blog-list__content-wrapper {
        width: calc(100% - 70px);
        margin-left: 50px !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 767px) {
      .blog-list__section-title {
        font-size: 28px;
      }

      .blog-list__section-description {
        font-size: 16px;
      }

      .blog-list__container::before {
        left: 15px;
      }

      .blog-list__item::after {
        left: 15px;
      }

      .blog-list__content-wrapper {
        width: calc(100% - 60px);
        margin-left: 40px !important;
      }

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

      .blog-list__summary {
        font-size: 14px;
      }

      .blog-list__published-date {
        font-size: 12px;
      }
    }