:root {
      --k9bet-primary-color: #007bff; 
      --k9bet-secondary-color: #6c757d; 
      --k9bet-accent-color: #ffc107; 
      --k9bet-text-dark: #333333;
      --k9bet-text-light: #ffffff;
      --k9bet-background-light: #f8f9fa;
      --k9bet-background-white: #ffffff;
      --k9bet-border-color: #e0e0e0;
      --header-offset: 120px; 
    }

    .blog-list {
      padding-top: var(--header-offset, 120px);
      padding-bottom: 60px;
      background-color: var(--k9bet-background-light);
      font-family: 'Arial', sans-serif;
      color: var(--k9bet-text-dark);
      padding-left: 15px;
      padding-right: 15px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }

    .blog-list__heading {
      text-align: center;
      margin-top: 40px;
      margin-bottom: 20px;
      color: var(--k9bet-text-dark);
      font-size: 2.2em;
      font-weight: bold;
      line-height: 1.3;
    }

    .blog-list__description {
      text-align: center;
      margin-bottom: 50px;
      font-size: 1.1em;
      color: var(--k9bet-secondary-color);
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
    }

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

    .blog-list__item {
      background-color: var(--k9bet-background-white);
      border-radius: 12px; 
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .blog-list__image-wrapper {
      width: 100%;
      padding-top: 56.25%; 
      position: relative;
      background-color: #f0f0f0; 
      border-bottom: 1px solid var(--k9bet-border-color);
    }

    .blog-list__image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px 12px 0 0;
    }

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

    .blog-list__date {
      font-size: 0.85em;
      color: var(--k9bet-secondary-color);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .blog-list__date::before {
        content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%236c757d" viewBox="0 0 16 16"><path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/><path d="M7.5 3a.5.5 0 0 1 .5.5v5.21l3.248 1.855a.5.5 0 0 1-.5.866L8 9.14V3.5a.5.5 0 0 1-.5-.5"/></svg>');
        display: inline-block;
        width: 16px;
        height: 16px;
        line-height: 1;
        vertical-align: middle;
    }

    .blog-list__title {
      font-size: 1.3em; 
      font-weight: bold;
      margin-bottom: 10px;
      line-height: 1.4;
      color: var(--k9bet-text-dark);
      text-decoration: none;
    }

    .blog-list__title:hover {
      color: var(--k9bet-primary-color);
    }

    .blog-list__summary {
      font-size: 0.95em; 
      color: #666666;
      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__read-more {
      display: inline-block;
      margin-top: auto; 
      padding: 10px 15px;
      background-color: var(--k9bet-primary-color);
      color: var(--k9bet-text-light);
      text-decoration: none;
      border-radius: 8px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start;
    }

    .blog-list__read-more:hover {
      background-color: #0056b3; 
    }

    .blog-list__view-all-button-wrapper {
        text-align: center;
        margin-top: 60px;
    }

    .blog-list__view-all-button {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--k9bet-accent-color);
        color: var(--k9bet-text-dark);
        text-decoration: none;
        border-radius: 10px;
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    @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); 
      }
    }