/* ==========================================
   TAMPILAN UMUM & MOBILE (Default)
   ========================================== */
.waru-seo-card {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 6px; 
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 100%;
}

.waru-seo-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #0a0a0a;
}

.waru-seo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.2) brightness(0.8) grayscale(10%); 
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.waru-seo-card:hover .waru-seo-img {
  transform: scale(1.04);
}

.waru-seo-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.waru-seo-title {
  font-size: 1.15rem; 
  font-weight: 700;
  color: #111111;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.waru-seo-subtitle {
  font-size: 0.85rem;
  color: #555555;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.waru-seo-accordion-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.waru-seo-acc-item {
  border-bottom: 1px solid #ebebeb;
}

.waru-seo-acc-item:last-child {
  border-bottom: none;
}

.waru-seo-acc-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.02em;
}

.waru-seo-acc-icon {
  font-size: 1.1rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  color: #333;
}

.waru-seo-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.waru-seo-acc-panel p {
  padding-bottom: 16px;
  font-size: 0.8rem;
  color: #666666;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.waru-seo-acc-toggle.active .waru-seo-acc-icon {
  transform: rotate(45deg);
  color: #000;
}

/* ==========================================
   TAMPILAN DESKTOP (Layar >= 768px)
   ========================================== */
@media (min-width: 768px) {
  .waru-seo-card {
    flex-direction: row;
    max-width: 100%; 
    min-height: 310px; 
  }

  .waru-seo-img-wrapper {
    width: 45%; 
    height: auto; 
  }

  .waru-seo-content {
    width: 55%; 
    padding: 36px 48px;
  }
}
