/* ---------- Intro ---------- */

.dyrpasser-intro {
  background-color: var(--color-bg);
}

.dyrpasser-intro__title {
  margin: 70px 0 24px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 0.95;
  margin-bottom: 60px;
}


/* ---------- Info grid (3 columns) ---------- */

.info-section {
  background-color: var(--color-bg);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 6vw, 120px);
  margin-bottom: 60px;
}

.info-block__kategori {
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.55;
}

.info-block__info {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
}


/* ---------- Oplevelsesindhold ---------- */

.oplevelsesindhold-info {
  background-color: var(--color-bg);
}

.info-block__title {
  margin: 70px 0 24px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 400;
}

.info-block__text {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
}

.info-block__text ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.info-block__text p {
  margin-bottom: 20px;
}

.info-block__text p:last-child {
  margin-bottom: 0;
}


/* ---------- Booking section ---------- */

.booking-info-section {
  background-color: var(--color-bg);
  padding-bottom: 20px;
}

.booking-info__title {
  margin: 70px 0 24px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.6vw, 2.4rem);
  font-weight: 400;
}

.booking-info__content p {
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
}

.booking-info__content a {
  color: #ffffff;
  text-decoration: none;
}

.booking-info__content a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* ---------- Tablet ---------- */

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 56px;
    margin-bottom: 80px;
  }
}


/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  .info-grid {
    gap: 25px;
    margin-bottom: 25px;
  }

  .dyrpasser-intro__title {
    margin-bottom: 50px;
  }

.info-block__title,
.booking-info__title {
    margin-bottom: 18px;
  }

  .info-block__info,
  .info-block__text,
  .booking-info__content p {
    font-size: 1rem;
  }

  .info-block__kategori {
   margin-bottom: 10px;
  }
}