/* ========================= */
/* SECTION */
/* ========================= */
.blog-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1F44, #102A5C);
  color: #fff;
  text-align: center;
}

/* TITLE */
.blog-title {
  font-size: 36px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #1E90FF, #4DB8FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-subtitle {
  color: #C0D6FF;
  margin-bottom: 50px;
}

/* ========================= */
/* GRID */
/* ========================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* ========================= */
/* CARD */
/* ========================= */
.blog-card {
  background: #163B7A;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  text-align: left;
  position: relative;
}

/* Hover */
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(30,144,255,0.4);
}

/* ========================= */
/* IMAGE */
/* ========================= */
.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  transition: 0.4s;
}

/* Zoom hover */
.blog-card:hover img {
  transform: scale(1.1);
}

/* Category badge */
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #1E90FF;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* ========================= */
/* CONTENT */
/* ========================= */
.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #C0D6FF;
  margin-bottom: 15px;
}

/* META */
.blog-meta {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 15px;
}

/* ========================= */
/* BUTTON */
/* ========================= */
.btn-blog {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg, #1E90FF, #4DB8FF);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  pointer-events: auto !important;
}

/* Hover */
.btn-blog:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(30,144,255,0.6);
}

/* CTA */
.blog-cta {
  margin-top: 50px;
}

.btn-all {
  padding: 14px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4DB8FF, #1E90FF);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* ========================= */
/* FIX KLIK */
/* ========================= */
.blog-card,
.blog-card * {
  pointer-events: auto;
}