.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px; /* spacing lebih lega */
}

.blog-card {
  background: #FFF;
  border-radius: 16px;
  overflow: hidden;
  border-top: 7px solid rgba(255, 0, 0, 0.85);   
  border-right: 5px solid rgba(255, 0, 0, 0.7);
  box-shadow: 0 0 3px rgba(255, 0, 0, 0.7);     /* aura glow merah elegan */
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Semua gambar responsif */
.blog-card img {
  display: block;
  width: 100%;
  height: auto;       /* biar proporsional */
  object-fit: cover;  /* isi frame tanpa distorsi */
}

/* Card besar */
.blog-card.large img {
  min-height: 240px;  /* tinggi minimum card besar */
}

/* Card kecil */
.blog-card.small img {
  min-height: 120px;  /* tinggi minimum card kecil */
}

.blog-info {
  padding: 14px;
  color: #333;
}

/* Tombol ala iOS */
.ios-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #D21212;   /* biru khas iOS */
  color: #FFF;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background .3s ease, transform .2s ease;
  margin-top: 10px; /* jarak biar nggak mepet */
}

.ios-btn:hover {
  background: #FC0000;
  transform: scale(1.05);
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  margin-top: 8px;
}

.accordion-content.open {
  max-height: 300px; /* lebih lega */
}

/* Responsive mobile */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px; /* spacing antar card lebih lega di mobile */
  }

  .blog-card.small {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px; /* jarak antara gambar dan deskripsi */
  }

  .blog-card.small img {
    width: 40%;
    height: auto;
  }

  .blog-card.small .blog-info {
    width: 60%;
    padding: 12px;
  }
}