.blog-list {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #2c3e50;
      background-color: #f8f9fa;
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
    }

    .blog-list__hero {
      background: linear-gradient(135deg, #28a745, #218838);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-radius: 0 0 15px 15px;
      margin-bottom: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .blog-list__hero-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .blog-list__hero-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .blog-list__hero-description {
      font-size: 1.1em;
      opacity: 0.9;
    }

    .blog-list__section {
      padding: 20px 0;
    }

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

    .blog-list__section-title {
      font-size: 2em;
      text-align: center;
      margin-bottom: 40px;
      color: #2c3e50;
      position: relative;
      padding-bottom: 15px;
    }

    .blog-list__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #28a745;
      border-radius: 2px;
    }

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 4px;
      background-color: #e9ecef;
      border-radius: 2px;
    }

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

    .blog-list__item:last-child {
      margin-bottom: 0;
    }

    .blog-list__item-marker {
      position: absolute;
      left: 10px;
      top: 0;
      width: 24px;
      height: 24px;
      background-color: #28a745;
      border: 4px solid #f8f9fa;
      border-radius: 50%;
      z-index: 1;
      box-shadow: 0 0 0 2px #28a745;
    }

    .blog-list__item-content {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

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

    .blog-list__item-image-wrapper {
      width: 100%;
      padding-bottom: 56.25%;
      position: relative;
      background-color: #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      font-size: 0.9em;
    }

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

    .blog-list__item-text-wrapper {
      padding: 25px;
    }

    .blog-list__item-title {
      font-size: 1.4em;
      margin-bottom: 10px;
      font-weight: bold;
      line-height: 1.3;
    }

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

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

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

    .blog-list__item-meta {
      margin-bottom: 15px;
    }

    .blog-list__item-date {
      font-size: 0.9em;
      color: #999;
    }

    .blog-list__item-read-more {
      display: inline-block;
      background-color: #28a745;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

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

    @media (min-width: 768px) {
      .blog-list__hero {
        padding: 80px 30px;
      }
      .blog-list__hero-title {
        font-size: 3em;
      }
      .blog-list__hero-description {
        font-size: 1.2em;
      }

      .blog-list__timeline::before {
        left: 50%;
        transform: translateX(-50%);
      }

      .blog-list__item {
        padding-left: 0;
        margin-bottom: 60px;
        width: calc(50% - 30px);
        position: relative;
        box-sizing: border-box;
      }

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

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

      .blog-list__item-marker {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-marker {
        left: auto;
        right: -34px;
        transform: none;
      }

      .blog-list__item:nth-child(even) .blog-list__item-marker {
        left: -34px;
        right: auto;
        transform: none;
      }

      .blog-list__item-content {
        flex-direction: row;
      }

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

      .blog-list__item-image-wrapper {
        width: 40%;
        padding-bottom: 0;
        height: 200px;
      }

      .blog-list__item-text-wrapper {
        width: 60%;
        padding: 20px;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-image {
        border-radius: 0 10px 10px 0;
      }

      .blog-list__item:nth-child(even) .blog-list__item-image {
        border-radius: 10px 0 0 10px;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-title,
      .blog-list__item:nth-child(odd) .blog-list__item-summary,
      .blog-list__item:nth-child(odd) .blog-list__item-meta,
      .blog-list__item:nth-child(odd) .blog-list__item-read-more {
        text-align: right;
      }

      .blog-list__item:nth-child(odd) .blog-list__item-read-more {
        margin-left: auto;
      }
    }

    @media (min-width: 1024px) {
      .blog-list__hero {
        padding: 100px 40px;
      }
      .blog-list__hero-title {
        font-size: 3.5em;
      }
      .blog-list__hero-description {
        font-size: 1.3em;
      }

      .blog-list__item-text-wrapper {
        padding: 25px;
      }
    }