.blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: #1a1a1a;
      color: #f0f0f0;
      font-family: 'Arial', sans-serif;
      overflow-x: hidden;
    }

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

    .blog-list__container::after {
      content: '';
      position: absolute;
      width: 4px;
      background-color: #ffcc00;
      top: 0;
      bottom: 0;
      left: 20px;
      margin-left: 0;
      z-index: 0;
    }

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

    .blog-list__item::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      left: 10px;
      right: auto;
      background-color: #ffcc00;
      border: 3px solid #282828;
      top: 20px;
      border-radius: 50%;
      z-index: 2;
    }

    .blog-list__content-wrapper {
      padding: 20px;
      background-color: #282828;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
    }

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

    .blog-list__image-container {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 15px;
    }

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

    .blog-list__title {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
      color: #f0f0f0;
    }

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

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

    .blog-list__summary {
      font-size: 14px;
      color: #cccccc;
      line-height: 1.6;
      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: 12px;
      color: #aaaaaa;
      margin-bottom: 15px;
      display: block;
    }

    .blog-list__read-more {
      display: inline-block;
      padding: 8px 15px;
      background-color: #ffcc00;
      color: #1a1a1a;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      align-self: flex-start;
    }

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

    @media (min-width: 768px) and (max-width: 1024px) {
      .blog-list__container::after {
        left: 50%;
        margin-left: -2px;
      }

      .blog-list__item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        padding-left: 0;
      }

      .blog-list__item::after {
        left: calc(50% - 12px);
        right: auto;
        top: 30px;
        width: 24px;
        height: 24px;
        border-width: 4px;
      }

      .blog-list__item:nth-child(odd) {
        flex-direction: row;
        padding-right: calc(50% + 30px);
      }

      .blog-list__item:nth-child(even) {
        flex-direction: row-reverse;
        padding-left: calc(50% + 30px);
      }

      .blog-list__content-wrapper {
        width: calc(50% - 30px);
        margin-bottom: 0;
      }

      .blog-list__title {
        font-size: 19px;
      }
      .blog-list__summary {
        font-size: 15px;
      }
      .blog-list__published-date {
        font-size: 13px;
      }
    }

    @media (min-width: 1025px) {
      .blog-list__container::after {
        left: 50%;
        margin-left: -2px;
      }

      .blog-list__item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        padding-left: 0;
      }

      .blog-list__item::after {
        left: calc(50% - 12px);
        right: auto;
        top: 30px;
        width: 24px;
        height: 24px;
        border-width: 4px;
      }

      .blog-list__item:nth-child(odd) {
        flex-direction: row;
        padding-right: calc(50% + 40px);
      }

      .blog-list__item:nth-child(even) {
        flex-direction: row-reverse;
        padding-left: calc(50% + 40px);
      }

      .blog-list__content-wrapper {
        width: calc(50% - 40px);
        margin-bottom: 0;
      }

      .blog-list__title {
        font-size: 20px;
      }
      .blog-list__summary {
        font-size: 16px;
      }
      .blog-list__published-date {
        font-size: 14px;
      }
    }