/*
Theme Name:  Bart de Jong
Author:      SU-F Studio
Description: Custom WordPress theme.
Version:     1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bart-de-jong
*/


/* =============================================================
   IMPORTS
   ============================================================= */

@import url("assets/css/colors.css");


/* =============================================================
   FONTS
   ============================================================= */

@font-face {
    font-family: 'Stringer-Trial';
    src: url('assets/fonts/TRIAL-Stringer-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haltung-Trial';
    src: url('assets/fonts/TRIAL-Haltung-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haltung-Trial';
    src: url('assets/fonts/TRIAL-Haltung-Medium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* =============================================================
   DESIGN TOKENS
   ============================================================= */

:root {

    /* --- Font families --- */
    --font-display: 'Stringer-Trial', Georgia, serif;
    --font-body: 'Haltung-Trial', Helvetica, sans-serif;

    /* --- Font weights --- */
    --fw-display: 400;
    --fw-book: 500;
    --fw-medium: 600;

    /* --- Type scale --- */
    --text-h1: 3.75rem;
    /* 60px */
    --text-h2: 2.5rem;
    /* 40px */
    --text-h3: 1.75rem;
    /* 28px */
    --text-h4: 1.5rem;
    /* 24px */
    --text-h5: 0.9375rem;
    /* 15px */
    --text-h6: 0.75rem;
    /* 12px */
    --text-base: 1.125rem;
    /* 18px */

    /* --- Line heights --- */
    --leading-display: 1.2;
    --leading-body: 1.4;
    --leading-label: 1.0;

    /* --- Letter spacing --- */
    --tracking-display: -0.02em;
    --tracking-body: 0.01em;
    --tracking-label: 0.04em;

    /* --- Opacity --- */
    --opacity-muted: 0.6;
    --opacity-subtle: 0.4;
    --opacity-ghost: 0.12;

    /* --- Spacing --- */
    --space-xs: 0.375rem;
    /* 6px   */
    --space-sm: 0.5rem;
    /* 8px   */
    --space-md: 1rem;
    /* 16px  */
    --space-lg: 1.5rem;
    /* 24px  */
    --space-xl: 2rem;
    /* 32px  */
    --space-2xl: 2.5rem;
    /* 40px  */
    --space-3xl: 3.75rem;
    /* 60px  */
    --space-4xl: 5.625rem;
    /* 90px  */
    --space-5xl: 7.5rem;
    /* 120px */

    /* --- Paddings --- */
    --page-padding: var(--space-2xl);
    /* 40px              */
    --section-padding: var(--space-4xl) var(--space-2xl) var(--space-5xl);
    /* 90 / 40 / 120px   */

    /* --- Layout --- */
    --content-width: 1600px;
    --project-size: 400px;
    --insight-size: 280px;


    /* --- Transitions --- */
    --ease: 0.25s ease;
    --ease-slow: 400ms ease;
}


/* =============================================================
   ANIMATIONS
   ============================================================= */

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(0.5rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =============================================================
   RESET & BASE
   ============================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

input {
    -webkit-appearance: none;
}

input:focus {
    outline: none;
}

/* Remove browser autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
    -webkit-text-fill-color: var(--scheme-text) !important;
    background-color: transparent !important;
    transition: background-color 9999s ease-out 0s;
}

input:-moz-autofill {
    box-shadow: 0 0 0 1000px transparent inset !important;
    filter: none !important;
}


/* =============================================================
   TYPOGRAPHY
   ============================================================= */

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
.navbar__logo,
.article-card__title,
.samenwerken__step-title  {
    font-family: var(--font-display);
    font-weight: var(--fw-display);
    line-height: var(--leading-display);
    letter-spacing: var(--tracking-display);
}

h1,
.h1 {
    font-size: var(--text-h1);
}

h2,
.h2 {
    font-size: var(--text-h2);
}

h3,
.h3,
.article-card__title,
.samenwerken__step-title {
    font-size: var(--text-h3);
}

h4,
.h4,
.navbar__logo  {
    font-size: var(--text-h4);
}


body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--fw-book);
    line-height: var(--leading-body);
    letter-spacing: var(--tracking-body);
}

h5,
.h5,
.primary-menu li a {
    font-family: var(--font-body);
    font-size: var(--text-h5);
    font-weight: var(--fw-medium);
    line-height: var(--leading-body);
    letter-spacing: var(--tracking-body);
}

h6,
.h6,
.subheading__label,
.wp-block-buttons .wp-block-button__link,
.wp-block-buttons .wp-element-button,
.article-card__category,
.samenwerken__step-number,
.footer__col-label {
    font-family: var(--font-body);
    font-size: var(--text-h6);
    font-weight: var(--fw-medium);
    line-height: var(--leading-label);
    letter-spacing: var(--tracking-label);
}

.footer__bottom-item {
    font-family: var(--font-body);
    font-size: var(--text-h6);
    font-weight: var(--fw-book);
    line-height: var(--leading-label);
    letter-spacing: var(--tracking-body);
}

p+p {
    margin-top: var(--text-base);
}

p+.wp-block-buttons {
    margin-top: calc(var(--space-3xl)/2);
}

a,
.nav span {
    font-weight: var(--fw-medium);
}


/* =============================================================
   LAYOUT
   ============================================================= */

/* .section-container {
    opacity: 0;
    transition: opacity 1000ms ease;
}

.section-container.visible,
.section--hero .section-container {
    opacity: 1;
} */


/* =============================================================
   WORDPRESS BLOCKS
   ============================================================= */

.wp-block-video video,
.wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-element-caption {
    font-size: 0.5rem;
    letter-spacing: 0.01rem;
    margin-top: -15px;
    margin-left: 5px;
    margin-bottom: 0;
    color: var(--scheme-text, var(--color-white));
}


/* =============================================================
   GRIDS
   ============================================================= */

.grid {
    display: grid;
    gap: var(--space-2xl);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--6 {
    grid-template-columns: repeat(6, 1fr);
}

.grid--12 {
    grid-template-columns: repeat(12, 1fr);
}


/* =============================================================
   SUBHEADING COMPONENT
   — Label text + full-width 1px rule, used above each section
   ============================================================= */

.subheading {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    width: 100%;
    margin-bottom: var(--space-3xl);
}

.subheading__rule {
    height: 1px;
    background-color: var(--scheme-text);
    border: none;
}


/* =============================================================
   BUTTON
   ============================================================= */

.wp-block-buttons .wp-block-button__link,
.wp-block-buttons .wp-element-button {
    display: inline-flex;
    align-items: center;
    padding: calc(var(--space-xs)*2) calc(var(--space-xs)*1.5);
    border: 1px solid currentColor;
    background: transparent;
    border-radius: 0;
    color: var(--scheme-text, currentColor);
    white-space: nowrap;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease);
}

.wp-block-button__link:hover,
.wp-element-button:hover {
    background-color: var(--scheme-text, currentColor);
    color: var(--scheme-bg, var(--color-off-black));
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--scheme-text, currentColor);
    border-color: var(--scheme-text, currentColor);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background-color: var(--scheme-text, currentColor);
    color: var(--scheme-bg, var(--color-off-black));
}

.wp-block-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}


/* =============================================================
   HEADER / NAV
   ============================================================= */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
    color: var(--color-off-black);
    transition: background-color var(--ease);
}

