/* =========================================
   MOBILE & TABLET
   Ergänzt style.css
   Fokus: Ruhe, Klarheit, Prioritäten
========================================= */

@media (max-width: 919px){

  /* -----------------------------
     GRUNDLAYOUT
  ----------------------------- */

  body{
    font-size: 15px;
  }

  .wrap{
    width: calc(100% - 28px);
  }

  /* -----------------------------
     HEADER
  ----------------------------- */

  .header-inner{
    padding: 12px 0;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .brand{
    justify-content: center;
  }

  .brand-logo{
    height: 36px;
  }

  .brand-text{
    font-size: 14px;
  }

  /* -----------------------------
     NAVIGATION – ENTSCHLACKT
  ----------------------------- */

  .nav{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-top: 6px;
  }

  .nav a{
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 10px;
  }

  /* START mobil ausblenden */
  .nav a[href*="index"]{
    display: none;
  }

  /* WISSENSWERTES mobil ausblenden */
  .nav a[href*="wissenswertes"]{
    display: none;
  }

  /* -----------------------------
     KARRIERE – sichtbar, aber ruhig
  ----------------------------- */

  .nav-cta{
    margin-top: 8px;
    padding: 8px 16px;
    font-size: 13px;
    background: rgba(0,139,139,.12);
    color: var(--brand-ink);
    box-shadow: none;
    font-weight: 700;
  }

  /* -----------------------------
     HERO
  ----------------------------- */

  h1{
    font-size: 30px;
    line-height: 1.2;
  }

  .lead{
    font-size: 16px;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    padding: 36px 0 28px;
  }

  .hero-actions{
    justify-content: center;
  }

  /* -----------------------------
     SECTIONS
  ----------------------------- */

  .section{
    padding: 42px 0;
  }

  .section-head h2{
    font-size: 26px;
  }

  /* -----------------------------
     SPLIT LAYOUT
  ----------------------------- */

  .split{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* -----------------------------
     CARDS
  ----------------------------- */

  .card{
    padding: 16px;
  }

  .cards-3{
    grid-template-columns: 1fr;
  }

  /* -----------------------------
     PILL GRID
  ----------------------------- */

  .pill-grid{
    grid-template-columns: 1fr;
  }

  /* -----------------------------
     ILLUSTRATIONEN
  ----------------------------- */

  .mini-art,
  .hero-art{
    min-height: 220px;
  }

  /* -----------------------------
     KONTAKT
  ----------------------------- */

  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-cards{
    grid-template-columns: 1fr;
  }

  /* -----------------------------
     FOOTER
  ----------------------------- */

  .footer-inner{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

/* Tipp des Monats – mobil einspaltig */
@media (max-width: 919px) {
  #tipp-card > div:last-child {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}
