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

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-list__title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #1a1a1a;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 1.1em;
      color: #555555;
    }

    .blog-list__timeline-wrapper {
      position: relative;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      overflow: hidden;
    }

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

    .blog-list__item {
      position: relative;
      margin-bottom: 40px;
      padding: 0;
    }

    .blog-list__item::after {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      background-color: #c0392b;
      border: 3px solid #ffffff;
      border-radius: 50%;
      z-index: 2;
      display: none;
    }

    .blog-list__item-content {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      max-width: 100%;
    }

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

    .blog-list__item-image {
      width: 100%;
      padding-bottom: 56.25%; 
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
    }

    .blog-list__item-text {
      padding: 20px;
    }

    .blog-list__item-title {
      font-size: 1.25em;
      font-weight: bold;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .blog-list__item-link {
      color: #2980b9;
      text-decoration: none;
      transition: color 0.3s ease;
    }

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

    .blog-list__item-summary {
      font-size: 0.95em;
      color: #555555;
      margin-bottom: 15px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
    }

    .blog-list__item-date {
      display: block;
      font-size: 0.85em;
      color: #555555;
      margin-bottom: 15px;
    }

    .blog-list__item-read-more {
      display: inline-block;
      background-color: #c0392b;
      color: #ffffff;
      padding: 10px 15px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
    }

    .blog-list__item-read-more:hover {
      background-color: #a93226;
    }

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

      .blog-list__item {
        width: calc(50% - 60px);
        margin-bottom: 60px;
      }

      .blog-list__item::after {
        top: 25px;
      }

      .blog-list__item:nth-child(odd) {
        float: left;
        clear: left;
        margin-right: 60px;
      }

      .blog-list__item:nth-child(even) {
        float: right;
        clear: right;
        margin-left: 60px;
      }

      .blog-list__item:nth-child(odd)::after {
        left: calc(100% + 58px);
        transform: translateX(-50%);
      }

      .blog-list__item:nth-child(even)::after {
        left: -58px;
        transform: translateX(-50%);
      }

      .blog-list__item-text {
        text-align: right;
      }

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

      .blog-list__item-read-more {
        float: right;
      }

      .blog-list__item:nth-child(even) .blog-list__item-read-more {
        float: left;
      }

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

    @media (min-width: 1024px) {
      .blog-list__timeline-wrapper {
        max-width: 1400px;
      }
      .blog-list__item {
        width: calc(50% - 80px);
      }
      .blog-list__item:nth-child(odd) {
        margin-right: 80px;
      }
      .blog-list__item:nth-child(even) {
        margin-left: 80px;
      }
      .blog-list__item:nth-child(odd)::after {
        left: calc(100% + 78px);
      }
      .blog-list__item:nth-child(even)::after {
        left: -78px;
      }
    }