:root {
      --primary-bg: #1a1a2e;
      --secondary-bg: #2a2a4a;
      --text-color: #e0e0e0;
      --accent-color: #ffcc00;
      --light-text: #aaaaaa;
      --border-color: #4a4a6e;
      --shadow-color: rgba(0, 0, 0, 0.3);
      --header-offset: 120px; 
    }

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

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

    .blog-list__title {
      font-size: 28px;
      color: var(--accent-color);
      margin-bottom: 15px;
      line-height: 1.3;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 16px;
      color: var(--light-text);
      line-height: 1.6;
      margin-bottom: 20px;
    }

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

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

    .blog-list__timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 18px;
      width: 2px;
      height: 100%;
      background: var(--border-color);
    }

    .blog-list__item {
      display: flex;
      margin-bottom: 40px;
      position: relative;
      flex-direction: column;
    }

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

    .blog-list__date-wrapper {
      position: relative;
      padding: 0 0 10px 40px;
      width: 100%;
      box-sizing: border-box;
    }

    .blog-list__date-wrapper::before {
      content: '';
      position: absolute;
      top: 5px;
      left: 10px;
      width: 20px;
      height: 20px;
      background: var(--accent-color);
      border-radius: 50%;
      border: 2px solid var(--primary-bg);
      z-index: 1;
    }

    .blog-list__date {
      font-size: 14px;
      color: var(--light-text);
      display: block;
      padding-left: 10px;
    }

    .blog-list__content-wrapper {
      background-color: var(--secondary-bg);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px var(--shadow-color);
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

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

    .blog-list__link-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .blog-list__image-container {
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }

    .blog-list__image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 16 / 9;
    }

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

    .blog-list__item-title a {
      color: var(--accent-color);
      text-decoration: none;
      transition: color 0.3s ease;
      position: relative;
      z-index: 2;
    }

    .blog-list__item-title a:hover {
      color: #ffd700;
    }

    .blog-list__summary {
      font-size: 15px;
      color: var(--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__read-more {
      display: inline-block;
      background-color: var(--accent-color);
      color: var(--primary-bg);
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 14px;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      position: relative;
      z-index: 2;
    }

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

    @media (min-width: 768px) {
      .blog-list__title {
        font-size: 32px;
      }

      .blog-list__description {
        font-size: 18px;
      }

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

      .blog-list__date-wrapper {
        position: absolute;
        width: calc(50% - 30px);
        padding: 0;
        text-align: right;
        left: 0;
        top: 20px;
      }

      .blog-list__date-wrapper::before {
        left: calc(100% + 8px);
        top: 0px;
      }

      .blog-list__date {
        font-size: 16px;
        padding-right: 20px;
        padding-left: 0;
      }

      .blog-list__item {
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: 60px;
      }

      .blog-list__content-wrapper {
        width: calc(50% - 30px);
        margin-left: 30px;
      }

      .blog-list__item:nth-child(even) .blog-list__date-wrapper {
        left: auto;
        right: 0;
        text-align: left;
      }

      .blog-list__item:nth-child(even) .blog-list__date-wrapper::before {
        left: -28px;
      }

      .blog-list__item:nth-child(even) .blog-list__date {
        padding-right: 0;
        padding-left: 20px;
      }

      .blog-list__item:nth-child(even) .blog-list__content-wrapper {
        margin-left: auto;
        margin-right: 30px;
        order: -1;
      }
    }

    @media (min-width: 1025px) {
      .blog-list__title {
        font-size: 36px;
      }

      .blog-list__description {
        font-size: 18px;
      }

      .blog-list__timeline-container {
        padding: 0 40px;
      }

      .blog-list__date-wrapper {
        width: calc(50% - 40px);
      }

      .blog-list__content-wrapper {
        width: calc(50% - 40px);
      }

      .blog-list__item:nth-child(odd) .blog-list__content-wrapper {
          margin-left: 40px;
      }
      .blog-list__item:nth-child(even) .blog-list__content-wrapper {
          margin-right: 40px;
      }
    }