.container {
    max-width: var(--layout-max-width);
    margin: 0 auto;
    padding: var(--s-base);
    flex: 1;
    width: 100%;
}

.header,
.footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--s-base);
    border-bottom: 1px solid var(--c-border);
}

.footer {
    border-bottom: none;
    border-top: 1px solid var(--c-border);
    justify-content: center;
}

.header .logo {
    font-size: var(--f-size-xl);
    font-weight: normal;
    letter-spacing: .125rem;
    outline: none !important;
}

.header .actions {
    display: flex;
    gap: var(--s-half);
}

.list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--s-base);
}

.grid-3 .box {
    margin-bottom: 0;
    padding: var(--s-base);
}

@media (max-width: 600px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--s-half);
    }
}