.blog-list {
      padding-top: var(--header-offset, 120px);
      background-color: #1a1a1a;
      color: #f0f0f0;
      min-height: 100vh;
      font-family: Arial, sans-serif;
    }

    .blog-list__hero {
      text-align: center;
      padding: 40px 20px;
      margin-bottom: 30px;
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      border-bottom: 2px solid #ffcc00;
    }

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

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

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

    .blog-list__section-heading {
      font-size: 2em;
      color: #ffcc00;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .blog-list__section-heading::after {
      content: '';
      display: block;
      width: 60px;
      height: 3px;
      background-color: #ffcc00;
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .blog-list__timeline-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      position: relative;
      padding-bottom: 20px;
    }

    @media (min-width: 768px) {
      .blog-list__timeline-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .blog-list__timeline-container {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .blog-list__item {
      background-color: #2a2a2a;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }

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

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

    .blog-list__date-wrapper {
      position: absolute;
      top: 15px;
      right: 15px;
      background-color: rgba(0, 0, 0, 0.7);
      color: #ffcc00;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.85em;
      z-index: 2;
    }

    .blog-list__published-date {
      white-space: nowrap;
    }

    .blog-list__card-content {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-list__image-container {
      width: 100%;
      padding-bottom: 56.25%; 
      position: relative;
      background-color: #333; 
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-bottom: 1px solid #3a3a3a;
    }

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

    .blog-list__title {
      font-size: 1.3em;
      color: #ffcc00;
      margin-bottom: 10px;
      line-height: 1.3;
      font-weight: bold;
      z-index: 2;
    }
    
    .blog-list__title a {
        color: inherit;
        text-decoration: none;
    }
    
    .blog-list__title a:hover {
        text-decoration: underline;
    }

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

    .blog-list__read-more-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a1a1a;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      align-self: flex-start;
      margin-top: auto;
      z-index: 2;
    }

    .blog-list__read-more-button:hover {
      background-color: #ffe066;
      color: #000;
    }