@import "tailwindcss";

.header {
    background-color: #ffffff;
    box-shadow: 0 1px 5px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 3px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
}

:root {
    --padding-small: 16px 24px;
    --padding-large: 48px;
    --gap: 24px;
}

.header .container,
.navbar,
.navbar-drawer {
    padding: var(--padding-small);
}

.brand-name {
    font-weight: 700;
    font-size: 1.6rem;
    align-self: center;
    line-height: 1;
    margin-left: 10px;
    color: var(--color-cyan-600);
}

.drawer-divider {
    margin-top: 16px;
    border-top: 1px solid var(--color-gray-300);
}

.my-4 {
    margin: 4px 0;
}

.my-6 {
    margin: 6px 0;
}

.my-8 {
    margin: 8px 0;
}

.my-14 {
    margin: 14px 0;
}

.mt {
    margin-top: 14px;
}

.container,
.about {
    padding: 36px 24px;
}

.no-padding {
    padding: 0;
    height: 65px;
}

.font-bold {
    font-weight: 700;
}

.no-scroll {
    overflow: hidden;
}

.btn {
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-lg);
    padding: 8px 16px;
    cursor: pointer;
    text-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    width: fit-content;
}

.btn-default {
    min-width: 120px;
    text-align: center;
}

.btn-circle {
    border-radius: 50%;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.pagination-btn {
    color: var(--color-gray-700);
}

.pagination-btn:hover {
    color: var(--color-gray-700);
    background-color: var(--color-gray-200);
}

.btn-circle svg {
    height: 24px;
    width: 24px;
}

.text-link {
    font-weight: 600;
}

.text-link-primary {
    color: var(--color-cyan-700);
}

.text-link-primary:hover {
    color: var(--color-cyan-900);
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--color-cyan-600);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-cyan-800);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-cyan-700);
    border: 1px solid var(--color-cyan-700);
}

.btn-secondary:hover {
    color: #ffffff;
    background-color: var(--color-cyan-700);
}

.btn-icon {
    height: 16px;
    width: 16px;
}

.btn-icon svg {
    height: 16px;
    width: 16px;
}

.btn:hover .btn-icon svg {
    fill: #ffffff;
}

.backdrop {
    background-color: rgba(0, 0, 0, 0.8);
}

.menu-trigger {
    cursor: pointer;
}

.menu-item {
    border-radius: var(--radius-lg);
    background-color: #ffffff;
}

.menu-item:hover,
.submenu-trigger.active {
    background-color: var(--color-cyan-600);
    color: #ffffff;
}

.submenu-trigger.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.m-submenu,
.submenu {
    border-bottom-right-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.m-submenu {
    background-color: var(--color-gray-100);
    max-height: 0;
    overflow: hidden;
    padding: 0;
}

.submenu {
    border-top-right-radius: var(--radius-lg);
    border-top: 2px solid var(--color-cyan-600);
    padding: 8px;
}

.m-submenu a,
.submenu a {
    border-radius: var(--radius-sm);
}

.m-submenu a:last-of-type {
    border-bottom-right-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.submenu a:first-of-type {
    border-top-right-radius: var(--radius-lg);
}

.submenu a:last-of-type {
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.m-submenu a:hover,
.submenu a:hover,
.submenu a:focus,
.submenu a:active {
    color: var(--color-cyan-600);
    box-shadow: 0 1px 5px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.2)), 0 2px 3px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.2));
}

.m-submenu a:hover {
    background-color: #ffffff;
}

.submenu a:hover,
.submenu a:focus,
.submenu a:active {
    background-color: var(--color-gray-50);
}

.with-submenu .menu-item span {
    margin-left: 10px;
}

.with-submenu .menu-item svg {
    height: 12px;
    width: 12px;
}

.with-submenu:hover svg,
.with-submenu:focus svg,
.with-submenu:active svg,
.submenu-trigger.active svg {
    fill: #ffffff;
}

.submenu-trigger.active svg {
    transform: rotate(180deg);
}

.m-submenu.open {
    max-height: 100%;
    padding: 8px;
}

.desktop-only {
    display: none;
    visibility: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-picture img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.hero-title {
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-cta {
    margin-top: 24px;
}

.section-title {
    font-weight: 800;
    font-size: 1.4em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about {
    background-color: var(--color-slate-100);
}

.about .container {
    outline-color: color-mix(in oklab, var(--color-gray-200), transparent);
    box-shadow: 0 1px 5px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.2)), 0 2px 3px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.2));
    max-width: 592px;
    padding: 24px 18px;
}

