body {
	font-size: 18px;
}
.node-preview-container {
  position: fixed;
  top: 133px;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 15%;
  padding: 10px;
  background: #ced8f6;
}
.field__item {
  overflow-wrap: anywhere;
}

.button-link {
  display:flex;
  justify-content:center;
}

@media (max-width: 480px) {
	.button-link {
    flex-direction: column;
	}
}

.sharing-berkat-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 24px;
  width: 100%;
}

/* Desktop: susun vertikal dan sejajar */
@media (max-width: 769px) {
  .sharing-berkat-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .sharing-berkat-wrapper .block-views-blocksharing-berkat-block-2 {
    width: 88%;
    margin-left: 0;
    margin-right: 0;
  }
}

/* Mobile: horizontal swipe */
@media (min-width: 768px) {
  .sharing-berkat-wrapper {
    display: flex;
    flex-direction: row;
    /*overflow-x: auto;*/
    gap: 12px;
  }
  .sharing-berkat-wrapper .block-views-blocksharing-berkat-block-2 {
    width: 27%;
    margin-left: 0;
    margin-right: 0;
  }
  .sharing-berkat-wrapper > div {
    min-width: 358px;
    flex-shrink: 0;
  }
}