:root {
    --nav-height: 4em;
}

main {
    line-height: 1.4;
}

.mt-3 {
    margin-top: 3em;
}

.col-span-2 {
    grid-column: span 2;
}

.grid-align-center {
    align-items: center;
}


.grid-gap-1 {
    grid-gap: 1em;
}

.grid-gap-3 {
    grid-gap: 0;
}

.bold {
    font-weight: bold;
}

.pr-3 {
    padding-right: 3em;
}

.pr-1 {
    padding: 1em;
}

.align-center {
    align-self: center;
}

.justify-center {
    justify-self: center;
}

.justify-end {
    justify-self: end;
}

.align-end {
    align-self: end;
}

.bg-section {
    color: #2c2c2c;
    background: #FFE3B4;
}

.founding-idea-box {
    border-left: #F8A51B 2px solid;
    padding-left: 2em;

    line-height: 1.4;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0;
}

h3 {
    margin: 0;
}

.text-2xl {
    font-size: xx-large;
}

.text-3xl {
    font-size: xxx-large;
}

.text-col-orange {
    color: #F8A51B;
}

.text-col-white {
    color: white;
}

.container-col-1 {
    grid-column: 1 / span 5;
}


.container-col-2 {
    padding: 1em;
    display: flex;
    flex-direction: column;
}

.container-col-2 li {
    margin-top: 1em;

}

.container-col-2 ul {
    padding-left: 1em;
}

.container-col-2 img {
    width: 50%;
    align-self: center;
    height: auto;


}

.spacer-3 {
    border: none;
    height: 3em;
    margin: 0;
}

.spacer-5 {
    border: none;
    height: 5em;
    margin: 0;
}


.no-scroll {
    overflow: hidden;
}


.container-col-3 {
    grid-column: 1 / span 5;
    display: grid;
    grid-template-columns: 1fr;
}

.container-col-3-content {
    padding: 3em 1em;


    grid-column: 2 / span 3;
    display: grid;
    grid-template-columns: 1fr;

}

.container-col-3-content img {
    object-fit: cover;

    width: 100%;
    height: auto;
}


.google-map {
    aspect-ratio: 1;
    width: 100%;
}

.container {
    padding-left: 1rem;
    padding-right: 1rem;
}


