/* =========================================================
   PRINT-SITEMAP.CSS
   Datei: print-sitemap.css
   Nur für Druck / PDF-Ausgabe – sitemap.html
========================================================= */

@media print{

/* =========================================================
   GRUNDLAGEN
   (global geregelt)
========================================================= */



/* =========================================================
   UI / NAV AUSBLENDEN
========================================================= */

          .sitemap a[href^="http"]::after,
          .sitemap-grid a[href^="http"]::after,
          .sitemap-list a[href^="http"]::after{
            content: none !important;
          }


/* =========================================================
   LAYOUT
   (global geregelt)
========================================================= */



/* =========================================================
   TYPOGRAFIE
   (global geregelt)
========================================================= */



/* =========================================================
   HEADLINE
   (global geregelt)
========================================================= */



/* =========================================================
   BREADCRUMB
   (global geregelt)
========================================================= */



/* =========================================================
   SITEMAP – EINLEITUNG
========================================================= */

          .sitemap{
            display: block !important;
            margin: 0 !important;
            padding: 0 !important;
          }

          .sitemap-intro{
            margin: 0 0 5mm 0 !important;

            font-size: 10.2pt !important;
            line-height: 1.45 !important;
            color: #000 !important;
          }


/* =========================================================
   SITEMAP – GRID
========================================================= */

          .sitemap-grid{
            display: grid !important;
            grid-template-columns: 1fr 1fr !important;
            gap: 5mm !important;

            margin: 0 !important;
            padding: 0 !important;
          }


/* =========================================================
   SITEMAP – SEKTIONEN
========================================================= */

          .sitemap-section{
            display: block !important;

            margin: 0 !important;
            padding: 4mm 4.5mm !important;

            background: #f8fbff !important;
            border: 1px solid #cdd8ec !important;
            border-radius: 3mm !important;
            box-shadow: none !important;

            break-inside: avoid !important;
            page-break-inside: avoid !important;
          }

          .sitemap-title{
            margin: 0 0 3mm 0 !important;
            padding: 0 0 1.5mm 0 !important;

            font-size: 11.2pt !important;
            font-weight: 700 !important;
            line-height: 1.25 !important;
            color: #163d7a !important;

            border-bottom: 1px solid #dfe6f3 !important;
          }


/* =========================================================
   SITEMAP – LISTEN
========================================================= */

          .sitemap-list{
            margin: 0 !important;
            padding: 0 !important;
            list-style: none !important;
          }

          .sitemap-list li{
            position: relative;

            margin: 0 !important;
            padding: 1.8mm 0 1.8mm 6mm !important;

            font-size: 9.6pt !important;
            line-height: 1.35 !important;
            color: #000 !important;

            border-bottom: 1px solid #ececec !important;

            break-inside: avoid !important;
            page-break-inside: avoid !important;
          }

          .sitemap-list li:last-child{
            border-bottom: 0 !important;
          }

          .sitemap-list li::before{
            content: "›";
            position: absolute;
            left: 0;
            top: 1.8mm;

            font-weight: 700 !important;
            color: #163d7a !important;
          }

          .sitemap-list a{
            color: #000 !important;
            text-decoration: none !important;
            word-break: break-word !important;
            overflow-wrap: anywhere !important;
          }


/* =========================================================
   SITEMAP – SUBLISTEN
========================================================= */

          .sitemap-list.sitemap-sub li{
            padding-left: 7mm !important;
          }

          .sitemap-list.sitemap-sub li::before{
            content: "•";
            top: 1.7mm;
            left: 0.5mm;

            font-size: 10pt !important;
            line-height: 1 !important;
            color: #5f7395 !important;
          }


/* =========================================================
   SEITENUMBRÜCHE
========================================================= */

          .sitemap-section,
          .sitemap-title,
          .sitemap-list li{
            break-inside: avoid !important;
            page-break-inside: avoid !important;
          }


/* =========================================================
   RESPONSIVE FUER SCHMALEN DRUCKBEREICH
========================================================= */

          @page{
            size: A4;
          }

}