header.on-dark {
    color: var(--color-white);
}

.section--header {
    width: 100%;
}

.section--header .section-container {
    display: flex;
    justify-content: space-between;
    padding-block: var(--space-lg);
    pointer-events: all;
}

.navbar__logo {
    line-height: 1;
    color: inherit;
    white-space: nowrap;
    z-index: 2;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

header.on-dark {
    color: var(--color-white);
}

.nav__toggle,
.nav__contact-menu  {
    display: none;
}


/* =============================================================
   SECTION SHARED
   ============================================================= */

.section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section:not(.section--hero):not(.section--space),
.footer {
    position: relative;
    z-index: 2;
}

.section--space {
    position: relative;
    z-index: 0;
    height: 80svh;
    background: transparent;
    pointer-events: none;
}

.section-container {
    max-width: var(--content-width);
    margin-inline: auto;
    padding: var(--section-padding);
}

.section-container .wp-block-columns+.section-container__inner {
    margin-top: var(--space-4xl);
}

.layout--5-5 .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-2xl);
}

.layout--5-5 .wp-block-column:first-of-type {
    grid-column: span 5;
}

.layout--5-5 h2,
.layout--6-6 h2 {
    margin-bottom: var(--space-3xl);
}

.layout--5-5 .wp-block-column:last-of-type {
    grid-column: 8 / span 5;
}

