/* FOOTER */
.layout-footer-main {
  width: 100%;
  height: var(--footer-height);
  flex-shrink: 0;
  background: var(--color-secondary);
  display: grid;
  border-top: 4px solid var(--color-border);
  grid-template-columns: 25% 50% 25%;
  align-items: center;
  padding: 6px 20px;
  z-index: 1000;
  /*box-shadow: var(--shadow-sm);*/
}

/* SECTIONS */
/* LEFT */
.layout-footer-section-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.layout-footer-section-left .layout-footer-line {
  justify-items: start;
}

/* CENTER */
.layout-footer-section-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* RIGHT */
.layout-footer-section-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.layout-footer-section-right .layout-footer-line {
  grid-template-columns: 64px auto;
  justify-content: end;
  column-gap: 4px;
}

/* LEFT */
.layout-footer-section-left {
  align-items: flex-start;
}

/* FOOTER LINE */
.layout-footer-line {
  width: 100%;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  margin-bottom: -2px;
}

/* CENTER */
.layout-footer-section-center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* RIGHT */
.layout-footer-section-right {
  align-items: flex-end;
  text-align: right;
}

/* LABELS */
.layout-footer-label {
  width: auto;
  font-size: var(--font-xs-11);
  font-weight: var(--font-medium-500);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0px;
}

/* VALUES */
.layout-footer-value {
  font-size: var(--font-sm-12);
  font-weight: var(--font-semibold-600);
  color: var(--color-text-white);
}

/* BRANDING */
.layout-footer-brand-line-1,
.layout-footer-brand-line-2 {
  font-size: var(--font-sm-12);
  color: var(--color-text-white);
  line-height: 1.5;
}

/* HIGHLIGHT */
.layout-footer-brand-highlight {
  color: var(--color-primary);
  font-weight: var(--font-bold-700);
}

/* POWERED BY */
.layout-footer-brand-powered {
  color: var(--color-text-light);
  margin-left: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .layout-footer-main {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 12px;
  }

  .layout-footer-section-left,
  .layout-footer-section-center,
  .layout-footer-section-right {
    align-items: center;
    text-align: center;
  }

  .layout-footer-section-right {
    display: none;
  }

  .layout-footer-brand-line-1,
  .layout-footer-brand-line-2 {
    font-size: var(--font-xs-11);
  }
}
