    html {
      font-size: 10px;
      font-family: "Vazir";
    }
    .blog {
      width: 100%;
    }
    .blog-title {
      font-size: 2.8rem;
      font-weight: 700;
      text-align: center;
      margin: 2rem 0;
      color: #2f2b24;
    }
    .blog-items {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 30px;
      padding: 0 1rem;
    }
    .blog-items:has(.blog-item:only-child) {
      justify-content: center;
      display: flex;
    }
    .blog-item {
      margin-top: 2rem;
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s;
    }
    .blog-item:hover {
      transform: translateY(-5px);
    }
    .blog-item__img {
      width: 100%;
      height: 250px;
      overflow: hidden;
    }
    .blog-item__img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .blog-item-footer {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .blog-item__title {
      font-size: 20px;
      font-weight: 600;
      color: #333;
      margin-bottom: 10px;
    }
    .blog-item__desc {
      text-align: center;
      font-size: 16px;
      color: #666;
      flex-grow: 1;
      margin-bottom: 15px;
    }

    .blog-item__link {
      font-size: 15px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 0.8rem;
      height: 4rem;
      background: #2a7279;
      color: #fff;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.9s;
    }
    .blog-item__link:hover {
      background: #338a92c5;
    }
    .blog-item__date {
      font-size: 14px;
      color: #307278;
      margin-bottom: 10px;
    }
    @media (max-width: 450px) {
      .blog-items {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }