

.wz-ig {

  --wz-ig-mute: var(--wz-ink-soft);
  --wz-ig-ground: #f7f7fa;

  padding: var(--wz-sec-y) 0;

  background: var(--wz-wash-soft);
  font-family: var(--wz-ui-font);
  color: var(--wz-ink);
}

.wz-ig-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.wz-ig-title b {
  font-weight: 700;
  white-space: nowrap;
}

.wz-ig-sub__ringkas { display: none; }

.wz-ig-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 20px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--wz-line);
}

.wz-ig-count {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--wz-ink);
}

.wz-ig-count span {
  font-weight: 500;
  color: var(--wz-ig-mute);
}

.wz-ig-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wz-ig-chip {
  padding: 8px 15px;
  border: 1px solid var(--wz-line);
  border-radius: 999px;
  background: #fff;
  color: var(--wz-ink-soft);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}

.wz-ig-chip:hover { background: #f2f2f6; color: var(--wz-ink); }
.wz-ig-chip:active { background: #e9e9ef; }

.wz-ig-chip[aria-pressed="true"] {
  border-color: var(--wz-btn-bg);
  background: var(--wz-btn-bg);
  color: #fff;
  cursor: default;
}

.wz-ig-chip:focus-visible {
  outline: 2px solid var(--wz-brand);
  outline-offset: 2px;
}

.wz-ig-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.wz-ig-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 13px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--wz-line);
  transition: box-shadow .18s ease, transform .18s ease;
}

.wz-ig-card:hover {
  box-shadow: inset 0 0 0 1px #d6c0ca, 0 10px 22px -14px rgba(23, 23, 23, .55);
  transform: translateY(-2px);
}

.wz-ig-card__l {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--wz-ig-ground);
}

.wz-ig-card__l img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.wz-ig-card__l em {
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  color: var(--wz-btn-navy);
}

.wz-ig-card__t {
  min-width: 0;
  font-family: var(--wz-display-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.1px;
}

.wz-ig-card__k {
  display: block;
  margin: 3px 0 0;
  font-family: var(--wz-ui-font);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--wz-ig-mute);
}

.wz-ig-card[hidden] { display: none; }

.wz-ig-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 34px 0 0;
  text-align: center;
}

.wz-ig-end__n {
  max-width: 480px;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  text-wrap: pretty;
  color: var(--wz-ig-mute);
}

.wz-ig-end a:not(.wz-btn):not(.wz-cta-wa) {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #b8bcc3;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .16s ease, text-decoration-color .16s ease;
}

.wz-ig-end a:not(.wz-btn):not(.wz-cta-wa):hover {
  color: var(--wz-btn-bg);
  text-decoration-color: currentColor;
}

.wz-ig-js .wz-ig-rv {
  opacity: 0;
  transform: translateY(14px);
}

.wz-ig-js .wz-ig-rv.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .5s ease-out var(--d, 0s), transform .5s cubic-bezier(.16, 1, .3, 1) var(--d, 0s);
}

@media (max-width: 1024px) {
  .wz-ig-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {

  .wz-ig-sub__utuh { display: none; }
  .wz-ig-sub__ringkas { display: inline; }
  .wz-ig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .wz-ig-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 13px; }
  .wz-ig-end { gap: 13px; padding-top: 28px; }
  .wz-ig-end .wz-btn { width: 100%; justify-content: center; }
  .wz-ig-end__n { font-size: 13.5px; }
  .wz-ig-bar { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .wz-ig-filter {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;

    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 30px), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 30px), transparent);

    scroll-snap-type: x proximity;
    scroll-padding-left: 2px;
  }
  .wz-ig-filter::-webkit-scrollbar { display: none; }
  .wz-ig-chip { flex-shrink: 0; scroll-snap-align: start; }
}

@media (prefers-reduced-motion: reduce) {
  .wz-ig-js .wz-ig-rv { opacity: 1; transform: none; }
  .wz-ig-card, .wz-ig-chip { transition: none; }
  .wz-ig-card:hover { transform: none; }
}

.wz-ig { position: relative; isolation: isolate; }

.wz-ig::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46'%3E%3Cpath d='M23 18.5v9M18.5 23h9' stroke='%23171717' stroke-opacity='.06' stroke-width='1.2'/%3E%3C/svg%3E");
  background-size: 46px 46px;
  -webkit-mask-image: var(--wz-decor-mask);
          mask-image: var(--wz-decor-mask);
}