.list-svg {
    padding-top: 5px;
}

.list-svg svg {
    fill: var(--color-gray-900);
    width: 16px;
    height: 16px;
}

.items-container {
    position: relative;
    margin-top: 24px;
}

.slider-wrapper {
    margin-bottom: 24px;
}

.biennales-wrapper {
    display: flex;
    --items: 1;
    --gap: 24px;
    overflow-x: auto;
    gap: var(--gap);
    scroll-snap-type: x proximity;
    scroll-padding-inline: 0;
    max-width: calc(100vw - ((var(--items) - 1) * var(--gap)) - 48px);
    padding: 0 16px 32px 0;
}

.biennale-item {
    border: 1px solid var(--color-gray-200);
    outline-color: color-mix(in oklab, var(--color-gray-200), transparent);
    display: flex;
    flex-direction: column;
    padding: 8px 8px 16px 8px;
    gap: 8px;
    transition: box-shadow 0.3s;
    min-width: 250px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
}

.biennale-item:hover {
    box-shadow: 4px 4px 1px var(--color-gray-200), 8px 8px 1px var(--color-gray-300), 12px 12px 4px var(--color-gray-400);
}

.biennale-cta {
    background-color: var(--color-gray-50);
    align-items: center;
    justify-content: center;
    display: flex;
    min-width: 250px;
    scroll-snap-align: center;
    padding: 16px;
}

.biennale-icon {
    display: inline-flex;
    height: 44px;
    width: 44px;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    position: absolute;
    top: 24px;
    right: 24px;
}

.biennale-icon svg {
    height: 24px;
    width: 24px;
    fill: var(--color-gray-800);
}

.biennale-item .item-picture {
    background-color: aliceblue;
    height: auto;
}

.biennale-item .item-picture img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.biennale-item .item-content {
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-direction: column;
}

.biennale-item .item-leadparagraph {
    font-style: italic;
}

.p-light {
    display: flex;
    gap: 10px;
}

.item-title {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.3;
}

.item-leadparagraph {
    color: var(--color-gray-700);
    font-size: 0.9rem;
    line-height: 1.3;
}

.biennales-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-gray-50);
    border-radius: 50%;
    height: 44px;
    width: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.biennales-nav.next {
    right: 32px;
}

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    display: flex;
    background-color: var(--color-gray-400);
    height: 8px;
    width: 8px;
    transition: all 0.3s;
    border-radius: var(--radius-lg);
}

.dot--active {
    background-color: var(--color-cyan-600);
    width: 16px;
}

.divider .container {
    padding: 0;
    border-top: 1px solid var(--color-gray-300);
}

