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

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

    .blog-list__title {
      text-align: center;
      font-size: 2.5em;
      color: #0056b3;
      margin-bottom: 40px;
      font-weight: bold;
    }

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

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

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

    .blog-list__item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 50px;
      position: relative;
      width: 100%;
    }

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

    .blog-list__item:nth-child(even) .blog-list__content-wrapper {
      margin-left: calc(50% + 20px);
    }

    .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
      margin-right: calc(50% + 20px);
    }

    .blog-list__date-marker {
      position: absolute;
      left: 50%;
      top: 0;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      background-color: #0056b3;
      border-radius: 50%;
      border: 4px solid #fff;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.8em;
      font-weight: bold;
    }

    .blog-list__content-wrapper {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      padding: 25px;
      flex: 0 0 calc(50% - 40px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

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

    .blog-list__content-wrapper::before {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      top: 20px;
      z-index: 2;
    }

    .blog-list__item:nth-child(even) .blog-list__content-wrapper::before {
      border-right: 15px solid #fff;
      left: -15px;
    }

    .blog-list__item:nth-child(odd) .blog-list__content-wrapper::before {
      border-left: 15px solid #fff;
      right: -15px;
    }

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

    .blog-list__image {
      width: 100%;
      height: 225px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }

    .blog-list__title-link {
      font-size: 1.4em;
      font-weight: bold;
      color: #0056b3;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

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

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

    .blog-list__date {
      font-size: 0.85em;
      color: #6c757d;
      margin-bottom: 15px;
      display: block;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: #0056b3;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 0.9em;
    }

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

    .blog-list__view-all-button {
      text-align: center;
      margin-top: 60px;
    }

    .blog-list__view-all-link {
      display: inline-block;
      background-color: #28a745;
      color: #fff;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .blog-list__view-all-link:hover {
      background-color: #218838;
      transform: translateY(-2px);
    }

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

      .blog-list__item,
      .blog-list__item:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
      }

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

      .blog-list__content-wrapper,
      .blog-list__item:nth-child(even) .blog-list__content-wrapper,
      .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
        width: calc(100% - 60px);
        margin-left: 60px;
        margin-right: 0;
      }

      .blog-list__content-wrapper::before,
      .blog-list__item:nth-child(even) .blog-list__content-wrapper::before {
        border-right: 15px solid #fff;
        border-left: none;
        left: -15px;
        top: 20px;
      }

      .blog-list__item:nth-child(odd) .blog-list__content-wrapper::before {
        border-right: 15px solid #fff;
        border-left: none;
        left: -15px;
        top: 20px;
      }

      .blog-list__title {
        font-size: 2em;
      }

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

    @media (max-width: 768px) {
      .blog-list {
        padding-bottom: 30px;
      }

      .blog-list__container {
        padding: 0 15px;
      }

      .blog-list__title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

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

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

      .blog-list__date-marker {
        left: 15px;
      }

      .blog-list__content-wrapper,
      .blog-list__item:nth-child(even) .blog-list__content-wrapper,
      .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
        width: calc(100% - 50px);
        margin-left: 50px;
        padding: 20px;
      }

      .blog-list__content-wrapper::before {
        top: 15px;
      }

      .blog-list__image {
        height: 180px;
      }

      .blog-list__title-link {
        font-size: 1.2em;
      }

      .blog-list__summary {
        font-size: 0.9em;
        -webkit-line-clamp: 4;
      }

      .blog-list__date {
        font-size: 0.8em;
      }

      .blog-list__read-more {
        padding: 8px 15px;
        font-size: 0.85em;
      }

      .blog-list__view-all-button {
        margin-top: 40px;
      }

      .blog-list__view-all-link {
        padding: 12px 25px;
        font-size: 1em;
      }
    }

    @media (max-width: 480px) {
      .blog-list__image {
        height: 150px;
      }
    }