/* =========================================================
   MEET TALK – FOOTER
   Eigene CSS-Datei. Änderungen an member.css/style.css sollen
   den Footer nicht mehr beeinflussen.
   ========================================================= */

.mt-footer{
  margin-top:22px;
  border-top:1px solid #1a2233;
  background:
    radial-gradient(circle at 15% 0%,rgba(124,35,255,.10),transparent 28%),
    #070a13;
  color:#fff;
}

.mt-footer *{
  box-sizing:border-box;
}

.mt-footer-inner{
  width:min(1450px,calc(100% - 64px));
  margin:0 auto;
  padding:30px 0 34px;
  display:grid;
  grid-template-columns:1.45fr repeat(4,1fr);
  gap:36px;
}

.mt-footer .mt-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
}

.mt-footer .mt-brand-mark{
  width:32px;
  height:32px;
  flex:0 0 32px;
  border-radius:8px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#7141ff,#ff2a67);
  color:#fff;
  font-size:15px;
  font-weight:900;
}

.mt-footer .mt-brand-copy strong{
  display:block;
  color:#fff;
  font-size:20px;
  line-height:1;
}

.mt-footer .mt-brand-copy em{
  color:#ff55c6;
  font-style:normal;
}

.mt-footer .mt-brand-copy small{
  display:block;
  margin-top:3px;
  color:#d4d7df;
  font-size:12px;
}

.mt-footer-brand p{
  margin:14px 0 7px;
  color:#c2c9d6;
  font-size:13px;
  line-height:1.5;
}

.mt-footer-brand>small{
  color:#8792a7;
  font-size:12px;
}

.mt-footer-col{
  display:flex;
  flex-direction:column;
  gap:9px;
  min-width:0;
}

.mt-footer-col strong{
  margin-bottom:4px;
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.05em;
}

.mt-footer-col a{
  color:#aeb7c8;
  font-size:13px;
  line-height:1.4;
  text-decoration:none;
}

.mt-footer-col a:hover{
  color:#fff;
}

@media(max-width:900px){
  .mt-footer-inner{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:560px){
  .mt-footer-inner{
    width:calc(100% - 28px);
    grid-template-columns:1fr;
    gap:24px;
  }
}
