.elementor-3786 .elementor-element.elementor-element-6945e9d{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-2a610df *//* =========================================================
   GUERCIOTTI GUIDE – mh-guide (1 samlet blok)
   - Wrapper: .mh-guide
   - Sticky TOC desktop, fold-ud mobil
   - Callouts/pullquotes i Guerciotti gul stil
   - Typografi roligere (mindre “larm”)
   ========================================================= */

.mh-guide{
  --gc-yellow:#ffda29;
  --gc-black:#050505;
  --gc-text:#1a1a1a;
  --gc-muted:#646464;
  --gc-border:#e8e8e8;
  --gc-card-radius:18px;
  --gc-maxw:1120px;
  --gc-tocw:320px;
  --gc-shadow:0 10px 26px rgba(0,0,0,.07);

  color: var(--gc-text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";

  /* Roligere base-typografi */
  font-size: 17px;     /* ↓ fra 18 */
  line-height: 1.7;    /* ↑ mere luft */
  font-weight: 400;    /* ↓ fra 500 */
  letter-spacing: 0.01em;
}

@media (max-width: 1024px){
  .mh-guide{ font-size: 16.5px; }
}
@media (max-width: 767px){
  .mh-guide{ font-size: 16px; }
}

/* Container */
.mh-guide .mh-wrap{
  max-width: var(--gc-maxw);
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero */
.mh-guide .mh-hero{
  padding: 14px 0 6px;
}
.mh-guide .mh-hero .mh-lead{
  font-size: 21px;
  line-height: 1.85;
  font-weight: 500;
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 4px solid var(--gc-yellow);
}
@media (max-width: 1024px){
  .mh-guide .mh-hero .mh-lead{ font-size: 19px; }
}
@media (max-width: 767px){
  .mh-guide .mh-hero .mh-lead{ font-size: 18px; }
}

/* Layout: content + TOC */
.mh-guide .mh-layout{
  display: grid;
  grid-template-columns: 1fr var(--gc-tocw);
  gap: 28px;
  align-items: start;
  margin-top: 10px;
}
.mh-guide .mh-content{ min-width: 0; }

/* Headings (ikke indrykket / pæn baseline) */
.mh-guide .mh-content h2,
.mh-guide .mh-content h3{
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* H2 – primære afsnit (roligere) */
.mh-guide .mh-content h2{
  font-size: 26px;          /* ↓ fra 28 */
  line-height: 1.28;        /* lidt mere luft */
  font-weight: 700;         /* ↓ fra 800 */
  margin: 34px 0 12px;      /* lidt mere top-luft */
  letter-spacing: -0.01em;
}

/* H3 – sekundære afsnit (mindre “råb”) */
.mh-guide .mh-content h3{
  font-size: 20px;          /* ↓ fra 22 */
  line-height: 1.35;
  font-weight: 600;         /* ↓ fra 800 */
  margin: 22px 0 8px;
  letter-spacing: -0.005em;
  color: #333;
}

.mh-guide .mh-content p{
  margin: 0 0 16px;
  font-weight: 400;
}
.mh-guide .mh-content ul,
.mh-guide .mh-content ol{
  margin: 0 0 16px 22px;
}
.mh-guide .mh-content li{
  margin: 6px 0;
  font-weight: 400;
}

/* Links – Guerciotti stil */
.mh-guide .mh-content a{
  color: inherit;
  text-decoration: none;
  border-bottom: 2px solid var(--gc-yellow);
  box-shadow: inset 0 -6px 0 rgba(255,218,41,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}
.mh-guide .mh-content a:hover{
  box-shadow: inset 0 -1.2em 0 rgba(255,218,41,.30);
}

/* Callout (gul boks) */
.mh-guide .mh-callout{
  background: #fff8dd;
  border-left: 6px solid var(--gc-yellow);
  padding: 16px 18px;
  border-radius: 16px;
  margin: 18px 0 22px;
  box-shadow: var(--gc-shadow);
}
.mh-guide .mh-callout strong{ font-weight: 800; } /* ↓ fra 900 */

/* Pullquote (en anelse roligere) */
.mh-guide .mh-pullquote{
  background: #fff8dd;
  border-left: 6px solid #111;
  padding: 18px 18px;
  border-radius: 16px;
  margin: 22px 0;
  font-style: italic;
  font-size: 20px;          /* ↓ fra 22 */
  line-height: 1.6;
  font-weight: 400;
  box-shadow: var(--gc-shadow);
}
@media (max-width: 767px){
  .mh-guide .mh-pullquote{ font-size: 18.5px; }
}

/* Tables */
.mh-guide .mh-table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 24px;
  overflow: hidden;
  border: 1px solid var(--gc-border);
  border-radius: 14px;
  background: #fff;
}
.mh-guide .mh-table th,
.mh-guide .mh-table td{
  padding: 12px 12px;
  border-bottom: 1px solid var(--gc-border);
  vertical-align: top;
  text-align: left;
}
.mh-guide .mh-table thead th{
  background: #fbfbfb;
  font-weight: 700; /* ↓ fra 800 */
}
.mh-guide .mh-table tr:last-child td{ border-bottom: 0; }

/* Figures */
.mh-guide figure{ margin: 22px 0; }
.mh-guide figure img{
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--gc-shadow);
}
.mh-guide figcaption{
  margin-top: 8px;
  color: var(--gc-muted);
  font-size: 14px;
}

/* Buttons */
.mh-guide .mh-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none !important;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
.mh-guide .mh-btn-primary{
  background: var(--gc-yellow);
  color: #000;
}
.mh-guide .mh-btn-primary:hover{
  transform: translateY(-2px);
  filter: brightness(0.98);
}
/* Ghost button – rettet kontrast i gule callouts */
.mh-guide .mh-callout .mh-btn-ghost{
  background: transparent;
  color: #111;
  border: 2px solid #111;
  box-shadow: none;
}

.mh-guide .mh-callout .mh-btn-ghost:hover{
  background: #111;
  color: var(--gc-yellow);
  transform: translateY(-2px);
}


/* TOC */
.mh-guide .mh-toc{
  position: sticky;
  top: 96px;
  background: #f6f6f6;
  border: 1px solid var(--gc-border);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: var(--gc-shadow);
}
.mh-guide .mh-toc h3{
  margin: 6px 0 10px;
  font-size: 16px;
  font-weight: 900;
}
.mh-guide .mh-toc ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.mh-guide .mh-toc li{
  margin: 8px 0;
}
.mh-guide .mh-toc a{
  display: inline-block;
  color: #111;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.mh-guide .mh-toc a:hover{
  border-bottom-color: var(--gc-yellow);
}
.mh-guide .mh-toc .toc-toggle{
  display: none;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--gc-yellow);
  color: #000;
  font-weight: 900;
  cursor: pointer;
}

/* Related */
.mh-guide .mh-related{
  margin: 34px 0 10px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid var(--gc-border);
  background: #fbfbfb;
  box-shadow: var(--gc-shadow);
}
.mh-guide .mh-related h3{
  margin-top: 0;
}

/* Responsive layout */
@media (max-width: 992px){
  .mh-guide .mh-layout{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .mh-guide .mh-toc{
    position: relative;
    top: 0;
  }
  .mh-guide .mh-toc .toc-toggle{ display: inline-flex; }
  .mh-guide .mh-toc ul{ display: none; }
  .mh-guide .mh-toc.is-open ul{ display: block; margin-top: 10px; }
}/* End custom CSS */