.news-wrapper,
.blog-list {
    display: flex;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.news-item {
    background-color: #ffffff;
    display: grid;
    grid-template-columns: 120px auto;
    gap: 12px;
    padding-top: 12px;
}

.news-item:nth-child(n+2) {
    border-top: 1px solid var(--color-gray-200);
}

.item-picture img,
.book-cover img {
    border-radius: var(--radius-sm);
}

.item-title {
    margin-bottom: 8px;
}

.news-title,
.news-leadparagraph {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.publications {
    background-color: var(--color-slate-100);
}

.books-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.book-cover {
    margin-bottom: 16px;
}

.book-subtitle {
    color: var(--color-gray-700);
    line-height: 1.3;
    font-style: italic;
}

.adhesion-contacts,
.footer {
    color: #ffffff;
    background-color: var(--color-slate-700);
}

.adhesion-contacts .container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    border-bottom: 1px solid var(--color-slate-500);
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.social-networks p,
.adhesion p {
    font-style: italic;
}

.social-networks p {
    font-weight: 700;
}

.networks {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.networks li svg {
    width: 24px;
    height: 24px;
    fill: var(--color-slate-300);
    transition: fill .3s;
}

.networks li:hover svg {
    fill: #ffffff;
}

.footer-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-direction: column;
}

.footer-nav li a:hover {
    text-decoration: underline;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background-color: var(--color-gray-50);
    padding: 8px 14px;
    border-radius: var(--radius-lg);
    color: var(--color-gray-600);
    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 500;
}

.breadcrumb a span:last-child {
    color: var(--color-gray-600);
    font-weight: 500;
}

.breadcrumb a span svg {
    height: 16px;
    width: 16px;
    fill: var(--color-gray-600);
    margin-right: 4px;
}

.breadcrumb a:first-child {
    display: flex;
}

.breadcrumb span:last-child {
    color: var(--color-gray-800);
    font-weight: 600;
}

.breadcrumb span:nth-child(3) {
    min-width: fit-content;
}

.breadcrumb a:hover,
.breadcrumb a:first-child:hover span {
    color: var(--color-gray-800);
}

.breadcrumb a:hover span svg {
    fill: var(--color-gray-800);
}

.content-container {
    max-width: 720px;
    margin: 0 auto;
}

.contact-networks {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.contact-networks li {
    list-style: none;
}

.contact-networks li svg {
    width: 24px;
    height: 24px;
    fill: var(--color-cyan-700);
    transition: fill .3s;
}

.contact-networks li:hover svg {
    fill: var(--color-cyan-900);
}

.inner-page {
    min-height: 100vh;
    height: 100%;
    background-color: #ffffff;
}

.inner-page a {
    text-decoration: dotted;
}

.inner-page ul {
    margin: 15px;
    list-style: disc;
}

.inner-page ol {
    margin: 15px;
    list-style: decimal;
}

.inner-page li {
    margin-bottom: 8px;
}

.inner-page .news-item {
    margin-bottom: 0;
}

.no-style {
    padding: 0;
    margin: 0;
}

.no-style li {
    list-style: none;
}

.legends {
    color: var(--color-gray-800);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.legends li {
    margin-bottom: 0;
}

.page-title {
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--color-cyan-700);
}

.page-picture {
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.page-picture img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.content-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-cyan-700);
}

.page-content p,
.content-container p {
    line-height: 1.6;
    margin: 16px 0;
}

.page-content ul {
    margin: 16px 0;
    padding-left: 20px;
    list-style: disc;
}

.page-content ol {
    margin: 16px 0;
    padding-left: 20px;
    list-style: decimal;
}

.page-content li {
    margin-bottom: 8px;
}

ul.list-checked {
    padding-left: 4px;
    list-style: none;
}

.list-checked li {
    display: flex;
    gap: 8px;
    line-height: 1.6;
}

.page-content ul.no-style {
    margin: 8px 0;
    padding-left: 8px;
}

.page-content ul.no-style li {
    margin-bottom: 4px;
}

.page-content a {
    color: var(--color-cyan-700);
}

.page-content a:hover {
    color: var(--color-cyan-900);
    text-decoration: underline;
}

.page-content blockquote {
    background-color: var(--color-gray-50);
    border-left: 3px solid var(--color-cyan-600);
    padding: 8px 16px;
    margin: 16px 0;
}

.page-content blockquote p {
    margin: 0;
}

.page-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.page-content iframe {
    width: 100%;
    height: 480px;
    border: none;
    border-radius: var(--radius-lg);
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
}

.page-content th,
.page-content td {
    border: 1px solid var(--color-gray-200);
    padding: 8px;
}

.page-content th {
    background-color: var(--color-gray-50);
}

.page-content thead {
    background-color: var(--color-gray-100);
}

.page-content tfoot {
    background-color: var(--color-gray-100);
}

.page-content .table-responsive {
    overflow-x: auto;
}

.page-content .table-responsive table {
    width: auto;
}

.page-content .table-responsive th,
.page-content .table-responsive td {
    min-width: 120px;
}

.page-content .table-responsive th:first-child,
.page-content .table-responsive td:first-child {
    min-width: 200px;
}

.page-content .table-responsive th:last-child,
.page-content .table-responsive td:last-child {
    min-width: 160px;
}

.page-content .table-responsive th:nth-child(2),
.page-content .table-responsive td:nth-child(2) {
    min-width: 160px;
}

.page-content .table-responsive th:nth-child(3),
.page-content .table-responsive td:nth-child(3) {
    min-width: 120px;
}

.page-content .table-responsive th:nth-child(4),
.page-content .table-responsive td:nth-child(4) {
    min-width: 120px;
}

.page-content .table-responsive th:nth-child(5),
.page-content .table-responsive td:nth-child(5) {
    min-width: 120px;
}

.page-content .table-responsive th:nth-child(6),
.page-content .table-responsive td:nth-child(6) {
    min-width: 120px;
}

.page-content .table-responsive th:nth-child(7),
.page-content .table-responsive td:nth-child(7) {
    min-width: 120px;
}

.page-content .table-responsive th:nth-child(8),
.page-content .table-responsive td:nth-child(8) {
    min-width: 120px;
}

.page-content .table-responsive th:nth-child(9),
.page-content .table-responsive td:nth-child(9) {
    min-width: 120px;
}

.page-content .table-responsive th:nth-child(10),
.page-content .table-responsive td:nth-child(10) {
    min-width: 120px;
}

ul.page-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    height: fit-content;
    background-color: var(--color-yellow-50);
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-yellow-100);
}