/* Media Queries for Normal screens */
@media (min-width: 821px) {
    .container {
        grid-column: 2 / span 3;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .l_w-50 {
        width: 50%;
    }


    .container-col-3 {
        grid-column: 1 / span 5;
        display: grid;
        grid-template-columns: 10% repeat(3, 1fr) 10%;
    }

    .container-col-2 {
        padding: 0;
        grid-column: 2 / span 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .container-col-3-content {
        padding-top: 3em;
        padding-bottom: 3em;
        grid-column: 2 / span 3;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
    }

    .container {
        grid-column: 1 / span 5;


        padding-left: 2em;
        padding-right: 2em;

    }

    .grid-gap-3 {
        grid-gap: 1em;
    }


    .container-col-2 {
        grid-column: 1 / span 3;
    }
}


.btn-3d {
    border: none;

    background: none;
    display: flex;
    justify-content: center;

    padding: 0;
    margin: 0.5em;
    align-self: center;

    cursor: pointer;
}

hr {
    width: 100%;
    border: 1px rgba(23, 23, 23, 0.1) solid;
    margin-top: 3px;
    margin-bottom: 0;
}

.btn-3d :hover {
    border: none;
    font-weight: 550;


}


.icon-3d {
    font-size: x-large;
}

/* Media Queries for Large screens */
@media (min-width: 1350px) {
    .container {
        grid-column: 1 / span 5;
        display: grid;
        grid-template-columns: 10% repeat(3, 1fr) 10%;

        padding-left: 0;
        padding-right: 0;
    }

    .container-col-2 li {
        font-size: large;
        line-height: 1.4;
        margin-right: 1em;
    }

    .grid-gap-3 {
        grid-gap: 3em;
    }

    .container-col-2 {
        grid-column: 2 / span 3;
    }
}


.tooltip {
    position: relative;

}

/* Tooltip text */
.tooltip .tooltiptext {
    position: absolute;
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    width: 10em;

    margin-top: 3px;

    z-index: 1;

    visibility: hidden;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext {
    top: 3px;
    right: 95%;
}

@media (max-width: 450px) {
    .products-list {
        grid-template-columns: 1fr;
    }
}

h1 {
    margin: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;

    margin: 0 0 0 0;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
}

nav {
    height: var(--nav-height);
    width: 100%;
    z-index: 100;
    position: fixed;
    background: #171717;
    display: grid;
    grid-template-columns: 1fr auto;
}

nav a {
    grid-column-start: 1;
    justify-self: start; /* Center logo for mobile */
    margin: 0.5em;
    padding: 0.2em;
    display: flex;
}

nav a img {
    align-self: center;
    justify-self: center;
    height: 2em;
}


#burger {
    padding: 1em;

    background: none;
    border: none;

    color: white;

    display: flex;
    justify-content: end;
    align-items: center;
}

#burger:hover {
    background: #1a1a1a;
}


nav ul a {
    color: #dedfe3;
    text-decoration: none;
    font-weight: bold;
    font-size: small;
}

nav ul a:hover {
    color: #F8A51B;
    text-decoration: none;
    transition: 0.3s;
}

nav ul {
    list-style-type: none;
    height: auto;

    display: none;
    flex-direction: column;

    grid-column: 1;
    padding-left: 0.5em;
}


main {
    margin: var(--nav-height) 0 0 0;
    grid-row-start: 2;
    grid-column-start: 1; /* Adjusted for single column layout */
    min-height: calc(100vh - var(--nav-height));

}

.article-nav {

    grid-column: span 3;
    width: 100%;
    display: flex;
    justify-content: end;
}

.product-list-header {
    grid-column: 1 / span 3;

    padding: 1em;
}


.article-nav a {
    line-height: 1;
    font-size: large;
    font-weight: normal;
    width: 7em;
    height: 2.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.article-nav .highlighted {
    border-bottom: solid #F8A51B;

    font-weight: bolder;
}


article {
    grid-column: 1 / span 3;
}


#hero-image {
    height: 30vh;
    width: 100%;
    object-fit: cover;
}


header {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


header h1 {
    margin: 0 0 0.2em 0;

}


#model {
    width: 100%;
    height: 100vw;
}


header p {
    width: 100%;
    font-size: large;
    margin: 0;
}

.product-h1 {
    grid-column: 1 / span 3;
    text-align: center;
    font-size: xx-large;
}


.product-header {
    background: #2c2c2c;
    padding: 1em;

    align-items: center;

    color: white;
}


.product-category-header {
    display: grid;
    border-top: solid 1px #F8A51B;
    padding: 0 1em 1em 1em;
    margin-top: 1em;

}

.product-category-header h2 {
    margin: 0.5em 0 0 0;

}


.product-category-header p {
    margin: 0.5em 0 0 0;
    font-size: medium;
    width: 80%;
}


.products-list {
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr;
}


.product {
    text-decoration: none;
    color: black;
    position: relative;

    margin-bottom: 1em;


}

.product:active h3 {
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.product h3 {
    margin: 0.5em 0 0 0;
    font-size: large;
}


.product .category {
    margin: 0.5em 0 0 0;
}

.description {
    width: 100%;

}

.description p {
    padding: 1em;
    font-size: large;
    line-height: 1.4;
    margin: 0.5em 0 0 0;

}

.block-article-container {
    padding: 0em;
}


.products-list .product img {
    aspect-ratio: 1;
    width: 100%;
    background: #dedfe3;
}


footer {
    grid-row-start: 3;
    grid-column-start: 1;

    grid-column: span 1; /* Full width */
    background: #212121;

    color: #dedfe3;

    padding: 0.5em;
}

footer section {
    margin-bottom: 2em;
}

footer section div h5 {
    font-size: medium;
    margin-bottom: 0.5em;
}

footer section div p {

    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

footer section div a {
    color: inherit;

    font-size: medium;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.hero-image-container {
    position: relative;
    grid-column: 1 / span 3;
    height: 40vh;
}

.hero-image-container img {
    z-index: -5;
    object-fit: cover;
    width: 100%;
    height: 100%;
}


.hero-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-image-text-box {
    text-align: center;
    width: 75%;
}

.hero-image-text-box h1 {
    color: #F8A51B;
}

.hero-image-text-box p {
    font-size: x-large;
    font-weight: bolder;
    color: #dedfe3;
}


.col-3-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1em;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.4;


}

.bg-overlay {
    background: rgba(0, 0, 0, 0.3);
}


.image-overlay-container {
    position: relative;
    display: inline-block;

    line-height: 0;

}

.overlay-title {
    color: white;
    font-size: large;
    font-weight: bold;
    text-align: center;
}

.gallery-image {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1;
}

.hero-home-textbox {
    text-align: center;
    padding-left: 3em;
    padding-right: 3em;
}


.hero-home-textbox .intro {
    font-weight: bold;
    color: #F8A51B;
    margin: 0 0 1em 0;
}


.hero-home-textbox .component {
    margin: 0 0 0.5em 0;
    font-size: xx-large;
    font-weight: bolder;
    color: white;
}

.hero-home-textbox .text {
    margin: 0;
    font-size: medium;
    font-weight: bolder;
    color: white;
}


.link {
    color: #212121;
    font-size: large;
}


.banner-image-text-box {
    text-align: center;
    display: block;

    gap: 1em;
}

.banner-image-text-box h2 {
    color: white;
    font-size: xx-large;

    margin: 1em;
}

.banner-image-text-box a {
    margin: 1em;

    font-size: larger;
    color: white;
    background: #F8A51B;

    border-radius: 1.5em;

    padding: 1em;
}

.job-list {
    display: grid;
    gap: 1em;

    padding-bottom: 1em;
}

.date-text {
    color: #1a1a1a;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}


.job-posting-teaser {
    background: #f0e0ca;
    padding: 1em;
}

.job-posting-header {
    font-size: xx-large;
    font-weight: bold;
}

.job-posting-description {
    padding-bottom: 2em;
    font-size: large;
    font-weight: normal;
    margin-bottom: 1em;
    line-height: 1.5;
}

.side-left-3d-overlay {
    display: none;
}

.side-right-3d-overlay {
    display: none;
}

.image-overlay-content {
    padding: 2em;
}

.col-2-text {
    padding-left: 2em;
    padding-right: 2em;
}



/* Media Queries for Normal screens */
@media (min-width: 821px) {
    :root {
        --nav-height: 4em;
    }

    body {
        grid-column: 1 / span 3;

        grid-template-columns: auto 90% auto; /* 3-column layout for larger screens */
        grid-template-rows: var(--nav-height) auto 20em;
    }

    nav {
        display: grid;
        grid-column: 1 / span 3;
        grid-template-columns: 10% 1fr 2fr 10%;


        align-items: center;

    }

    nav ul {

        justify-content: flex-end; /* Align to end for larger screens */
        align-items: center;

        grid-column: 3;

        display: flex;
        flex-direction: row;
        gap: 2em;
    }

    #burger {
        display: none;
    }

    nav a {
        grid-column-start: 2;
        height: 100%;
        width: 100%;
        display: flex;
    }


    nav a img {
        align-self: center;
        justify-self: center;
    }

    .product-article {
        padding-left: 0;
        padding-right: 0;
    }


    main {
        grid-column: 1 / span 3;
        min-height: calc(100vh - var(--nav-height)); /* Adjust height based on navigation */
        margin: 0 0 0 0;

        display: grid;
        grid-template-columns:  repeat(3, 1fr);
    }


    .hero-image-container {
        position: relative;
        grid-column: 1 / span 5;
        height: 50vh;

    }

    .hero-image-container img {
        z-index: -5;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    #hero-image {
        grid-column: 1 / span 5;
        object-fit: cover;
        height: 100%;
    }

    header {
        grid-column: 1 / span 5;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 1em;
        margin-top: 0;
    }

    .product-header {
        padding-left: 3em;
        padding-right: 3em;
    }

    .hero-3d-container-fullscreen-height {
        height: 100vh;
    }

    .hero-3d-container-normal-height {
        height: 50vh;
    }

    .hero-3d-container {
        grid-column: span 5;
        position: relative;
    }

    #model {
        margin-top: 0;
        width: 100%;
        height: 100%;
        position: relative;
    }

    .side-left-3d-overlay {
        display: block;

        position: absolute;
        top: 0;
        left: 0;

        padding: 1em;

    }

    .side-right-3d-overlay {
        position: absolute;
        top: 0;
        right: 0;
        padding: 2em;

        display: flex;
    }

    .btn-layout {
        background: rgba(23, 23, 23, 0.6);
        border-radius: 0.5em;
        padding: 0.5em;
        display: flex;
        flex-direction: column;
    }


    header h1 {
        grid-column: 1 /span 2;
    }


    .product-h1 {
        grid-column: 1 / span 2;
        font-size: xxx-large;

        text-align: start;
    }

    header p {
        font-size: x-large;
        grid-column: 3 / span 3;
        width: 100%;
    }

    .block-article-container {
        padding: 0;
    }

    .article-nav {
        grid-column: 3 / span 2;
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .article-nav a {
        line-height: 1;
        font-size: large;
        font-weight: normal;
        width: 7em;
        height: 2.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .article-full {
        grid-column: 1 / span 5;
        align-content: start;
        display: grid;
        grid-template-columns: 10% repeat(3, 1fr) 10%;
    }


    .article-nav .highlighted {
        border-bottom: solid #F8A51B;

        font-weight: bolder;
    }


    article {
        grid-column: 1 / span 3;
        padding-left: 0;
        padding-right: 0;
    }


    .product-list-header {
        grid-column: 1 / span 3;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2em;
    }


    .product-category-header {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        padding-top: 1em;
        border-top: solid 1px #F8A51B;
    }

    .product-category-header p {
        grid-column: 3 / span 2;
        align-self: center;
        width: 100%;
        font-size: large;
    }


    .products-list {
        padding: 1em;
        margin-top: 2em;
        display: grid;
        grid-template-columns: repeat(4, 25%);;
        grid-gap: 1em;
    }


    .product {
        text-decoration: none;
        color: black;
        position: relative;

        margin-bottom: 1em;
    }

    .product:active h3 {
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }

    .product h3 {
        margin: 0.5em 0 0 0;
        font-size: large;
    }


    .product .category {
        margin: 0.5em 0 0 0;
    }

    .description {
        width: 50%;
        font-size: medium;
        line-height: 1.4;
    }

    .description p {
        margin: 0.5em 0 1em 0;
        padding: 0;
    }

    .product-list-header {
        margin-top: 1em;
        padding: 0;
    }

    .teaser-description {
        width: 100%;
        font-size: large;
        box-sizing: border-box;
        padding-right: 2em;
        word-wrap: break-word;
        margin-right: 2em;
    }

    .products-list .product img {
        aspect-ratio: 1;
        width: 100%;
        background: #dedfe3;
    }


    footer {
        grid-column: span 3; /* Span across all columns */
        height: auto;

        display: grid;
        grid-template-columns: auto 80% auto;

        color: #dedfe3;

        padding-top: 2em;
        padding-bottom: 2em;


    }

    footer section {
        grid-column-start: 2;
        margin: 0;
        padding: 0;
    }

    footer section div h5 {
        font-size: medium;
        margin-bottom: 0.5em;
    }

    footer section div p {
        font-size: medium;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

    footer section div a {
        color: inherit;
        font-size: medium;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

    .hero-image-text-box {
        text-align: center;
        width: 50%;
    }

    .hero-image-text-box h1 {
        color: #F8A51B;
    }

    .hero-image-text-box p {
        font-size: x-large;
        font-weight: bolder;
        color: #dedfe3;
    }

    .col-3-gallery {
        grid-column: span 3;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 1em;
    }

    .image-gallery {
        justify-self: center;
    }

    .founding-idea-box {
        margin-left: 2em;
    }

    .p-section {
        padding-top: 3em;
        padding-bottom: 5em;
    }

    .overlay-title {
        font-size: x-large;
    }

    .hero-home-textbox {
        width: 70%;
    }


    .hero-home-textbox .intro {
        font-size: x-large;
        margin: 0 0 5px 0;
    }


    .hero-home-textbox .component {
        margin: 0 0 10px 0;
        font-size: 5em;
    }

    .hero-home-textbox .text {
        font-size: larger;
    }

    .end-content-container {
        grid-column: 1 / span 5;
    }

    .job-list {
        grid-column: 1 / span 3;
        grid-template-columns: repeat(3, 1fr);
    }

    .job-posting-teaser-container {
        padding: 1em;
    }

    .col-2-text {
        padding: 0;
        grid-column: 1 / span 2
    }
}

/* Media Queries for larger screens */
@media (min-width: 1350px) {
    :root {
        --nav-height: 4em;
    }

    body {
        grid-template-columns: auto 1350px auto; /* 3-column layout for larger screens */
        grid-template-rows: var(--nav-height) auto auto;
    }


    nav {
        grid-column: 1 / span 3;
        grid-template-columns: auto repeat(3, 450px) auto;
        display: grid;
    }

    nav a {
        width: 100%;
        height: 100%;
    }


    nav ul {
        grid-column: span 2;

        display: flex;

        justify-content: flex-end; /* Align to end for larger screens */
        align-items: center;
        gap: 2em;
    }


    main {
        grid-column: 1 / span 3;
        min-height: calc(100vh - var(--nav-height)); /* Adjust height based on navigation */

        display: grid;
        grid-template-columns: auto repeat(3, 450px) auto;

    }

    article {
        grid-column: 1 / span 5;
    }

    .founding-idea-box {
        margin-left: 0;
    }

    #model {
        grid-column: 1 / span2;
    }

    #model canvas {
        width: 100%;
        border-bottom-left-radius: 0.2em;
        border-bottom-right-radius: 0.2em;
    }

    .product-header {
        padding: 2em 0 2em 0;
    }


    .product-list-page p {
        grid-column: 3 / span 2;

    }

    header p {
        font-size: x-large;
        grid-column: 3 / span 3;
    }


    .product-h1 {
        grid-column: 2;
        align-self: end;
        font-size: xxx-large;

    }


    header h1 {

        grid-column: 1 / span 2;
        font-size: xx-large;
        margin: 0;
    }

    .hero-image-container {
        position: relative;
        grid-column: 1 / span 5;
        height: 40vh;
    }

    .hero-image-container img {
        z-index: -5;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .hero-image-text-box {
        text-align: center;
        width: 50%;
    }

    .hero-image-text-box h1 {
        color: #F8A51B;
    }

    .hero-image-text-box p {
        font-size: xx-large;
        font-weight: bolder;
        color: #dedfe3;
    }


    .article-nav {
        grid-column: 4 / span 1;
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .article-nav a {
        line-height: 1;
        font-size: large;
        font-weight: normal;
        width: 7em;
        height: 2.5em;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .article-full {
        grid-column: 1 / span 5;

        display: grid;
        grid-template-columns: 10% repeat(3, 1fr) 10%;
    }

    .product-article {
        padding-left: 0;
        padding-right: 0;
    }


    .article-nav .highlighted {
        border-bottom: solid #F8A51B;

        font-weight: bolder;
    }

    .teaser-description {
        font-size: x-large;
        width: 100%;
        line-height: 1.4;
        margin-bottom: 2em;
    }

    .description {
        font-size: x-large;
        width: 60%;
        line-height: 1.4;
        margin-bottom: 2em;
    }


    .article-nav button:hover {
        text-decoration: underline;
    }

    .product-list-header {
        grid-column: 2 / span 3;
        display: grid;

    }


    .product-category-header {
        grid-column: 2 / span 3;
        padding: 0;

        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;

        border-top: solid 2px #F8A51B;
    }

    .product-category-header p {
        grid-column: 3 / span 2;
        align-self: center;

        font-size: large;
    }


    .products-list {
        padding: 0;
        margin-top: 2em;
        display: grid;
        grid-gap: 1em;
    }


    .product {
        text-decoration: none;
        color: black;
        position: relative;

        margin-bottom: 1em;
    }

    .product:active h3 {
        text-decoration: underline;
        text-decoration-thickness: 2px;
    }

    .product h3 {
        margin: 0.5em 0 0 0;
        font-size: large;
    }

    .product .description {
        padding: 0.5em;
        font-size: medium;
    }

    .product .category {
        margin: 0.5em 0 0 0;
    }

    .product .description p {
        margin: 0.5em 0 0 0;
    }


    .product img {
        object-fit: cover;
        aspect-ratio: 1;
        width: 100%;
        background: #dedfe3;
    }

    article p {
        font-size: large;
        line-height: 1.4;
    }

    footer {
        grid-column: span 3; /* Span across all columns */

        display: grid;
        grid-template-columns: 10% repeat(3, 1fr) 10%;
        color: #dedfe3;
    }

    footer section {
        grid-column-start: 2;
    }

    footer section div h5 {
        font-size: medium;
        margin-top: 0;
        margin-bottom: 0.5em;
    }

    footer section div p {
        font-size: medium;
        margin-top: 0.5em;
        margin-bottom: 0.5em;
    }

    footer section div a {
        color: inherit;

        font-size: medium;
        margin-bottom: 0.5em;
    }

    .container-col-1 {
        grid-column: 2 / span 3;
    }

    .hero-home-textbox {
        width: calc(100vw / 2);
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-home-textbox .intro {
        font-size: x-large;
        margin: 0 0 5px 0;
    }


    .hero-home-textbox .component {
        margin: 0 0 10px 0;
        font-size: 5em;
    }

    .hero-home-textbox .text {
        font-size: larger;
    }


    .col-3-gallery {
        grid-column: 2 / span 3;

        padding: 0;
    }


    .job-list {
        grid-column: 2 / span 3;
    }

    .col-2-text {
        display: grid;
        grid-template-columns: 70% 30%;
        grid-column: 2 / span 3

    }

    header {
        grid-template-columns: auto repeat(3, 450px) auto;
        padding: 0;
    }

}


@media (min-width: 2000px) {
    /*
    header {
        grid-template-columns: auto 675px auto;
    }
     */
    nav {
        grid-template-columns: auto repeat(3, 450px) auto;
    }

    main {
        grid-template-columns: auto repeat(3, 450px) auto;
    }

    footer {
        grid-template-columns: auto repeat(3, 450px) auto;
    }

    .container {
        grid-template-columns: auto repeat(3, 450px) auto;
    }
}

.article-rich-text {
    width: 100%;
    display: block;
    
}

.article-rich-text p {
    font-size: large;
    line-height: 1.6;

}

.block-img {
    margin-top: 1em;
    margin-bottom: 1em;

    object-fit: cover;

    width: 100%;
    height: 100%;
}

.article-rich-text li {
    font-size: large;

}

.article-rich-text li p {
    font-weight: normal;
    font-size: large;
}

.col-2-layout {
    display: block;
    padding: 1em;
}

.area-container {
    display: flex;
    flex-direction: column;
    gap: 1em;
}



article-rich-text {
    padding: 1rem;
}


/* Media Queries for Normal screens */
@media (min-width: 821px) {
    


    .area-container {
        display: flex;
        flex-direction: column;

    }

    .article-rich-text p {
        font-size: large;
    }

    .article-rich-text li {
        font-size: large;

    }

    .article-rich-text li p {
        font-weight: normal;
        font-size: large;
    }

    .col-2-layout {
        grid-column: 1 / span 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 2em;
        padding: 0;

    }

}


/* Media Queries for larger screens */
@media (min-width: 1350px) {

    .col-2-layout {
        grid-column: 2 / span 3;
    }
}

