:root {
      --primary-color: #f7b32b; 
      --secondary-color: #333333; 
      --background-color: #1a1a1a; 
      --text-color: #ffffff; 
      --light-text-color: #cccccc; 
      --border-color: #444444; 
      --shadow-color: rgba(0, 0, 0, 0.5);
      --header-offset: 120px; 
    }

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

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

    .blog-list__section-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
      padding-top: 20px;
      line-height: 1.2;
    }

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

    .blog-list__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    @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__card {
      background-color: var(--secondary-color);
      border-radius: 10px;
      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;
      position: relative;
    }

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

    .blog-list__card-image {
      width: 100%;
      padding-bottom: 56.25%; 
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
    }

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

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

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

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

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

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

    .blog-list__card-date {
      color: #999999;
      font-size: 13px;
    }

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

    .blog-list__read-more:hover {
      background-color: #e0a226; 
      color: #ffffff;
    }

    .blog-list__view-all-button {
      display: block;
      width: fit-content;
      margin: 40px auto 0 auto;
      background-color: var(--primary-color);
      color: var(--secondary-color);
      padding: 12px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 1.1em;
      font-weight: bold;
      transition: background-color 0.3s ease, color 0.3s ease;
    }

    .blog-list__view-all-button:hover {
      background-color: #e0a226;
      color: #ffffff;
    }