/* ================= FOOTER ================= */
body{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.app-footer {
    font-size: 2em;
    background: #2b2b2b;
    color: #e5e7eb;
    padding: 2em 1.5em;
    margin-top: 2em;
    font-size: 1em;
    padding-bottom: 0.5em;
    padding-inline: 8em;
    height: max-content;
    width: 100%;
}
 .footer-inner {
    max-width: 100%;
    gap: 2em;
    align-items: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* BRAND */
.footer-brand{
        font-size: 2em;
    font-weight: 800;
    letter-spacing: 0.018em;
}
.footer-brand img {
    height: 2em;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
    margin-bottom: 0.2em;

}
.footer-links{
        display: flex;
    gap: 2.5em;
    align-items: center;
    justify-content: space-between;
}
.footer-brand p {
    font-size: 0.7em;
    color: #9ca3af;
    max-width: 22em;
}
/* LINKS */

.hdr-pill {
    display: flex;
    align-items: center;
    gap: 0.45em;
    font-size: 1.2em;
    cursor: pointer;
    padding: 0.35em 0.75em;
    /* border-radius: var(--radius-pill); */
    /* border: 0.0625em solid rgba(255, 255, 255, 0.12); */
    /* background: rgba(255, 255, 255, 0.04); */
    transition: 0.3s ease-in-out;
    white-space: nowrap;
    font-weight: 600;
    display: none;
    color: #fff;
    padding-inline: 0;
    margin-inline: 0.2em;
    position: relative;
}
.hdr-pill .ico,
.hdr-pill svg{
    margin-bottom: 0.1em;
}
.hdr-pill .header-link{
    border-bottom: 0.25em solid transparent;
       transition: 0.3s ease-in-out;
}
.hdr-pill:hover .header-link{
    border-bottom: 0.25em solid #f6bb03;
}
.hdr-pill .ico svg{
    color: #fff;
}
.hdr-pill:hover {
    border-color: var(--yellow);
}

.hdr-pill span.ico {
    font-size: 1.1em;
}

.ico i {
    font-size: 1em;
    color: #fff;
}

.hdr-badge {
    background: #dc3545;
    color: #fff;
    font-size: 0.8em;
    padding: 0;
    border-radius: 50%;
    font-weight: 700;
    min-width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    line-height: 0;
    justify-content: center;
    position: absolute;
    left: 0.91em;
    top: 0.2em;
}

/* ================= USER MINI ================= */

.user-mini {
    display: flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.3em 0.6em;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.06);
}

.user-avatar {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: var(--js-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95em;
}

.user-name {
    font-size: 0.9em;
    font-weight: 600;
}
/* .app-footer{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 8em;
} */
@media (min-width: 768px) {
    .hdr-pill {
        display: flex;
    }
}
.footer-links a:hover::after {
  width: 100%;
}

/* META */
.footer-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .6em;
  font-weight: 600;
  color: #9ca3af;
}

.footer-chip {
  padding: .3em .7em;
  border-radius: 999em;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .9em;
}

/* ================= MOBILE ================= */
@media (max-width: 767px) {
    .footer-brand {
    margin: auto;
}
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    display: none;
  }

  .footer-meta {
    justify-content: center;
  }
  .footer-inner {
    max-width: 100%;
    gap: 2em;
    align-items: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7em;
}
.app-footer {
    padding-inline: 2em;
}
.user-avatar {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: var(--js-primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.485em;
}
}
