.ygmr-footer{
  border-top: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(20px);
}

.ygmr-footer__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(0,0,0,.70);
}

/* Sol / Sağ sabit, orta esneyip ortalansın */
.ygmr-footer__left,
.ygmr-footer__right{
  white-space: nowrap;
  flex: 0 0 auto;
}

.ygmr-footer__center{
  flex: 1 1 auto;
  display:flex;
  justify-content:center;
  min-width: 0;
}

/* Footer menü yatay */
.ygmr-footer-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
  flex-wrap: wrap;
}

.ygmr-footer-menu li{
  margin:0;
  padding:0;
}

.ygmr-footer-menu a{
  color: rgba(0,0,0,.70);
  text-decoration:none;
}

.ygmr-footer-menu a:hover{
  color: rgba(0,0,0,.90);
}

/* Mobilde tek satır zor olabilir: yine tek blok ama alt alta diz */
@media (max-width: 560px){
  .ygmr-footer__inner{
    flex-direction: column;
    align-items: center;
    text-align:center;
    gap: 10px;
  }

  .ygmr-footer__left,
  .ygmr-footer__right{
    white-space: normal;
  }
}