.blog-card {
  position: relative;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid #eee;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.06);
}

.blog-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(58,87,160,0.3), transparent);
}

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #f11c28;
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 2;
}

.blog-content {
  padding: 15px 15px 20px 15px;
}

.blog-date {
  font-size: 12px;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
}

.blog-title {
  font-size: 18px !important;
  font-weight: 600;
  margin: 10px 0 12px;
  line-height: 1.4;
  transition: 0.3s;
}

.blog-card:hover .blog-title {
  color: #f11c28;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.read-more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #3a57a0;
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.read-more:hover {
  color: #f11c28;
}

.read-more::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #f11c28;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}

.read-more:hover::after {
  width: 100%;
}

.blog-content-area {
  background: #fff;
  padding: 0;
}

.blog-heading {
  font-size: 32px !important;
  font-weight: 600;
  margin: 10px 0 !important;
  padding-bottom: 0;
}

.blog-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 20px !important;
}

.blog-content-area p {
  color: #444;
  font-size: 15px;
  margin-bottom: 10px !important;
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px 20px;
  border-radius: 12px;
}

.sidebar-box .heading {
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.sidebar-box .heading::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #f11c28;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.recent-post div {
  display: flex;
  flex-direction: column;
}

.recent-date {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.recent-date::before {
  content: "•";
  color: #f11c28;
  margin-right: 6px;
}

.recent-post img {
  width: 85px;
  height: 65px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 12px;
}

.recent-post a {
  font-size: 14px;
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.recent-post a:hover {
  color: #f11c28;
}

@media screen and (max-width: 767px) {
  .blog-heading {
    font-size: 22px !important;
    line-height: 32px !important;
    padding-bottom: 0 !important;
  }
}