/* === GEMEINSAME STYLES (für alle Größen) === */
.site-footer-content > p > img {
    margin-right: 15px;
  }
  
  .section_policy {
    display: none;
  }
  
  .h6.homepage-issue-published {
    display: none;
  }
  
  /* === MOBILE ONLY (bis 767px) === */
  @media only screen and (max-width: 767px) {
    /* Header komplett oben fixieren */
    header.main-header {
      position: sticky;
      top: 0;
      z-index: 1100;
      background: white;
    }

    /* Menü als Overlay über dem Inhalt */
    #main-navbar.navbar-collapse {
      position: absolute !important;
      top: 100%;
      left: 0;
      width: 100% !important;
      background: white;
      z-index: 1000;
      padding: 10px 20px 20px 20px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
      }

    nav.navbar {
      position: relative;
      z-index: 1100;
    }

    /* Hero-Bild bleibt im Fluss, aber z-index nach vorne */
    .homepage-image-behind-issue {
      z-index: 0;
    }
    
    body {
        overflow-x: hidden;
      }
      
    .site-footer-content > p > img {
      display: block;
      margin-bottom: 15px;
      height: 25px;
    }
    
    .navbar-brand > img {
      height: 30px;
      max-height: 30px;
    }
    
    /* Container */
    .homepage-image-behind-issue {
        height: 60vh;
        min-height: 400px;
        position: relative;
        width: 100vw !important;  /* Volle Viewport-Breite */
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;  /* Bricht aus Container aus */
        margin-right: calc(-50vw + 50%) !important;
        overflow: hidden;
        left: 0;
        right: 0;
    }
    
    .homepage-image-behind-issue img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 30%;
    }
    
    /* Overlay */
    .homepage-image-behind-issue::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3);
      pointer-events: none;
    }
    
    /* "Rethinking Service" */
    h2.homepage-issue-current {
      position: absolute;
      top: 28%;
      left: 0;
      width: 100%;
      padding: 0 20px;
      z-index: 10;
      font-size: 0;
      text-shadow: none;
    }
    
    h2.homepage-issue-current::before {
      content: "Rethinking\AService";
      white-space: pre;
      font-size: 4rem;
      line-height: 0.9;
      display: block;
      text-shadow: none;
      color: white;
      text-align: left;
    }
    
    /* "New research..." */
    .homepage-image-behind-issue .row.justify-content-center.homepage-issue-header p {
      position: absolute !important;
      top: 58% !important;
      left: 0;
      width: 100%;
      padding: 0 20px !important;
      margin: 0 !important;
      z-index: 10;
      font-size: 1rem !important;
      text-align: left !important;
      text-shadow: none !important;
      color: white !important;
    }
    
    /* Original "Volume 10 (2026)" verstecken */
    .h1.homepage-issue-identifier {
      display: none !important;
    }
    
    /* Neues "Volume 10 (2026)" als Pseudo-Element IM BILD */
    .homepage-image-behind-issue::before {
      content: "New research, sharp ideas, and fresh perspectives.";
      position: absolute;
      top: 60%;
      left: 0;
      width: 100%;
      padding: 0 20px;
      z-index: 10;
      font-size: 1.2rem;
      line-height: normal;
      color: white;
      text-align: left;
      pointer-events: none;
      font-family: Fira Sans;
      font-weight: 200;
    }

    .homepage-issue-cover {
        max-width: 250px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }    
  }

  /* === TABLET ONLY (768px - 1199px) === */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    /* Container */
    .homepage-image-behind-issue {
      height: 50vh;
      min-height: 350px;
      position: relative;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }
    
    .homepage-image-behind-issue img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: 30%;
    }
    
    /* Overlay */
    .homepage-image-behind-issue::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.25);
      pointer-events: none;
    }
    
    /* "Rethinking Service" */
    h2.homepage-issue-current {
      position: absolute;
      top: 22%;
      left: 0;
      width: 100%;
      padding: 0 30px;
      z-index: 10;
      font-size: 0;
      text-shadow: none;
    }
    
    h2.homepage-issue-current::before {
      content: "Rethinking\AService";
      white-space: pre;
      font-size: 3.5rem;
      line-height: 1;
      display: block;
      text-shadow: none;
      color: white;
      text-align: left;
    }
    
    /* Original "New research..." verstecken */
    .homepage-image-behind-issue .row.justify-content-center.homepage-issue-header p {
      display: none !important;
    }
    
    /* "New research..." als Pseudo-Element */
    .homepage-image-behind-issue::before {
      content: "New research, sharp ideas, and fresh perspectives.";
      position: absolute;
      top: 58%;
      left: 0;
      width: 100%;
      padding: 0 30px;
      z-index: 10;
      font-size: 1.1rem;
      line-height: normal;
      color: white;
      text-align: left;
      pointer-events: none;
    }
    
    /* "Volume 10 (2026)" verstecken */
    .h1.homepage-issue-identifier {
      display: none !important;
    }
  }
  
  /* === DESKTOP ONLY (ab 1200px) === */
  @media (min-width: 1200px) {
    .homepage-image-behind-issue {
      height: 55vh;
      min-height: 450px;
    }
    
    .homepage-image-behind-issue img {
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    
    .homepage-image-behind-issue::after {
      background: rgba(0, 0, 0, 0.2);
    }
    
    h2.homepage-issue-current {
      font-size: 0;
      line-height: 0;
      text-shadow: none;
    }
    
    h2.homepage-issue-current::before {
      content: "Rethinking\AService";
      font-size: 5rem;
      line-height: 0.9;
      display: block;
      text-shadow: none;
      white-space: pre;
      text-align: left;
      margin-left: 34%;
    }
    
    .h1.homepage-issue-identifier {
      font-size: 0;
      text-shadow: none;
    }
    
    .h1.homepage-issue-identifier::before {
      content: "New research, sharp ideas, and fresh perspectives.";
      font-size: 1.1rem;
      line-height: normal;
      display: block;
      text-shadow: none;
      text-align: left;
      margin-left: 34.2%;
      font-family: Fira Sans;
      font-weight: 200;
    }
    
    .homepage-issue-header {
      margin-top: 9rem;
    }
  }