:root {
      --primary-color: #f7b32b; 
      --secondary-color: #2c3e50; 
      --text-color-light: #ecf0f1; 
      --text-color-dark: #34495e; 
      --background-dark: #1a1a1a; 
      --background-light-card: #282828; 
      --border-radius-medium: 10px;
      --spacing-unit: 20px;
      --header-offset: 120px; 
    }

    .blog-list {
      background-color: var(--background-dark);
      color: var(--text-color-light);
      min-height: 100vh;
      padding-top: var(--header-offset); 
      padding-bottom: calc(var(--spacing-unit) * 2); 
      font-family: Arial, sans-serif; 
    }

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-unit);
    }

    .blog-list__header-section {
      text-align: center;
      padding: var(--spacing-unit) 0;
      margin-bottom: var(--spacing-unit);
    }

    .blog-list__heading {
      font-size: 2.5em; 
      color: var(--primary-color);
      margin-bottom: calc(var(--spacing-unit) / 2);
      line-height: 1.2;
    }

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

    .blog-list__grid {
      display: grid;
      gap: var(--spacing-unit); 
      grid-template-columns: 1fr; 
    }

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

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

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

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

    .blog-list__link-wrapper {
      text-decoration: none;
      color: inherit;
    }

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

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

    .blog-list__content {
      padding: var(--spacing-unit);
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .blog-list__title {
      font-size: 1.25em; 
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-list__title-link {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__title-link:hover {
      color: #ffd700; 
    }

    .blog-list__summary {
      font-size: 0.9em; 
      color: #b0b0b0;
      margin-bottom: 15px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 3; 
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      min-height: 3em; 
    }

    .blog-list__footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      flex-wrap: wrap;
      gap: 10px;
    }

    .blog-list__date {
      font-size: 0.85em; 
      color: #999;
      white-space: nowrap;
    }

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

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