.layout--5-5 .wp-block-column {
    display: flex;
    flex-direction: column;
}

.layout--5-5 .wp-block-column>p:first-of-type {
    margin-top: auto;
}

.layout--6-6 .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-2xl);
}

.layout--6-6 .wp-block-column:first-of-type {
    grid-column: span 6;
}

.layout--6-6 .wp-block-column:last-of-type {
    grid-column: 8 / span 5;
}


/* =============================================================
   SECTION: HERO
   ============================================================= */

.section--hero {
    overflow: hidden;
    color: var(--color-white);
    width: 100%;
}

.section--hero-1 {
    position: sticky;
    top: 0;
    z-index: 0;
    height: 100svh;
}

.section--hero-2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: 100svh;
    opacity: 0;
    pointer-events: none;
}

.section--hero-2.is-visible {
    opacity: 1;
}


.hero__bg {
    position: absolute;
    inset: 0;
    margin: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(27, 14, 1, 0.45) 0%,
            rgba(27, 14, 1, 0) 15%);
    pointer-events: none;
}

.section--hero .section-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100svh;
    padding: var(--page-padding);
}


/* =============================================================
   SECTION: EXPERTISE
   ============================================================= */

.section--expertise .section-container,
.section--over .section-container {
    padding-bottom: calc(var(--space-4xl) * 2);
}

.section--expertise .collage {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: var(--space-2xl);
    grid-row-gap: calc(var(--space-2xl)*4);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: left;
}

.section--expertise .collage img {
    height: auto;
}

.section--expertise .collage figure:nth-of-type(1) {
    grid-column-start: 1;
    width: 80%;
    grid-row: span 2;
    margin-top: calc(var(--space-2xl)*4);
}

.section--expertise .collage figure:nth-of-type(2) {
    grid-column-start: 2;
}

.section--expertise .collage figure:nth-of-type(3) {
    grid-column-start: 2;
    width: 80%;
    grid-row: span 3;
}

.section--expertise .collage .wp-block-group {
    grid-column-start: 1;
    width: 80%;
    grid-row: 4;
}

.section--expertise .collage h2 {
    margin-bottom: var(--space-3xl);
}


/* =============================================================
   SECTION: ARTICLES
   ============================================================= */

.section--articles .section-container {
    padding-bottom: calc(var(--space-5xl) + calc(var(--space-3xl)/2));
}

.section--projecten {
    box-shadow: 0 12px 48px rgba(27, 14, 1, 0.14);
}

.section--inzichten .article__image {
    height: var(--insight-size);
}

.section--inzichten .article--portrait .article__image {
    width: calc(var(--insight-size) * 3 / 4);
}

.section--inzichten .article--landscape .article__image {
    width: calc(var(--insight-size) * 4 / 3);
}

.section--inzichten .article--square .article__image {
    width: var(--insight-size);
}

.articles {
    display: flex;
    gap: var(--space-2xl);
    overflow: visible;
    margin-top: var(--space-4xl);
}

.article {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    width: min-content;
    text-decoration: none;
    color: inherit;
}

.article__image {
    position: relative;
    overflow: hidden;
    height: var(--project-size);
}

.article--portrait .article__image {
    width: calc(var(--project-size) * 3 / 4);
}

.article--landscape .article__image {
    width: calc(var(--project-size) * 4 / 3);
}

.article--square .article__image {
    width: var(--project-size);
}

.article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: var(--space-lg);
}

.article:hover .article__overlay {
    opacity: 1;
}

.article__title {
    color: var(--color-white);
    text-align: center;
    margin: 0;
}


/* =============================================================
   SECTION: SAMENWERKEN
   ============================================================= */

