/* MAIN */
.bys4-blog-page {
  padding: 60px 20px;
  background: #f8fafc;
  font-family: 'Poppins', sans-serif;
}

.bys4-container {
  max-width: 1200px;
  margin: auto;
}

.bys4-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111827;
}

/* GRID */
.bys4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.bys4-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.bys4-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* IMAGE */
.bys4-img-wrap {
  overflow: hidden;
}

.bys4-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s;
}

.bys4-card:hover img {
  transform: scale(1.08);
}

/* CONTENT */
.bys4-content {
  padding: 20px;
}

.bys4-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.bys4-content p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .bys4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bys4-grid {
    grid-template-columns: 1fr;
  }

  .bys4-title {
    font-size: 24px;
  }
}
