        .blog-list img {
    height: 225px;
    width: 100%;
    object-fit: cover;
}
.blog-list .tp-post__content {
    padding: 30px 30px 26px;
    background-color: #f4f3f3;
}
.blog-list .tp-title {
        font-size: 22px;
    line-height: 1.363;
    position: relative;
    padding-bottom: 18px;
}

.blog-list .tp-title:before {
    width: 37px;
    height: 3px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffa200;
    background-image: -webkit-gradient(linear, left top, right top, from(#ffa200), to(#fb5850));
    background-image: -webkit-linear-gradient(left, #ffa200, #fb5850);
    background-image: -moz-linear-gradient(left, #ffa200, #fb5850);
    background-image: -ms-linear-gradient(left, #ffa200, #fb5850);
    background-image: -o-linear-gradient(left, #ffa200, #fb5850);
    background-image: linear-gradient(left, #ffa200, #fb5850);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffa200', endColorStr='#fb5850', gradientType='1');
}
.blog-list .tp-title a:hover {
        color: #c20b0b;
}
.blog-list .bp-result {
    display: none !important;
}
.blog-list .tp-title a {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 120px;
}
.blog-list .tp-post-item {
    margin-bottom: 30px;
}

.products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.products-title {
    position: relative;
}
.products-title p {
    max-width: 500px;
}
.products-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
}

.products-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background-color: #333;
}

.products-heading {
    font-size: 48px;
    font-weight: 700;
    color: #d32f2f;
    letter-spacing: 1px;
}

.products-description {
    display: flex;
    gap: 20px;
}


.blog-list .blog-btn {
      border: 1px solid gray;
  background-image: -webkit-linear-gradient(left, #CA3024, #5F0202) !important;
  border-radius: 6px;
  color: white;
  font-weight: 700;
  width: 200px;
  line-height: 40px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: 0.5s;
  font-size: 12px;
  display: flex;
    align-items: center;
    justify-content: center;
}

.blog-list .blog-btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: black;
}
.blog-list .more-btn:before {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  transition: width 0.25s linear;
}
.blog-list .more-btn:hover:before {
  width: 100%;
}
@media (max-width: 992px) {
    .products-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .products-heading {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .products-heading {
        font-size: 28px;
    }
    
    .products-label {
        font-size: 12px;
        padding-left: 40px;
    }
    
    .products-label::before {
        width: 28px;
    }
    
}
