.de-pub {
  padding: 76px 0 88px;
  background: var(--be-white);
}

.be-activiteiten-page .de-pub > .be-container {
  width: min(calc(100% - 160px), var(--be-container));
  padding-inline: 0;
}

@media (max-width: 1500px) and (min-width: 1201px) {
  .be-activiteiten-page .de-pub > .be-container {
    width: min(calc(100% - 160px), var(--be-container));
  }
}

@media (max-width: 1200px) and (min-width: 1025px) {
  .be-activiteiten-page .de-pub > .be-container {
    width: min(calc(100% - 120px), var(--be-container));
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .be-activiteiten-page .de-pub > .be-container {
    width: min(calc(100% - 80px), var(--be-container));
  }
}

@media (max-width: 767px) {
  .be-activiteiten-page .de-pub > .be-container {
    width: min(calc(100% - 40px), var(--be-container));
  }
}

.de-pub__layout {
  display: grid;
  grid-template-columns: minmax(360px, 470px) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: start;
}

@media (min-width: 1025px) {
  .de-pub__layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    grid-template-rows: auto auto;
    row-gap: 0;
  }

  body.single-beleef_activity.be-activiteiten-page .de-pub__layout {
    column-gap: clamp(50px, 7vw, 120px);
  }

  .de-pub__content {
    display: contents;
  }

  .de-pub__header {
    grid-column: 1;
    grid-row: 1;
    padding-top: 2px;
  }

  .de-pub__features {
    grid-column: 1;
    grid-row: 2;
  }

  .de-pub__info {
    grid-column: 2;
    grid-row: 2;
  }
}

.de-pub__info {
  overflow: hidden;
  border: 1px solid rgba(80, 31, 58, 0.12);
  border-radius: 30px;
  background: var(--be-white);
  box-shadow: 0 12px 28px rgba(80, 31, 58, 0.045);
}

.de-pub__info h2 {
  margin: 0;
  padding: 36px 32px 22px;
  color: var(--be-plum);
  font-size: 30px;
  line-height: 1.1;
}

.de-pub__details {
  display: grid;
  gap: 0;
  margin: 0 32px;
}

.de-pub__details > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(80, 31, 58, 0.11);
}

.de-pub__details dt {
  color: var(--be-plum);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
}

.de-pub__details dd {
  display: grid;
  gap: 12px;
  margin: 0;
  color: rgba(80, 31, 58, 0.82);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.15;
}

.de-pub__calculator {
  padding: 24px 32px 30px;
  border-top: 1px solid rgba(80, 31, 58, 0.11);
}

.de-pub__calculator-title {
  margin: 0 0 14px;
  color: var(--be-plum);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}

.de-pub__calculator-slider {
  margin-bottom: 20px;
}