.page-nav li {
    list-style: none;
}

.page-nav a {
    color: var(--color-gray-800);
    border-left: 3px solid transparent;
    padding-left: 8px;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.page-nav a.active-page {
    color: var(--color-cyan-600);
    font-weight: 700;
    cursor: default;
    border-left-color: var(--color-cyan-600);
    pointer-events: none;
}

.page-nav a:hover {
    color: var(--color-cyan-600);
}

.related-content {
    margin-top: 48px;
}

.related-content .section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-cyan-800);
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: var(--color-gray-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
}

.input-container {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
}

.submit-container {
    margin-top: 24px;
}

label {
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-gray-800);
}

.checkbox-container {
    display: flex;
    gap: 8px;
}

input, select, textarea {
    width: 100%;
    max-width: 640px;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    background-color: #ffffff;
}

input[type=checkbox] { 
    width: fit-content;
    height: fit-content;
}

form button {
    border: none;
    cursor: pointer;
}

ul.blog-list,
ul.pagination {
    margin: 0;
    padding: 0;
}

ul.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.page-active {
    background-color: var(--color-gray-50);
    color: var(--color-gray-900);
    font-weight: 600;
}

.pagination li {
    list-style: none;
}

.galerie-list {
    display: grid;
    gap: 24px;
}

.galerie-item {
    border: 1px solid var(--color-gray-200);
    outline-color: color-mix(in oklab, var(--color-gray-200), transparent);
    display: flex;
    flex-direction: column;
    padding: 8px 8px 16px 8px;
    gap: 8px;
    transition: box-shadow 0.3s;
    min-width: 250px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
}

.galerie-item:hover {
    box-shadow: 4px 4px 1px var(--color-gray-200), 8px 8px 1px var(--color-gray-300), 12px 12px 4px var(--color-gray-400);
}

.galerie-pictures a {
    padding: 4px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-slate-100);
    transition: all 0.3s;
}

.galerie-pictures a img {
    border-radius: var(--radius-sm);
}

.galerie-pictures a:hover {
    border-color: var(--color-slate-300);
    box-shadow: 4px 4px 1px var(--color-gray-100);
}

.video-player {
    border-radius: var(--radius-lg);
}

.video-wrapper,
.other-title {
    margin-bottom: 24px;
}

.video-player {
    width: 100%;
    height: 720px;
    background-color: var(--color-gray-100);
    margin: 0 auto;
}

.other-videos {
    background-color: var(--color-gray-50);
    border-radius: var(--radius-sm);
}

