/* [project]/app/(public)/rejseguides/[slug]/guide-content.css [app-client] (css) */
.guide-content {
  color: #c4cfd3;
  font-size: 1rem;
  line-height: 1.8;
}

.guide-content h3 {
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.3;
}

.guide-content h3:first-child {
  margin-top: 0;
}

.guide-content p {
  margin-bottom: 1.25rem;
}

.guide-content p:last-child {
  margin-bottom: 0;
}

.guide-content a {
  color: #5dd3a6;
  text-underline-offset: 2px;
  text-decoration: underline;
  transition: color .2s;
}

.guide-content a:hover {
  color: #34c38f;
}

.guide-content b, .guide-content strong {
  color: #fff;
  font-weight: 700;
}

.guide-content img, .guide-content .guide-img {
  object-fit: cover;
  border-radius: 1rem;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  display: block;
}

.guide-content ul, .guide-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.guide-content li {
  margin-bottom: .5rem;
}

.guide-content ul li {
  list-style-type: disc;
}

.guide-content ol li {
  list-style-type: decimal;
}

.guide-content hr {
  border: none;
  border-top: 1px solid #ffffff0f;
  margin: 2rem 0;
}

@media (min-width: 1024px) {
  .guide-content {
    columns: 2;
    column-gap: 3rem;
    font-size: 1.0625rem;
  }

  .guide-content h3 {
    break-after: avoid;
    margin-top: 3rem;
    font-size: 1.5rem;
  }

  .guide-content p {
    break-inside: avoid;
  }

  .guide-content img, .guide-content .guide-img {
    break-inside: avoid;
    break-before: auto;
    max-height: 400px;
  }

  .guide-content > b, .guide-content > strong {
    break-inside: avoid;
    margin-top: 1.5rem;
    display: block;
  }
}

/*# sourceMappingURL=app_%28public%29_rejseguides_%5Bslug%5D_guide-content_2f14f26d.css.map*/