body{
    background-color: var(--primary-bg);
}

#header {
    padding: 1em;
    height: auto;
    background: var( --header-bg  );
}

#header .navbar-section {
    height: auto;
}

.grid-full{
    margin-inline: 0;
    padding-inline: 0;
}

section.section.grid-full{
    padding-inline: 0;
}

.modular-text.grid-full{
    padding-bottom: 0;
    padding-top: 0;
}

.modular-text.grid-full:first-child {
    padding-top: 2rem;
}

.modular-text.grid-full:last-child {
    padding-bottom: 2rem;
}

/* Default template pages get inline padding even with grid-full */
.default-content-wrapper {
    padding-inline: 10rem;
}

.col-center {
    justify-items: center;
    align-content: center;
}

.justify-space-between {
    justify-content: space-between;
}

.justify-space-around {
    justify-content: space-around;
}

.justify-space-evenly {
    justify-content: space-evenly;
}

.flex-column{
    flex-direction: column;
}

.sticky{
    position: sticky;
    top:3rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.pi-1 {
    padding-inline: 0.5rem;
}

.pi-2 {
    padding-inline: 1rem;
}

.pi-3 {
    padding-inline: 1.5rem;
}

.pi-4 {
    padding-inline: 2rem;
}

.mb-4{
    margin-bottom: 2rem;
}