.blog-list {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #1a1a1a;
      color: #e0e0e0;
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      min-height: 100vh;
    }

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

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      margin-bottom: 40px;
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    }

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

    .blog-list__hero-description {
      font-size: 1.1em;
      color: #cccccc;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: 4px;
      background-color: #333333;
      height: 100%;
      transform: translateX(-50%);
      z-index: 0;
    }

    .blog-list__item {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-bottom: 50px;
      align-items: center;
      z-index: 1;
    }

    .blog-list__item-date {
      flex: 0 0 200px;
      padding: 10px;
      text-align: right;
      position: relative;
    }

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

    .blog-list__item-date::after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 20px;
      height: 20px;
      background-color: #FFA500;
      border-radius: 50%;
      border: 3px solid #1a1a1a;
      z-index: 2;
      right: -30px;
    }
    
    .blog-list__item:nth-child(even) .blog-list__item-date::after {
        left: -30px;
        right: auto;
    }

    .blog-list__item-day {
      display: block;
      font-size: 0.9em;
      color: #999999;
      font-weight: normal;
      line-height: 1.4;
    }

    .blog-list__item-content {
      flex: 0 0 calc(50% - 100px);
      background-color: #2c2c2c;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

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

    .blog-list__item-content::before {
      content: '';
      position: absolute;
      top: 25px;
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      z-index: 2;
    }
    .blog-list__item:nth-child(odd) .blog-list__item-content::before {
      left: 100%;
      border-left: 15px solid #2c2c2c;
    }

    .blog-list__item:nth-child(even) .blog-list__item-content::before {
      right: 100%;
      border-right: 15px solid #2c2c2c;
    }

    .blog-list__item-link {
      display: block;
      margin-bottom: 15px;
      overflow: hidden;
      border-radius: 8px;
    }

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

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

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

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

    .blog-list__item-title-link:hover {
      color: #FFD700;
      text-decoration: underline;
    }

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

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

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

    @media (max-width: 1024px) {
      .blog-list__hero-title {
        font-size: 2em;
      }
      .blog-list__timeline::before {
        left: 30px;
        transform: translateX(0);
      }
      .blog-list__item {
        flex-direction: row;
        justify-content: flex-start;
      }
      .blog-list__item-date {
        order: 0;
        flex: 0 0 100px;
        text-align: left;
        padding-left: 0;
        margin-left: 20px;
      }
      .blog-list__item-date::after {
        left: -10px;
        right: auto;
      }
      .blog-list__item-content {
        flex: 1;
        margin-left: 20px;
        margin-right: 0;
      }
      .blog-list__item-content::before {
        left: -15px;
        right: auto;
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-right: 15px solid #2c2c2c;
        border-left: none;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-content::before {
        border-left: none;
      }
    }

    @media (max-width: 768px) {
      .blog-list__hero-title {
        font-size: 1.8em;
      }
      .blog-list__hero-description {
        font-size: 1em;
      }
      .blog-list__timeline::before {
        left: 20px;
      }
      .blog-list__item {
        margin-bottom: 30px;
      }
      .blog-list__item-date {
        flex: 0 0 80px;
        margin-left: 10px;
      }
      .blog-list__item-date::after {
        left: -10px;
        width: 15px;
        height: 15px;
        border-width: 2px;
      }
      .blog-list__item-day {
        font-size: 0.8em;
      }
      .blog-list__item-content {
        margin: 0 10px 0 0;
        padding: 15px;
      }
      .blog-list__item-image {
        height: 180px;
      }
      .blog-list__item-title {
        font-size: 1.1em;
      }
      .blog-list__item-summary {
        font-size: 0.85em;
        -webkit-line-clamp: 4;
      }
      .blog-list__item-read-more {
        padding: 6px 12px;
        font-size: 0.8em;
      }
    }

    @media (max-width: 480px) {
      .blog-list__hero-title {
        font-size: 1.5em;
      }
      .blog-list__hero-description {
        font-size: 0.9em;
      }
      .blog-list__item-image {
        height: 150px;
      }
    }