:root {
      --primary-color: #007bff; 
      --secondary-color: #ffc107; 
      --text-dark: #212529;
      --text-medium: #495057;
      --text-light: #6c757d;
      --background-light: #f8f9fa;
      --border-color: #e9ecef;
      --shadow-light: rgba(0, 0, 0, 0.08);
      --shadow-hover: rgba(0, 0, 0, 0.15);
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: var(--background-light);
      font-family: 'Arial', sans-serif; 
      color: var(--text-dark);
    }

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

    .blog-list__header {
      text-align: center;
      margin-bottom: 50px;
      padding: 30px 0;
    }

    .blog-list__title {
      font-size: 2.5em; 
      color: var(--text-dark);
      margin-bottom: 15px;
      font-weight: bold;
      line-height: 1.2;
    }

    .blog-list__description {
      font-size: 1.1em; 
      color: var(--text-medium);
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .blog-list__timeline {
      display: grid;
      gap: 30px; 
    }

    .blog-list__item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .blog-list__date {
      background-color: var(--primary-color);
      color: #fff;
      padding: 8px 18px;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px var(--shadow-light);
      text-align: center;
      min-width: 120px; 
    }

    .blog-list__card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px var(--shadow-light);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      display: flex;
      flex-direction: column;
    }

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

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

    .blog-list__image-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; 
      overflow: hidden;
    }

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

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

    .blog-list__post-title {
      font-size: 1.35em; 
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__post-title a {
      color: var(--text-dark);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__post-title a:hover {
      color: var(--primary-color);
    }

    .blog-list__post-summary {
      font-size: 1em; 
      color: var(--text-medium);
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    .blog-list__read-more {
      display: inline-block;
      background-color: var(--secondary-color);
      color: var(--text-dark); 
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
      align-self: flex-start;
      font-size: 0.95em;
    }

    .blog-list__read-more:hover {
      background-color: #e0a800; 
      color: var(--text-dark);
    }

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

      .blog-list__item {
        align-items: flex-start;
      }

      .blog-list__date {
        align-self: flex-start;
      }
    }

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