:root {
      --primary-color: #FFD700;
      --secondary-color: #333;
      --text-color: #fff;
      --text-dark: #2c3e50;
      --text-light-grey: #c0c0c0;
      --background-dark: #1a1a1a;
      --card-background: #282828;
      --border-color: #444;
      --shadow-color: rgba(0, 0, 0, 0.3);
      --hover-shadow-color: rgba(0, 0, 0, 0.5);
      --header-offset: 120px;
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 40px;
      background-color: var(--background-dark);
      color: var(--text-color);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      min-height: calc(100vh - var(--header-offset, 120px) - 100px);
    }

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

    .blog-list__header {
      text-align: center;
      margin-bottom: 40px;
      padding-top: 20px;
    }

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

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

    .blog-list__view-all-button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--text-dark);
      padding: 12px 25px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.2s ease;
      font-size: 1em;
      border: none;
      cursor: pointer;
    }

    .blog-list__view-all-button:hover {
      background-color: #FFC000;
      transform: translateY(-2px);
    }

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

    @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(--card-background);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px var(--shadow-color);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

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

    .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;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

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

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

    .blog-list__item-link:hover {
      color: #FFC000;
    }

    .blog-list__summary {
      font-size: 15px;
      color: var(--text-light-grey);
      margin-bottom: 15px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      flex-grow: 1;
    }

    .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: 13px;
      color: var(--text-light-grey);
    }

    .blog-list__read-more {
      display: inline-block;
      color: var(--primary-color);
      text-decoration: none;
      font-weight: bold;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .blog-list__read-more:hover {
      color: #FFC000;
      text-decoration: underline;
    }