:root {
      --primary-color: #e44d26; 
      --secondary-color: #f7b731; 
      --text-dark: #333333;
      --text-light: #555555; 
      --background-light: #f5f5f5;
      --background-dark: #ffffff;
      --border-color: #e0e0e0;
      --shadow-color: rgba(0, 0, 0, 0.1);
      --shadow-hover-color: rgba(0, 0, 0, 0.2);
      --header-offset: 120px; 
    }

    
    .blog-list {
      font-family: 'Arial', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      padding-top: var(--header-offset); 
      padding-bottom: 40px;
      background-color: var(--background-light);
      min-height: 80vh; 
    }

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

    .blog-list__title {
      font-size: 2.5em; 
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      padding-top: 20px; 
    }

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

    .blog-list__grid {
      display: grid;
      gap: 25px; 
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    }

    
    .blog-list__card {
      background-color: var(--background-dark);
      border-radius: 10px; 
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow-color); 
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      position: relative; 
    }

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

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

    .blog-list__image-wrapper {
      width: 100%;
      padding-top: 56.25%; 
      position: relative;
      overflow: hidden;
      background-color: #f0f0f0; 
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

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

    .blog-list__heading {
      margin-top: 0;
      margin-bottom: 10px;
    }

    .blog-list__title-link {
      font-size: 1.25em; 
      font-weight: bold;
      color: var(--primary-color);
      text-decoration: none;
      display: block;
      transition: color 0.3s ease;
    }

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

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

    .blog-list__meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto; 
      padding-top: 10px;
      border-top: 1px solid var(--border-color);
    }

    .blog-list__published-at {
      font-size: 0.85em; 
      color: var(--text-light); 
    }

    .blog-list__read-more {
      display: inline-block;
      padding: 8px 15px;
      background-color: var(--primary-color);
      color: #ffffff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      white-space: nowrap; 
    }

    .blog-list__read-more:hover {
      background-color: var(--secondary-color);
    }

    
    .blog-list__grid.blog-list__grid--timeline {
      position: relative;
    }

    
    @media (max-width: 767px) {
      .blog-list__grid.blog-list__grid--timeline::before {
        content: '';
        position: absolute;
        top: 0;
        left: 30px; 
        width: 2px;
        height: 100%;
        background-color: var(--primary-color);
        z-index: 0;
      }

      .blog-list__card {
        margin-left: 50px; 
      }

      .blog-list__card::before {
        content: '';
        position: absolute;
        left: -20px; 
        top: 20px; 
        width: 12px;
        height: 12px;
        background-color: var(--primary-color);
        border: 2px solid var(--background-dark);
        border-radius: 50%;
        z-index: 1;
      }
    }

    

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

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

    
    .blog-list__title {
      color: var(--primary-color); 
    }
    .blog-list__description,
    .blog-list__summary,
    .blog-list__published-at {
      color: var(--text-light); 
    }
    .blog-list__title-link {
      color: var(--primary-color); 
    }
    .blog-list__read-more {
      color: #ffffff; 
    }