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

@media print{

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



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

          .tiles a[href^="http"]::after,
          .tile a[href^="http"]::after{
            content: none !important;
          }


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



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



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



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



/* =========================================================
   TILES – WRAPPER
========================================================= */

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


/* =========================================================
   TILE – BASIS
========================================================= */

          .tile{
            display: block !important;
            overflow: hidden !important;

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

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

            text-decoration: none !important;
            color: #000 !important;

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

          .tile:last-child{
            margin-bottom: 0 !important;
          }


/* =========================================================
   TILE – MEDIEN
========================================================= */

          .tile__media{
            float: left !important;
            width: 28mm !important;

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

          .tile__media img{
            display: block !important;
            width: 100% !important;
            height: auto !important;

            border: 1px solid #d0d8e8 !important;
            border-radius: 2mm !important;
          }


/* =========================================================
   TILE – INHALT
========================================================= */

          .tile__body{
            display: block !important;
            overflow: hidden !important;
            min-width: 0 !important;
          }

          .tile__title{
            display: block !important;
            margin: 0 0 2mm 0 !important;

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

          .tile__desc{
            margin: 0 !important;

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


/* =========================================================
   EDGE / SAFARI STABILITAET
========================================================= */

          .tile,
          .tile__media,
          .tile__body,
          .tile__title,
          .tile__desc{
            transform: none !important;
            float: none;
          }

          .tile__media{
            float: left !important;
          }

          .tile::before,
          .tile::after{
            content: "" !important;
            display: table !important;
          }

          .tile::after{
            clear: both !important;
          }

}