@media only screen and (min-width: 640px) {

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

    .news-wrapper,
    .blog-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .news-item {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

    .news-item:nth-child(n+2) {
        border-top: none;
    }

    .news-title {
        line-height: 1.4;
    }

    .item-leadparagraph {
        font-size: 1rem;
        line-height: 1.3;
    }

    .news-leadparagraph {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 1.4;
    }
}

@media only screen and (min-width: 768px) and (pointer: fine)  {

    .with-submenu:hover .menu-item,
    .with-submenu:focus .menu-item,
    .with-submenu:active .menu-item {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        background-color: var(--color-cyan-600);
        color: #ffffff;
    }
}

@media only screen and (min-width: 768px) {

    .navbar {
        gap: 4px;
        padding: 16px 0;
    }
    
    .header .container {
        padding: 16px 24px;
    }

    .menu-item {
        background-color: transparent;
    }

    .hero .container {
        display: grid;
        align-items: center;
        grid-template-columns: 260px auto;
        gap: var(--gap);
    }

    .hero-picture {
        order: 2;
    }

    .hero-content {
        order: 1;
    }

    .container, .about {
        padding: 24px;
    }

    .about .container {
        max-width: 724px;
    }

    .no-padding {
        padding: 0;
        height: 65px;
    }

    .items-container {
        margin-top: 48px;
    }
    
    .biennales-wrapper {
        --items: 3;
        scroll-padding-inline: calc(var(--gap) * .5);
    }

    .biennale-item,
    .biennale-cta {
        scroll-snap-align: start;
    }

    .biennales-nav {
        display: flex;
    }

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

    .news-item {
        grid-template-columns: 160px auto;
    }

    .news-title {
        line-height: 1.4;
    }

    .item-leadparagraph {
        font-size: 1rem;
        line-height: 1.3;
    }

    .news-leadparagraph {
        -webkit-line-clamp: 3;
        line-clamp: 3;
        line-height: 1.4;
    }

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

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

    .footer-nav {
        flex-direction: row;
        gap: 16px;
    }

    .page-content {
        display: grid;
        grid-template-columns: 1fr minmax(auto, 320px);
        gap: 24px;
        justify-content: space-between;
    }

    .breadcrumb {
        margin-bottom: 36px;
    }

    .page-title {
        font-size: 1.8rem;
        margin-bottom: 36px;
    }
    
    .page-nav {
        margin-top: 0;
    }

    .page-content {
        overflow: hidden;
    }

    .related-content {
        position: sticky;
        margin: 0;
        top: 20px;
    }
    
}

@media only screen and (min-width: 1024px) and (pointer: fine) {

    .biennales-wrapper {
        overflow: hidden;
    }

}

@media only screen and (min-width: 1024px) {

    .with-submenu:hover .submenu,
    .with-submenu:focus .submenu,
    .with-submenu:active .submenu {
        display: block;
    }

    .mobile-only {
        display: none;
        visibility: hidden;
    }

    .desktop-only {
        display: inline;
        visibility: visible;
    }

    .header .container {
        padding: 0 36px;
    }

    .hero .container {
        grid-template-columns: 360px auto;
        gap: 64px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }    
    
    .about .container {
        max-width: 976px;
    }

    .no-padding {
        padding: 0;
        height: 69px;
    }

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

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

    .news-item {
        display: flex;
        flex-direction: column;
        padding-top: 0;
    }

    .news-item:nth-child(n+2) {
        border-top: none;
    }

    .item-title:hover {
        text-decoration: underline;
    }

    .books-wrapper {
        grid-template-columns: repeat(5, 1fr);
    }

    .legals {
        display: grid;
        grid-template-columns: 1fr auto;
        justify-content: space-between;
        gap: var(--gap);
    }

    .copyrights {
        order: 0;
    }

    .footer-nav {
        margin: 0;
        order: 1;
    }

    .page-picture {
        margin-bottom: 36px;
    }

    .page-content {
        gap: 48px;
    }

    .page-content p,
    .content-container p {
        line-height: 1.8;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 48px;
    }

}

@media only screen and (min-width: 1024px) and (max-width: 1280px) {

    .menu-item,
    .submenu a {
        font-size: 0.85rem;
        padding: 8px;
    }

    .with-submenu .menu-item span {
        margin-left: 6px;
    }

    .brand-name {
        font-size: 1rem;
        margin-left: 6px;
    }
  
}

@media only screen and (min-width: 1280px) {
    
    .header .container {
        padding: 0 48px;
    }

    .hero .container {
        padding: 48px;
        grid-template-columns: 540px auto;
        gap: var(--gap);
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }

    .container {
        padding: 48px;
    }

    .about .container {
        padding: 48px;
        max-width: 1184px;
    }

    .no-padding {
        padding: 0;
        height: 72px;
    }
  
    .biennales-wrapper {
        --items: 4;
    }

    .biennale-item,
    .biennale-cta {
        min-width: calc((100% - (var(--items) - 1) * var(--gap)) / var(--items));
        scroll-snap-align: start;
        max-width: 320px;
    }

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

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

}

@media only screen and (min-width: 1280px) and (max-width: 1540px) {

    .hero-title {
        font-size: 2.6rem;
        line-height: 1.2;
    }
  
}

@media only screen and (min-width: 1540px) {

    .about .container {
        max-width: 1440px;
    }
    
    .news-wrapper,
    .blog-list,
    .galerie-list {
        grid-template-columns: repeat(5, 1fr);
    }
  
}

