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

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

    .blog-list__heading {
      text-align: center;
      margin-bottom: 20px;
      color: #FFD700;
      font-size: 2.5em;
      font-weight: bold;
      padding-top: 20px;
    }

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

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

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

    .blog-list__item {
      background-color: #2a2a2a;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      margin-bottom: 30px;
      position: relative;
      z-index: 1;
    }

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

    @media (min-width: 768px) {
      .blog-list__item::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 50%;
        width: 16px;
        height: 16px;
        background-color: #FFD700;
        border: 3px solid #1a1a1a;
        border-radius: 50%;
        transform: translateX(-50%);
        z-index: 2;
      }
    }

    .blog-list__item-image-wrapper {
      width: 100%;
      padding-top: 56.25%;
      position: relative;
      overflow: hidden;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .blog-list__item-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .blog-list__item:hover .blog-list__item-image {
      transform: scale(1.05);
    }

    .blog-list__item-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
    }

    .blog-list__item-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.3;
      width: 100%;
    }

    .blog-list__item-title-link {
      color: #FFD700;
      text-decoration: none;
      transition: color 0.3s ease;
      display: block;
    }

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

    .blog-list__item-summary {
      font-size: 15px;
      color: #cccccc;
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
      width: 100%;
    }

    .blog-list__item-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 15px;
      padding-top: 15px;
      border-top: 1px solid #3a3a3a;
      width: 100%;
    }

    .blog-list__item-date {
      font-size: 13px;
      color: #999999;
    }

    .blog-list__read-more-link {
      display: inline-block;
      background-color: #FFD700;
      color: #1a1a1a;
      padding: 10px 18px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      white-space: nowrap;
      margin-left: auto;
    }

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

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

    .blog-list__view-all-button {
      background-color: #007bff;
      color: #ffffff;
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 16px;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .blog-list__view-all-button:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

    @media (max-width: 767px) {
      .blog-list__item {
        width: 100%;
        margin: 0 auto 30px auto;
      }
      .blog-list__read-more-link {
        margin-left: auto; 
      }
    }

    @media (min-width: 768px) {
      .blog-list__item {
        width: calc(50% - 40px);
        margin-bottom: 50px;
      }

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

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

      .blog-list__item:nth-child(odd) .blog-list__item-content {
        align-items: flex-end;
        text-align: right;
      }

      .blog-list__item:nth-child(even) .blog-list__item-content {
        align-items: flex-start;
        text-align: left;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-meta {
        justify-content: flex-end;
      }

      .blog-list__item:nth-child(even) .blog-list__item-meta {
        justify-content: flex-start;
      }
    }