.site-footer{
  width:100%;
  display:flex;
  justify-content:center;
  padding:28px 16px 34px;
  margin-top:auto;
}
.site-footer__panel{
  width:min(1240px,calc(100% - 32px));
  padding:24px 32px;
  border-radius:28px;
  display:flex;
  flex-wrap:nowrap;
  align-items:center;
  justify-content:space-between;
  gap:12px 32px;
  background:rgba(13,17,30,0.85);
  border:1px solid rgba(255,255,255,0.1);
  box-shadow:0 25px 45px rgba(3,6,14,0.45);
  backdrop-filter:blur(28px);
  position:relative;
  z-index: 2;
}
@media (prefers-color-scheme: light){
  .site-footer__panel{
    background:rgba(255,255,255,0.92);
    border-color:rgba(15,23,42,0.12);
    box-shadow:0 24px 55px rgba(15,23,42,0.25);
  }
}
html[data-theme="light"] .site-footer__panel{
  background:rgba(255,255,255,0.92);
  border-color:rgba(15,23,42,0.12);
  box-shadow:0 24px 55px rgba(15,23,42,0.25);
}
.site-footer__group{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
  flex:1;
  flex-wrap:nowrap;
}
.site-footer__group--brand{
  justify-content:flex-start;
}
.site-footer__group--brand span{
  font-size:0.95rem;
  font-weight:500;
  color:rgba(255,255,255,0.9);
  white-space:nowrap;
}
@media (prefers-color-scheme: light){
  .site-footer__group--brand span{
    color:rgba(14,23,42,0.8);
  }
}
html[data-theme="light"] .site-footer__group--brand span{
  color:rgba(14,23,42,0.8);
}
.site-footer__links{
  justify-content:center;
  flex:2;
}
.site-footer__link{
  display:inline-flex;
  align-items:center;
  gap:4px;
  font-size:0.95rem;
  font-weight:500;
  text-transform:none;
  color:#fdfdfd;
  text-decoration:none;
  border-bottom:1px solid transparent;
  padding-bottom:2px;
  transition:border-color .2s ease;
}
.site-footer__link:hover{
  border-color:rgba(255,255,255,0.4);
}
.footer-link-icon{
  width:16px;
  height:16px;
  vertical-align:middle;
  filter:invert(1);
  transition:transform 0.2s ease;
}
.site-footer__link:hover .footer-link-icon{
  filter:invert(1);
  transform:translateY(-1px);
}
@media (prefers-color-scheme: light){
  .site-footer__link{
    color:#1f1f1f;
  }
  .site-footer__link:hover{
    border-color:rgba(15,23,42,0.4);
  }
  html:not([data-theme]) .footer-link-icon{
    filter:invert(1);
  }
  html:not([data-theme]) .site-footer__link:hover .footer-link-icon{
    filter:none;
    transform:translateY(-1px);
  }
}
html[data-theme="light"] .site-footer__link{
  color:#1f1f1f;
}
html[data-theme="light"] .site-footer__link:hover{
  border-color:rgba(15,23,42,0.4);
}
html[data-theme="light"] .footer-link-icon{
  filter:invert(1);
}
html[data-theme="light"] .site-footer__link:hover .footer-link-icon{
  filter:none;
  transform:translateY(-1px);
}
.site-footer__group--meta{
  justify-content:flex-end;
}
.site-footer__built{
  font-size:0.95rem;
  color:rgba(255,255,255,0.75);
  font-weight:500;
  white-space:nowrap;
  cursor:default;
}
.site-footer__built .heart-glow{
  transition:filter 0.25s ease, transform 0.25s ease;
}
.site-footer__built:hover .heart-glow{
  filter:drop-shadow(0 0 6px rgba(244,63,94,0.95)) drop-shadow(0 0 18px rgba(244,63,94,0.6));
  transform:scale(1.25);
}
@media (prefers-color-scheme: light){
  .site-footer__built{
    color:rgba(20,23,34,0.7);
  }
}
html[data-theme="light"] .site-footer__built{
  color:rgba(20,23,34,0.7);
}
.heart-glow{
  width:16px;
  height:16px;
  vertical-align:middle;
  transition:filter 0.2s ease, transform 0.2s ease;
  filter:drop-shadow(0 0 4px var(--c-footer-heart-glow, rgba(244,63,94,0.5)));
}
.heart-glow:hover{
  filter:drop-shadow(0 0 10px var(--c-footer-heart-glow, rgba(244,63,94,0.9))) drop-shadow(0 0 20px var(--c-footer-heart-glow, rgba(244,63,94,0.5)));
  transform:scale(1.2);
}
@media (max-width: 780px){
  .site-footer{
    padding:20px 12px 28px;
  }
  .site-footer__panel{
    width:calc(100% - 24px);
    padding:18px 20px;
    gap:12px 16px;
    overflow-x:auto;
  }
  .site-footer__group{
    justify-content:center;
    text-align:center;
    white-space:nowrap;
  }
  .site-footer__links{
    justify-content:center;
    white-space:nowrap;
  }
}