.section--samenwerken .section-container__inner .wp-block-columns {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    padding-block: var(--space-xl);
    cursor: pointer;
}

.section--samenwerken .section-container__inner .wp-block-columns:first-child {
    border-bottom: 1px solid currentColor;
}

.section--samenwerken .section-container__inner .wp-block-column:first-child {
    flex: 0 0 auto;
    width: 35%;
}

.section--samenwerken .section-container__inner .wp-block-column:last-child {
    flex: 0 0 auto;
    margin-left: auto;
}


/* =============================================================
   FOOTER
   ============================================================= */

.footer .section-container {
    max-width: var(--content-width);
    margin-inline: auto;
    padding-inline: var(--page-padding);
    padding-block: var(--space-3xl) var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-5xl);
}

.footer__cta {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-lg) + var(--space-xs));
}

.footer__cols {
    grid-column: 7 / span 6;
}

.footer__col {
    grid-column: span 3;
}

.footer__col-label {
    opacity: var(--opacity-muted);
    margin-bottom: var(--space-md);
}

.footer__bottom-item.footer__bottom-item--legal {
    grid-column: span 6;
}

.footer__bottom-item {
    opacity: var(--opacity-muted);
    grid-column: span 3;
}

.footer__bottom-item--legal li {
    grid-column: span 3;
}

@media (max-width: 900px) {

    .grid,
    .primary-menu,
    .layout--5-5 .wp-block-columns,
    .layout--6-6 .wp-block-columns {
        gap: var(--space-lg);
    }

    .section--expertise .collage {
        grid-column-gap: var(--space-lg);
        grid-row-gap: calc(var(--space-lg) * 4);
    }

}



/* =============================================================
   MOBILE  ·  max-width: 781px
   ============================================================= */

