:root {
      --primary-color: #c98a00; 
      --primary-color-dark: #a87200;
      --secondary-color: #333;
      --text-color-dark: #333;
      --text-color-medium: #666;
      --text-color-light: #999;
      --background-light: #f8f8f8;
      --background-white: #ffffff;
      --border-color: #eee;
      --shadow-light: 0 4px 8px rgba(0, 0, 0, 0.05);
      --shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.1);
      --header-offset: 120px; 
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      background-color: var(--background-light);
      padding-bottom: 40px;
      min-height: calc(100vh - var(--header-offset, 120px) - 200px); 
    }

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

    .blog-list__heading {
      text-align: center;
      color: var(--secondary-color);
      margin-bottom: 30px;
      font-size: 2.5em;
      font-weight: bold;
      line-height: 1.2;
      padding: 20px 0;
    }

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

    .blog-list__item {
      background-color: var(--background-white);
      border-radius: 12px; 
      overflow: hidden;
      box-shadow: var(--shadow-light); 
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .blog-list__item:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover); 
    }

    .blog-list__item-image-wrapper {
      width: 100%;
      padding-bottom: 56.25%; 
      position: relative;
      background-color: #eee; 
      overflow: hidden;
      display: block; 
    }

    .blog-list__item-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: block;
    }

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

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

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

    .blog-list__item-title-link:hover {
      color: var(--primary-color);
    }

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

    .blog-list__item-footer {
      margin-top: auto; 
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .blog-list__item-meta {
      font-size: 13px; 
      color: var(--text-color-light);
    }

    .blog-list__item-read-more {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--background-white);
      padding: 10px 18px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      font-size: 15px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-align: center;
      border: none;
      cursor: pointer;
    }

    .blog-list__item-read-more:hover {
      background-color: var(--primary-color-dark); 
      transform: translateY(-2px);
    }

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

    @media (max-width: 1024px) and (min-width: 768px) {
      .blog-list__grid {
        grid-template-columns: repeat(2, 1fr); 
      }
      .blog-list__heading {
        font-size: 2em;
      }
    }

    @media (max-width: 767px) {
      .blog-list__grid {
        grid-template-columns: 1fr; 
      }
      .blog-list__item {
        margin: 0 10px; 
      }
      .blog-list__container {
        padding: 15px;
      }
      .blog-list__heading {
        font-size: 1.8em;
        padding: 15px 0;
      }
    }