* {
  box-sizing: border-box;
}

/* ACCORDION CONTAINER */
.owi-accordion {
  max-width: 900px;
  margin: auto;
}

/* ACCORDION ITEM */
.owi-accordion-item {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

/* ACCORDION HEADER */
.owi-accordion-header {
  position: relative;
  width: 100%;
  min-height: 160px;
  background-size: cover;
  background-position: center;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  color: white;
}

/* OVERLAY */
.owi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(236, 217, 198, 0.8),
    rgba(236, 217, 198, 0)
  );
}

/* HEADER CONTENT */
.owi-header-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  z-index: 1;
}

/* LEFT SECTION */
.owi-left {
  max-width: 70%;
}

/* BADGES */
.owi-badges {
  margin-bottom: 8px;
}

.owi-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-right: 6px;
  /* GRADIENT BACKGROUND */
  background: linear-gradient(285.51deg, #075453 -4.87%, #3A1F3F 106.72%);
  color: #fff;
}

/* TITLE & DESCRIPTION */
.owi-title,
.owi-description {
  margin: 0;
  color: #3A1F3F; /* WARNA TEKS */
}

.owi-title {
  margin-bottom: 8px;
  font-size: 22px;
}

.owi-description {
  opacity: 0.9;
}

/* RIGHT BUTTON */
.owi-right {
  display: flex;
  align-items: center;
}

.owi-action {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 500;
  /* GRADIENT BACKGROUND */
  background: linear-gradient(285.51deg, #075453 -4.87%, #3A1F3F 106.72%);
  color: #fff;
  cursor: pointer;
}

/* ACCORDION CONTENT */
.owi-accordion-content {
  max-height: 0;
  overflow: hidden;
  background: white;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.owi-accordion-item.active .owi-accordion-content {
  opacity: 1;
}

/* INNER CONTENT */
.owi-content-inner {
  padding: 24px;
}

.owi-content-inner img {
  width: 100%;
  border-radius: 12px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .owi-accordion-header {
    min-height: 120px; /* header lebih pendek */
  }

  .owi-header-content {
    flex-direction: column; /* kiri & kanan jadi stack vertikal */
    gap: 12px;
    padding: 16px;
  }

  .owi-left {
    max-width: 100%; /* teks full width */
  }

  .owi-right {
    justify-content: flex-start; /* tombol di bawah teks */
  }

  .owi-content-inner {
    padding: 16px;
  }

  .owi-badge {
    font-size: 10px; /* badge lebih kecil */
    padding: 3px 8px;
    margin-bottom: 4px;
  }

  .owi-title {
    font-size: 18px;
  }

  .owi-description {
    font-size: 14px;
  }
}