@media (max-width: 781px) {

    :root {
        --page-padding: calc(var(--space-md) + var(--space-sm)/2);
        --section-padding: var(--space-3xl) var(--page-padding) var(--space-4xl);

        --text-h1: 2.5rem;
        /* 40px  ↓ 60px */
        --text-h2: 1.75rem;
        /* 28px  ↓ 40px */
        --text-h3: 1.125rem;
        /* 18px  ↓ 28px */
        --text-h5: 0.75rem;
        /* 12px  ↓ 15px */
        --text-base: 0.938rem;
        /* 15px  ↓ 18px */

        --project-size: 280px;
        --insight-size: 200px;
    }


    /* ─── HEADER ─── */

    header.nav-open {
        color: var(--color-white);
    }

    .section--header {
        position: relative;
        z-index: 1;
    }

    .section--header .section-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__toggle {
        display: flex;
        position: relative;
        z-index: 2;
    }

    .nav__toggle span:last-child,
    .nav__toggle[aria-expanded="true"] span:first-child {
        display: none;
    }

    .nav__toggle[aria-expanded="true"] span:last-child {
        display: inline;
    }


    .nav__drawer {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding-top: calc(var(--space-lg) * 2 + 2rem);
        padding-bottom: var(--space-lg);
        padding-inline: var(--page-padding);
        background-color: var(--color-green);
        clip-path: inset(0 0 100% 0);
        pointer-events: none;
        transition: clip-path 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    }

    header.nav-open .nav__drawer {
        clip-path: inset(0 0 0% 0);
        pointer-events: all;
    }

    .nav__drawer > * {
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    header.nav-open .nav__drawer > * {
        opacity: 1;
        transition-delay: 0.2s;
    }

    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
        padding-bottom: var(--space-md);
    }

    .primary-menu li a {
        font-family: var(--font-display);
        font-size: var(--text-h4);
        font-weight: var(--fw-display);
        letter-spacing: var(--tracking-display);
        line-height: var(--leading-display);
    }

    .nav__contact-menu {
        display: flex;
        flex-direction: column;
        border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent);
        padding-top: var(--space-md);
    }



    /* ─── GRIDS ─── */

    .grid {
        gap: calc(var(--space-2xl)/2);
    }

    .grid--2,
    .grid--3,
    .grid--4,
    .grid--6,
    .grid--12 {
        grid-template-columns: 1fr;
    }


    /* =============================================================
        SECTION SHARED
        ============================================================= */

    .layout--5-5 .wp-block-columns,
    .layout--6-6 .wp-block-columns {
        grid-template-columns: 1fr;
        gap: calc(var(--space-3xl)/2);
    }

    .layout--5-5 h2,
    .layout--6-6 h2 {
        margin-bottom: 0;
    }

    .layout--5-5 .wp-block-columns:has(.wp-block-column figure) {
        gap: var(--space-3xl);
    }

    .layout--5-5 .wp-block-column:first-of-type,
    .layout--5-5 .wp-block-column:last-of-type,
    .layout--6-6 .wp-block-column:first-of-type,
    .layout--6-6 .wp-block-column:last-of-type {
        grid-column: 1;
    }

    .section:not(.layout--5-5):not(.layout--6-6) h2,
    .section--visie h2,
    .section--over h2 {
        margin-bottom: calc(var(--space-3xl)/2);
    }

    p+.wp-block-buttons {
        margin-top: calc(var(--space-2xl)/2);
    }

    .section:not(.section--hero) .section-container {
        padding: var(--section-padding);
    }


    /* ─── SUBHEADING ─── */

    .subheading {
        margin-bottom: var(--space-xl);
    }


    /* ─── VISIE ─── */

    .section--visie .wp-block-column:first-of-type:has(:not(figure)) {
        order: 2;
    }

    .section--visie figure,
    .section--over figure {
        aspect-ratio: 1;
        height: 100%;
    }


    /* ─── EXPERTISE COLLAGE ─── */

    .section--expertise .collage {
        grid-auto-flow: row;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: calc(var(--space-2xl)/2);
        grid-row-gap: calc(var(--space-3xl)/2);
    }

    .section--expertise .collage img {
        height: 100%;
    }    

    .section--expertise .collage figure:nth-of-type(1) {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        margin-top: 0;
    }

    .section--expertise .collage figure:nth-of-type(2) {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .section--expertise .collage figure:nth-of-type(3) {
        grid-column: 2;
        grid-row: 2;
        width: 100%;
    }

    .section--expertise .collage .wp-block-group {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
        margin-top: calc(var(--space-3xl)/2);
    }


    /* ─── ARTICLES ─── */

    .articles {
        margin-top: var(--space-3xl);
    }

    .section.section--articles .section-container {
        padding-bottom: var(--space-5xl);
    }


    /* ─── OVER ─── */

    .section.section--over .section-container {
        padding-bottom: calc(var(--space-5xl) + calc(var(--space-3xl)/2));
    }


    /* ─── SAMENWERKEN ─── */


    .section-container .wp-block-columns+.section-container__inner {
        margin-top: var(--space-3xl);
    }

    .section--samenwerken .section-container__inner .wp-block-columns {
        gap: var(--space-md);
        padding-block: calc(var(--space-2xl)/2);
    }

    .section--samenwerken .section-container__inner .wp-block-column:first-child {
        width: 100%;
    }

    .section--samenwerken .section-container__inner .wp-block-column:last-child {
        margin-left: 0;
    }

    .section--samenwerken .section-container__inner>.wp-block-columns:not(:last-child) .wp-block-column:last-of-type {
        display: none;
    }

    .section--samenwerken .section-container__inner .wp-block-buttons {
        margin-top: var(--space-lg);
    }


    /* ─── FOOTER ─── */

    .footer .section-container {
        gap: var(--space-4xl);
    }

    .footer__top {
        gap: var(--space-2xl);
    }

    .footer__cta {
        grid-column: 1;
        gap: var(--space-md);
    }

    .footer__cols {
        grid-column: 1;
    }

    .footer__cols.grid--6,
    .footer__bottom.grid--12 {
        grid-template-columns: 1fr 1fr;
        row-gap: var(--text-base);
    }

    .footer__col {
        grid-column: span 1;
    }

    .footer__col-label {
        margin-bottom: var(--space-sm);
    }

    .footer__bottom-item,
    .footer__bottom-item.footer__bottom-item--legal {
        grid-column: unset;
    }
}