

@media only screen and (max-width: 1180px) {

    .btn {
        padding: 1px var(--xxs) 1px var(--xxs);
    }

    header .cap .profile {
        gap: var(--2xs);
    }

    .centered {
        width: 100%;
        min-width: unset;
        max-width: unset;
        box-sizing: border-box;
        padding: 0 var(--s);
    }

}


@media only screen and (min-width: 666px) and (max-width: 1180px) {

    header .cap {
        gap: var(--xs);
    }

    header .cap .logo .mobifan {
        height: var(--logo-height-mobile);
    }

    .home {
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "last last" "tod pub1" "pub2 pub3" "tech tech" "about about" "faq faq";
        grid-template-rows: auto auto auto auto auto;
    }

    .internal {
        grid-template-columns: 1fr;
        height: calc(100% - var(--header-height));
    }

}

@media only screen and (max-width: 666px) {

    header .cap {
        grid-template-columns: 120px 1fr 1fr;
        gap: var(--2xs);
    }

    header .cap .logo .mobifan {
        height: var(--logo-height-mobile);
    }

    header .cap .logo .slogan {
        display: none;
    }

    .home {
        grid-template-columns: 1fr;
        grid-template-areas: "last" "tod" "pub1" "pub2" "pub3" "tech" "about" "faq";
    }

    .internal {
        grid-template-columns: 1fr;
        height: calc(100% - var(--header-height));
    }

}
