/* HERO */
.blogs-hero {
  background: linear-gradient(45deg, #0e2051, #0b2a45);
  color: #fff;
  padding: 90px 0;
  text-align: center;
}

.blogs-hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.blogs-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* BLOG SECTION */
.blogs-section {
  padding: 70px 0;
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

/* IMAGE */
.blog-img {
  position: relative;
  height: 220px;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #0b2a45;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
}

/* CONTENT */
.blog-content {
  padding: 22px;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #111827;
}

.blog-content p {
  color: #0e2051;
  font-size: 15px;
  line-height: 1.6;
}

/* FOOTER */
.blog-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #6b7280;
  margin: 15px 0;
}

/* READ MORE BUTTON */
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  background: #0b2a45;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: background .3s ease;
}

.read-more-btn:hover {
    
  background: #ff7a00;
}
