body {
    background: #fff;
    color: #333;
    font-family: Arial, sans-serif;
}

.blog-listsc{padding: 4rem 0 0;}

.categ-rw{margin-bottom: 3.5rem;margin-top: 3rem;}

.blog-listsc h1 {
  font-size: 40px;
  line-height: 50px;
  margin: 10px 0;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}
.blog-listsc h1::after, .blog-listsc h1::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  background: #000;
}
.blog-listsc h1::after {
  width: 40px;
  left: 0;
}
.blog-listsc h1::before {
  width: 3px;
  left: 45px;
  border-radius: 3px;
}
.blog-listsc h5 {
  font-size: 30px;
  line-height: 34px;
  font-weight: 600;
  margin: 14px 0;
}

.blog-card .para-cnt1 {
  margin: 0;
}

.categ-rw .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #aaa;
}

.blog-card {
    background: #fff;
    margin-bottom: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    -webkit-transform: translateY(-5px);
}

.blog-im {
    background: #fff;
    border: 1px solid #ddd;
    overflow: hidden;
    position: relative;
}
.blog-im::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  right: 0;
  bottom: 0;
  background: #000;
}
.blog-im::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  right: 24px;
  bottom: 24px;
  background: url('../images/arr.webp') no-repeat scroll center;
  background-size: contain;
  filter: brightness(0) invert(1);
  z-index: 10;
  transition: 0.5s ease-in-out all 0s;
  -webkit-transition: 0.5s ease-in-out all 0s;
}
.blog-card:hover .blog-im {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.blog-card:hover .blog-im:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.blog-card img {
    width: 100%;
    height: 330px !important;
    object-fit: cover;
}

.btn.btn-outline-secondary.category-btn {
  border-color: #ddd;
}

.search-suggestions {
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    width: 100%;
    z-index: 10;
    border-radius: 6px;
}

.search-suggestions div {
    padding: 8px;
    cursor: pointer;
}

.search-suggestions div:hover {
    background: #f0f0f0;
}

.category-btn.active {
    background: #0d6efd !important;
    color: #fff !important;
}