:root {
      --primary-color: #CC3300; 
      --secondary-color: #f8f8f8;
      --text-color: #333;
      --light-text-color: #555;
      --lighter-text-color: #777;
      --border-color: #eee;
      --shadow-color: rgba(0, 0, 0, 0.1);
      --hover-shadow-color: rgba(0, 0, 0, 0.2);
    }

    .blog-list {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--header-offset, 120px) 20px 60px;
      position: relative;
      font-family: 'Arial', sans-serif;
      color: var(--text-color);
    }

    .blog-list__page-title {
      text-align: center;
      font-size: 32px;
      color: var(--primary-color);
      margin-bottom: 40px;
      font-weight: bold;
    }

    .blog-list__timeline-container {
      position: relative;
      padding-left: 30px;
    }

    .blog-list__timeline-container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      background-color: var(--primary-color);
      height: 100%;
      z-index: 0;
    }

    .blog-list__item {
      display: flex;
      flex-direction: column;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px var(--shadow-color);
      margin-bottom: 40px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      padding: 20px;
      margin-left: 40px;
      z-index: 1;
    }

    .blog-list__item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px var(--hover-shadow-color);
    }

    .blog-list__date-marker {
      position: absolute;
      left: -40px;
      top: 20px;
      width: 80px;
      height: 80px;
      background-color: var(--primary-color);
      color: #fff;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-size: 14px;
      font-weight: bold;
      text-align: center;
      z-index: 2;
      box-shadow: 0 2px 8px var(--shadow-color);
    }

    .blog-list__date-marker-day {
      font-size: 24px;
      line-height: 1;
    }

    .blog-list__date-marker-month-year {
      font-size: 12px;
      line-height: 1;
    }

    .blog-list__image-wrapper {
      width: 100%;
      height: 200px;
      overflow: hidden;
      border-radius: 8px;
      margin-bottom: 20px;
    }

    .blog-list__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

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

    .blog-list__text-content {
      padding: 0;
    }

    .blog-list__title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__title-link {
      color: var(--text-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__title-link:hover {
      color: var(--primary-color);
    }

    .blog-list__summary {
      font-size: 15px;
      color: var(--light-text-color);
      line-height: 1.6;
      margin-bottom: 15px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .blog-list__published-at {
      font-size: 13px;
      color: var(--lighter-text-color);
      margin-bottom: 15px;
      display: block;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .blog-list__read-more:hover {
      background-color: #992200; 
    }

    @media (min-width: 768px) {
      .blog-list__timeline-container {
        padding-left: 0;
      }

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

      .blog-list__item {
        width: calc(50% - 60px);
        margin-left: 0;
        flex-direction: row;
        align-items: flex-start;
        padding: 25px;
      }

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

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

      .blog-list__date-marker {
        left: auto;
        right: -40px;
        top: 25px;
      }

      .blog-list__item:nth-child(even) .blog-list__date-marker {
        left: -40px;
        right: auto;
      }

      .blog-list__image-wrapper {
        width: 40%;
        height: 180px;
        margin-bottom: 0;
        margin-right: 20px;
      }

      .blog-list__text-content {
        width: 60%;
      }

      .blog-list__title {
        font-size: 22px;
      }

      .blog-list__summary {
        font-size: 16px;
      }
    }

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

      .blog-list__image-wrapper {
        height: 220px;
      }

      .blog-list__date-marker {
        top: 30px;
      }
    }