.blog-list {
      background-color: #1a1a1a;
      color: #f0f0f0;
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      padding-bottom: 40px;
    }

    .blog-list__section {
      max-width: 1200px;
      margin: 0 auto;
      padding: var(--header-offset, 120px) 20px 0;
      position: relative;
    }

    .blog-list__title {
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 20px;
      color: #ffd700;
      font-weight: bold;
    }

    .blog-list__description {
      font-size: 1.1em;
      text-align: center;
      margin-bottom: 40px;
      color: #cccccc;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    @media (min-width: 768px) {
      .blog-list__timeline::before {
        content: '';
        position: absolute;
        width: 4px;
        background-color: #333;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
      }
    }

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

    @media (min-width: 768px) {
      .blog-list__item {
        flex-direction: row;
        width: 50%;
        margin-bottom: 60px;
      }
      .blog-list__item:nth-child(even) {
        margin-left: 50%;
      }
      .blog-list__item:nth-child(odd) {
        padding-right: 50px;
        text-align: right;
      }
      .blog-list__item:nth-child(even) {
        padding-left: 50px;
        text-align: left;
      }
    }

    .blog-list__item-date-wrapper {
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: bold;
      margin-bottom: 15px;
      align-self: flex-start;
      text-align: center;
    }

    @media (min-width: 768px) {
      .blog-list__item-date-wrapper {
        position: absolute;
        top: 20px;
        transform: translateY(-50%);
        z-index: 3;
        width: 120px;
        margin-bottom: 0;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
        right: -180px;
      }
      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: -180px;
      }
    }

    .blog-list__item-date {
      font-size: 0.9em;
      display: block;
    }

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

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

    @media (min-width: 768px) {
      .blog-list__item-content-wrapper {
        width: 100%;
      }
    }

    .blog-list__item-link {
      display: block;
    }

    .blog-list__item-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
    }

    .blog-list__item-text-content {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

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

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

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

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

    .blog-list__item-read-more {
      display: inline-block;
      margin-top: auto;
      color: #ffd700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
      align-self: flex-start;
    }

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

    .blog-list__view-all-wrapper {
      text-align: center;
      margin-top: 50px;
    }

    .blog-list__view-all-button {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, color 0.3s ease;
      border: 2px solid #ffd700;
    }

    .blog-list__view-all-button:hover {
      background-color: #ffeb3b;
      border-color: #ffeb3b;
    }

    @media (max-width: 767px) {
      .blog-list__section {
        padding-left: 15px;
        padding-right: 15px;
      }
      .blog-list__item-date-wrapper {
        font-size: 0.8em;
        padding: 6px 12px;
        margin-left: auto;
        margin-right: auto;
      }
      .blog-list__item-image {
        height: 180px;
      }
      .blog-list__item-title {
        font-size: 1.2em;
      }
      .blog-list__item-summary {
        font-size: 0.9em;
      }
    }

    @media (min-width: 768px) and (max-width: 1024px) {
      .blog-list__item-date-wrapper {
        width: 100px;
        font-size: 0.85em;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
        right: -160px;
      }
      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: -160px;
      }
      .blog-list__item-image {
        height: 220px;
      }
    }

    @media (min-width: 1025px) {
      .blog-list__item-image {
        height: 250px;
      }
      .blog-list__item-date-wrapper {
        width: 120px;
      }
      .blog-list__item:nth-child(odd) .blog-list__item-date-wrapper {
        right: -180px;
      }
      .blog-list__item:nth-child(even) .blog-list__item-date-wrapper {
        left: -180px;
      }
    }

    .blog-list a {
      color: #ffd700;
      text-decoration: none;
    }
    .blog-list a:hover {
      color: #ffeb3b;
    }