body {
    display: flex;
    flex-direction: column;
}

.page {
    width: 100%;
    display: flex;
    flex-direction: column;
    place-content: center;

    flex: 1 1 0;

}

.page>.page__inner {
    width: 100%;
    max-width: var(--max-content-width);
    margin: auto;
    flex: 1 0 0;
}

.admin-notification-overlay {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 0.25em;

}

.admin-notification-overlay .text-2 {
    display: none;
    opacity: 0.75;
    text-decoration: none;
    color: white;
}

.admin-notification-overlay:hover .text-1 {
    display: none;
}

.admin-notification-overlay:hover .text-2 {
    display: initial;
}

.message-overlay {
    position: fixed;
    right: 0;
    bottom: 0;
    max-width: 32em;
    width: 100%;
    padding: 1em;
    display: flex;
    flex-direction: column;
    z-index: 20;
}

@keyframes message-overlay-items {
    0% {
        transform: translateX(10em);
        opacity: 0;
    }

    100% {
        transform: scaleX(0em);
        opacity: 1;
    }
}

.message-overlay>.message {
    animation: message-overlay-items 200ms ease;
    animation-fill-mode: backwards;
    animation-delay: 0.5s;
}

.message-overlay:blank {
    display: none;
}

.message-overlay:not(:has(*)) {
    display: none;
}

.footer__inner {
    width: 100%;
    max-width: var(--max-content-width);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5em;
    padding: 2em;
    gap: 1em;
}

@media screen and (min-width: 768px) {
    .footer__inner {
        flex-direction: row;
        place-items: center;
        margin-bottom: 0;
        justify-content: space-between;
    }
}

.wa-button {
    position: relative;
    text-decoration: none;
    color: white;
    background-color: var(--color-primary);
    border-radius: 50vh;
    height: 4em;
    width: 4em;
    transition: width ease 250ms, border-radius ease 100ms;
    display: flex;
    place-items: center;
    place-content: center;
    padding: 1em;
    z-index: 1;
}

.wa-button .wa-button__text {
    overflow: hidden;
    text-wrap: nowrap;
    flex-direction: column;
    width: 0;
    transition: margin-left ease 100ms, opacity ease 500ms;
    display: flex;
    place-items: center;
    place-content: center;
    opacity: 0;
}

.wa-button:hover {
    width: 16em;
}

.wa-button:hover .wa-button__text {
    width: 100%;
    margin-left: 0.5em;
    opacity: 1;
}

.breadcrumbs {
    padding: 0em 1em; 
    max-width: var(--max-content-width); 
    width: 100%; 
    margin: auto; 
    flex: 1 0 0;
    place-items: center;
    gap: 0.5em;
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
}

.breadcrumbs a {
    text-decoration: none;
    color: inherit;
}