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

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

    .blog-list__timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 4px;
      background-color: #ccc;
      transform: translateX(-50%);
      z-index: 1;
      display: none;
    }

    @media (min-width: 768px) {
      .blog-list__timeline-line {
        display: block;
      }
    }

    .blog-list__heading {
      text-align: center;
      margin-bottom: 40px;
      color: #2c3e50;
      font-size: 2.5em;
      font-weight: bold;
      position: relative;
      z-index: 2;
    }

    .blog-list__heading::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #ffc107;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .blog-list__description {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 50px;
      color: #555;
      font-size: 1.1em;
      line-height: 1.6;
      position: relative;
      z-index: 2;
    }

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

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

    .blog-list__item-image-wrapper {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      overflow: hidden;
      background-color: #e0e0e0;
    }

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

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

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

    .blog-list__item-date {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 10px;
      display: block;
      text-align: right;
    }

    .blog-list__item-title {
      font-size: 1.5em;
      font-weight: bold;
      color: #2c3e50;
      margin-bottom: 15px;
      line-height: 1.3;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__item-title-link {
      color: inherit;
      text-decoration: none;
    }

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

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

    .blog-list__item-link {
      display: inline-block;
      margin-top: auto;
      padding: 10px 20px;
      background-color: #007bff;
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      align-self: flex-start;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-weight: bold;
      font-size: 0.95em;
    }

    .blog-list__item-link:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
    }

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

      .blog-list__item:nth-child(even) {
        margin-left: 0;
        margin-right: 50%;
        padding-left: 0;
        padding-right: 40px;
        text-align: right;
      }

      .blog-list__item-date {
        text-align: inherit;
      }
      .blog-list__item:nth-child(even) .blog-list__item-date {
        text-align: left;
      }

      .blog-list__item-link {
        align-self: flex-end;
      }
      .blog-list__item:nth-child(even) .blog-list__item-link {
        align-self: flex-start;
      }

      .blog-list__item::before {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background-color: #007bff;
        border-radius: 50%;
        border: 4px solid #f0f2f5;
        z-index: 3;
        top: 30px;
      }

      .blog-list__item:nth-child(odd)::before {
        left: -8px;
      }

      .blog-list__item:nth-child(even)::before {
        right: -8px;
      }

      .blog-list__item-content {
        padding: 25px;
      }

      .blog-list__item:nth-child(even) .blog-list__item-content {
        order: 2;
      }
      .blog-list__item:nth-child(even) .blog-list__item-image-wrapper {
        order: 1;
      }

      .blog-list__item:nth-child(even) .blog-list__item-title {
        text-align: right;
      }
      .blog-list__item:nth-child(even) .blog-list__item-summary {
        text-align: right;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__item {
        width: calc(50% - 30px);
      }
    }

    @media (max-width: 767px) {
      .blog-list__container {
        padding: 0 15px;
      }

      .blog-list__item {
        margin-left: 0;
        padding-left: 0;
        width: 100%;
        margin-bottom: 25px;
      }

      .blog-list__item:nth-child(even) {
        margin-right: 0;
        padding-right: 0;
        text-align: left;
      }

      .blog-list__item::before {
        display: none;
      }

      .blog-list__item-date {
        text-align: left;
      }

      .blog-list__item-link {
        align-self: flex-start;
      }
      .blog-list__item:nth-child(even) .blog-list__item-link {
        align-self: flex-start;
      }

      .blog-list__item-title {
        font-size: 1.3em;
        text-align: left;
      }
      .blog-list__item-summary {
        font-size: 0.95em;
        text-align: left;
      }

      .blog-list__heading {
        font-size: 2em;
        margin-bottom: 30px;
      }

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