.de-pub__calculator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.de-pub__calculator-header label {
  color: var(--be-plum);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.de-pub__calculator-number {
  width: 68px;
  min-height: 42px;
  box-sizing: border-box;
  padding: 5px 8px;
  border: 1.5px solid rgba(80, 31, 58, 0.25);
  border-radius: 9px;
  outline: none;
  color: var(--be-plum);
  background: var(--be-white);
  font: inherit;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.de-pub__calculator-number:focus-visible {
  border-color: #ff8359;
  box-shadow: 0 0 0 3px rgba(255, 131, 89, 0.2);
}

.de-pub__calculator-range {
  width: 100%;
  margin: 0;
  accent-color: var(--be-plum);
  cursor: pointer;
}

.de-pub__calculator-minmax {
  display: flex;
  justify-content: space-between;
  margin-top: 2px;
  color: rgba(80, 31, 58, 0.58);
  font-size: 11px;
  line-height: 1;
}

.de-pub__calculator-result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 18px;
  text-align: center;
}

.de-pub__calculator-result-title {
  color: var(--be-plum);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.de-pub__calculator-result-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 9px 22px;
  border-radius: 999px;
  color: var(--be-white);
  background: #993a8c;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.de-pub__calculator-result-note {
  color: rgba(80, 31, 58, 0.58);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.de-pub__calculator-cta {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 0 14px;
  padding: 11px 22px;
  border-radius: 999px;
  color: var(--be-white);
  background: var(--be-plum);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, transform 180ms ease;
}

.de-pub__calculator-cta[href]:hover,
.de-pub__calculator-cta[href]:focus-visible {
  color: var(--be-white);
  background: #ff8359;
  transform: translateY(-1px);
}

.de-pub__calculator-staffel {
  position: relative;
  display: flex;
  justify-content: center;
}

.de-pub__calculator-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 8px;
  border: 0;
  color: rgba(80, 31, 58, 0.62);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.de-pub__calculator-toggle:hover,
.de-pub__calculator-toggle:focus-visible {
  color: var(--be-plum);
}

.de-pub__calculator-arrow {
  display: inline-block;
  font-size: 9px;
  transform: rotate(180deg);
  transition: transform 180ms ease;
}

.de-pub__calculator-toggle[aria-expanded="true"] .de-pub__calculator-arrow {
  transform: rotate(0deg);
}

.de-pub__calculator-panel {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: calc(100% + 9px);
  left: 0;
  max-height: 220px;
  padding: 14px 16px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  color: var(--be-white);
  background: #993a8c;
  box-shadow: 0 -5px 18px rgba(80, 31, 58, 0.13);
}

.de-pub__calculator-panel[hidden] {
  display: none;
}

.de-pub__calculator-panel > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 12px;
  line-height: 1.35;
}

.de-pub__calculator-panel > div:last-child {
  margin-bottom: 0;
}

.de-pub__calculator-panel strong {
  flex: 0 0 auto;
  white-space: nowrap;
}

.de-pub__content {
  min-width: 0;
  padding-top: 2px;
}

.de-pub__header {
  max-width: 720px;
  margin-bottom: 52px;
}

.de-pub__header .be-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1.02;
}

.de-pub__header .be-heading > .de-pub__heading-base,
.de-pub__header .be-heading > em {
  min-width: 0;
  max-width: 100%;
}

.de-pub__features {
  display: grid;
  gap: 30px;
}

.de-pub__feature {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.de-pub__feature-icon {
  width: 74px;
  height: 70px;
  display: grid;
  place-items: center;
}

.de-pub__feature-icon img {
  width: 65px;
  height: auto;
}

.de-pub__feature-icon--plain img {
  width: 42px;
  transform: translateX(7px);
}

.de-pub__feature > div {
  position: relative;
  min-width: 0;
  padding-left: 22px;
}

.de-pub__feature > div::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--be-plum);
  opacity: 0.72;
}

.de-pub__feature h3 {
  margin: 0 0 5px;
  color: var(--be-plum);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600 !important;
}

.de-pub__feature p {
  max-width: 760px;
  margin: 0;
  color: #501f3a;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.35;
}

@media (max-width: 1024px) {
  .de-pub {
    padding: 62px 0 72px;
  }

  .de-pub__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .de-pub__info {
    max-width: none;
    width: 100%;
  }

  .de-pub__header {
    margin-bottom: 34px;
  }
}

@media (max-width: 640px) {
  .de-pub {
    padding: 48px 0 58px;
  }

  .de-pub__info {
    border-radius: 22px;
  }

  .de-pub__info h2,
  .de-pub__details {
    margin-inline: 24px;
  }

  .de-pub__info h2 {
    padding: 28px 0 20px;
    font-size: 26px;
  }

  .de-pub__details > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .de-pub__details dd {
    gap: 8px;
    font-size: 16px;
  }

  .de-pub__calculator {
    padding: 22px 24px 26px;
  }

  .de-pub__calculator-panel {
    padding-inline: 13px;
  }

  .de-pub__calculator-panel > div {
    gap: 10px;
    font-size: 11px;
  }

  .de-pub__header .be-heading {
    font-size: 34px;
  }

  .de-pub__features {
    gap: 24px;
  }

  .de-pub__feature {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .de-pub__feature-icon {
    width: 52px;
    height: 50px;
  }

  .de-pub__feature-icon img {
    width: 52px;
    height: auto;
  }

  .de-pub__feature-icon--plain img {
    width: 34px;
    transform: translateX(3px);
  }

  .de-pub__feature > div {
    padding-left: 16px;
  }

  .de-pub__feature h3 {
    font-size: 18px;
  }

  .de-pub__feature p {
    font-size: 14px;
  }
}

@media (max-width: 490px) {
  .de-pub__header h4.be-heading {
    display: inline;
  }
}
