.blog-list {
      padding-top: var(--header-offset, 120px); 
      padding-bottom: 40px;
      background-color: #f8f9fa; 
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .blog-list__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      width: 100%;
      display: grid;
      gap: 30px; 
      grid-template-columns: repeat(1, 1fr); 
    }

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

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

    .blog-list__item {
      background-color: #ffffff;
      border-radius: 12px; 
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      border: 1px solid #e0e0e0;
    }

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

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

    .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__date {
      font-size: 14px; 
      color: #6c757d; 
      margin-bottom: 10px;
      font-weight: 500;
    }

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

    .blog-list__title-link {
      color: #0056b3; 
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-list__title-link:hover {
      color: #003f80; 
      text-decoration: underline;
    }

    .blog-list__summary {
      font-size: 16px; 
      color: #555555; 
      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;
      margin-top: auto; 
      padding: 10px 15px;
      background-color: #0056b3; 
      color: #ffffff; 
      text-decoration: none;
      border-radius: 5px;
      font-size: 15px;
      font-weight: 600;
      transition: background-color 0.3s ease;
      align-self: flex-start; 
    }

    .blog-list__read-more:hover {
      background-color: #003f80; 
    }

    .blog-list__section-header {
      width: 100%;
      max-width: 1200px;
      padding: 20px;
      text-align: center;
      margin-bottom: 20px;
    }

    .blog-list__section-title {
      font-size: 32px;
      font-weight: bold;
      color: #212529;
      margin-bottom: 15px;
    }

    .blog-list__section-description {
      font-size: 18px;
      color: #555555;
      line-height: 1.5;
      max-width: 800px;
      margin: 0 auto 20px auto;
    }

    .blog-list__view-all-button {
      display: inline-block;
      padding: 12px 25px;
      background-color: #218838; 
      color: #ffffff;
      text-decoration: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 700;
      transition: background-color 0.3s ease;
    }

    .blog-list__view-all-button:hover {
      background-color: #1e7e34; 
    }