:root {
      --primary-color: #e74c3c; 
      --secondary-color: #2c3e50; 
      --text-color: #2c3e50;
      --light-text-color: #555;
      --border-color: #eee;
      --background-light: #f9f9f9;
      --card-shadow: rgba(0, 0, 0, 0.08);
      --card-shadow-hover: rgba(0, 0, 0, 0.15);
      --header-offset: 120px; 
    }

    .blog-list__section * {
      box-sizing: border-box;
    }

    .blog-list {
      padding-top: var(--header-offset); 
      padding-bottom: 60px;
      background-color: var(--background-light);
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
    }

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

    .blog-list__main-title {
      font-size: 2.5em; 
      color: var(--secondary-color);
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      line-height: 1.2;
      padding: 0 10px;
    }

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

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

    .blog-list__card {
      background-color: #fff;
      border-radius: 10px; 
      overflow: hidden;
      box-shadow: 0 4px 15px var(--card-shadow);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%; 
      position: relative; 
    }

    .blog-list__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px var(--card-shadow-hover);
    }

    .blog-list__card-image-link {
      display: block;
      text-decoration: none;
    }

    .blog-list__card-image-wrapper {
      position: relative;
      width: 100%;
      padding-top: 56.25%; 
      overflow: hidden;
      background-color: #f0f0f0; 
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .blog-list__no-image-text {
      color: #ccc; 
      font-size: 1.2em;
      text-align: center;
      padding: 20px;
    }

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

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

    .blog-list__card-date {
      font-size: 0.85em; 
      color: #7f8c8d; 
      margin-bottom: 10px;
      display: block;
      text-align: right;
    }

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

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

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

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

    .blog-list__card-read-more {
      display: inline-block;
      margin-top: 10px;
      padding: 10px 20px;
      background-color: var(--primary-color);
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 0.9em;
      font-weight: bold;
      transition: background-color 0.3s ease;
      align-self: flex-start; 
    }

    .blog-list__card-read-more:hover {
      background-color: #c0392b; 
    }

    
    .blog-list__card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 20px; 
      background-color: var(--primary-color);
      z-index: 1;
      opacity: 0.2; 
    }

    .blog-list__card:first-child::before {
      height: 0; 
    }
    
    
    @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); 
      }
    }