body {
    display: flex;
    flex-direction: column;
    align-items: stretch;

    margin: 0;
    padding: 0;

    background-color: var(--focus-background);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
}

.layout.content-wrapper {
    display: flex;
    flex-direction: column;

    box-sizing: border-box;
}

.page.content-wrapper {
    display: flex;
    flex-direction: column;
}

.page.content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.container {
    width: 100%;
    min-width: auto;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 478px) {
    .container {
        max-width: none;
    }
}

@media screen and (max-width: 767px) {
    .container {
        max-width: none;
    }
}

@media screen and (min-width: 991px) {
    .container {
        width: 75%;
        max-width: 1156px;
    }
}

@media screen and (min-width: 1440px) {
    .container {
        min-width: 1156px;
        max-width: 1440px;
    }
}

@media screen and (min-width: 1920px) {
    .container {
        min-width: 1280px;
        max-width: 1440px;
    }
}

.section {
    color: var(--primary-text);
}

.section.content-wrapper {
    display: flex;
    flex-direction: column;

    background-color: var(--primary-background);

}

.section.content {
    display: flex;
    flex-direction: column;

    padding: 24px;

    overflow: hidden;
}

.grid.content-wrapper {
    display: flex;
    flex-direction: column;

    margin: 0px 12px;
}

@media screen and (max-width: 478px) {
    .grid.content-wrapper {
        margin: 0px 0px;
    }
}

.card {
    color: var(--primary-text);
}

.card.content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(256px, 1fr));

    gap: 12px;
}

.card.content {
    display: grid;

    padding: 24px;

    overflow: hidden;

    background-color: var(--primary-background);
}

.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;
}

.section.content.collection.title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;

    padding: 24px;

    margin-bottom: 36px;
}

@media only screen and (max-width: 767px) {
    .section.content.collection.title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: space-between;

        padding: 24px;

        margin-bottom: 24px;
    }
}