@import url("https://fonts.googleapis.com/css2?family=Allan:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

.blogs-section {
  padding: 80px 20px;
  text-align: center;
  background: transparent;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.blogs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.blog-card {
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(22, 213, 162, 0.838);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 1.rem;
  margin-bottom: 10px;
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.blog-content p {
  font-size: 0.95rem;
  color: #b2b2b2;
  margin-bottom: 15px;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.btn-blog {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: #c780238a;
  color: rgb(227, 227, 227);
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-blog:hover {
  background: #0056b3;
}

/* Animasi muncul */
.blog-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* baru */
.card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* sahep bawah */
