
/* Judul Seksi */
.title-modern {
  font-size: 32px;
  font-weight: 700;
  color: #1e1e1e;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* Card Blog Modern */
.card-blog-modern {
  background: #fff;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-blog-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Image & Badge */
.card-blog-modern .card-img {
  position: relative;
  overflow: hidden;
}

.card-blog-modern .card-img img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-blog-modern:hover .card-img img {
  transform: scale(1.1);
}

.card-category-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #0078ff;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Body & Title */
.card-blog-modern .card-body {
  padding: 25px 20px;
  flex-grow: 1;
}

.card-title-modern {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-title-modern a {
  color: #1e1e1e;
  text-decoration: none;
  transition: 0.3s;
}

.card-title-modern a:hover {
  color: #0078ff;
}

.card-description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Footer */
.card-footer-modern {
  padding: 15px 20px;
  background: #fafafa;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
}

.card-footer-modern i {
  color: #0078ff;
  margin-right: 5px;
}
