/* Main Layout */

:root {
    --navbar-height: 5.5rem;
    --fa-style-family-classic: "Font Awesome 6 Pro";
    --fa-font-light: normal 300 1em / 1 "Font Awesome 6 Pro";
}

/* El hueco blanco antes del footer */
.vd-footer-gap{
  height: 3rem;           /* equivalente a pt-5 (aprox) */
  flex: 0 0 auto;
}

.vd-navbar-wrap{
    height: var(--navbar-height);
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}

.vd-navbar {
    display: inline-flex;
    align-items: center;
    height: var(--navbar-height);
    padding-left: 2.4rem;
    color: #184389;
    text-decoration: none;
    cursor: pointer;
}

.vd-navbar:hover {
    text-decoration: underline;
    color: #184389;
    font-weight: bold;
}

.vd-navbar-selected {
    color: #184389;
    font-weight: bold;
}

/* Footer */

html, body {
  height: 100%;
}

.vd-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vd-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.vd-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-footer {
  margin-top: auto;
}