/* GRIDGIRLS.DE SAFE PATCH 279
   Footer Korrektur:
   - roten Farbverlauf im Hintergrund entfernt
   - Footer bleibt dunkel/clean
   - Text bleibt links
   - untere zweite Zeile bleibt weg
   - /assets/css/style.css wird NICHT geändert
*/

.gg-footer{
  margin-top:64px !important;
  border-top:1px solid rgba(229,9,20,.42) !important;
  background:#050505 !important;
  color:#d9dde7 !important;
}

.gg-footer-inner{
  max-width:none !important;
  width:100% !important;
  margin:0 !important;
  padding:34px 70px 34px 70px !important;
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) auto !important;
  gap:28px !important;
  align-items:center !important;
}

.gg-footer-brand{
  position:relative;
  padding-left:22px;
  margin-left:0 !important;
}

.gg-footer-brand:before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  width:3px;
  height:42px;
  border-radius:99px;
  background:#e50914;
  box-shadow:none;
}

.gg-footer-logo{
  display:block;
  color:#fff;
  font-size:18px;
  line-height:1.1;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin:0 0 8px;
}

.gg-footer-text{
  margin:0;
  color:#aeb6c6;
  font-size:15px;
  line-height:1.55;
  letter-spacing:.01em;
  max-width:820px;
}

.gg-footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.gg-footer-links a{
  display:inline-flex !important;
  align-items:center !important;
  min-height:42px;
  padding:10px 14px !important;
  border:1px solid rgba(255,255,255,.12);
  border-radius:13px;
  background:rgba(255,255,255,.025);
  color:#fff !important;
  text-decoration:none !important;
  font-size:14px !important;
  line-height:1 !important;
  font-weight:800 !important;
  letter-spacing:.03em;
  transition:transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.gg-footer-links a:hover{
  transform:translateY(-2px);
  border-color:rgba(229,9,20,.70);
  background:rgba(229,9,20,.10);
  color:#fff !important;
}

/* Untere zweite Zeile aus Patch 277 bleibt ausgeblendet */
.gg-footer-bottom{
  display:none !important;
}

@media(max-width:900px){
  .gg-footer{
    margin-top:42px !important;
  }

  .gg-footer-inner{
    grid-template-columns:1fr !important;
    padding:28px 20px !important;
    gap:22px !important;
  }

  .gg-footer-links{
    justify-content:flex-start;
  }

  .gg-footer-links a{
    min-height:44px;
    font-size:13px !important;
  }
}

@media(max-width:520px){
  .gg-footer-links{
    display:grid;
    grid-template-columns:1fr;
  }

  .gg-footer-links a{
    justify-content:center;
    width:100%;
  }
}
