@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@200;300;400;500;600&display=swap');

* {
    box-sizing: border-box;
}
:root {
    --primary: #AD0C0C;
    --gap: 1.6vw;
    --gapm: 5.5vw;
    --edge: 0.57vw;
    --text: 1vw;
    --textmini: 2.4vw;
    --textminim:4.9vw;
    --textgrid: 1.25vw;
    --textgridmini: 4.5vw;
    --texttitel: 8vw;

}
body {
    font-family: Geologica, sans-serif;
    color: var(--text);
    background: #fff;
    margin: 0;
    line-height: 1.5;
}


.container {
    width: 90%;
    margin-inline: auto;
    padding: 0 0 2vh 0;
}
.Design_Week{
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(4, 1fr);

}
.Design_Week_Project{
    display: grid;
    gap: var(--gap);
    grid-template-columns: repeat(4, 1fr);
}
.Design_Week_Project_Grid{
    width: 100%;
    grid-column: 4 / 1;
}

.Design_Week_Project_Grid{
    font-size: var(--text);
    line-height: 105%;
}

.Design_Week_Project_Grid_Title{
    font-weight: 200;
    font-family: 'Geologica', serif;
    font-size: 2.6vw;
    line-height: 105%;
    margin-top: 3.6vw;
    margin-bottom: 3.2vw;
}
.Design_Week p{
    font-size: var(--text);
    line-height: 105%;
    margin: 0;
    font-weight:300;

}
.Design_Week_Center{
    display: flex;
    flex-direction: column;
    gap: 14vw;
    height: 100%;
    justify-content: space-between;
}
.Design_Week_Img {
    height: auto;
    width: 100%;
    grid-column: 4 / 1;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 3.2vw;
    width: 100%;
    padding: 0 24px;
    font-size: 1vw;
    font-weight: 300;
    text-decoration: none;
    cursor: pointer;
    transition: .2s
    ease;
    white-space: nowrap;
    font-family: inherit;
}
.Archive_Of_Events_Grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    overflow: hidden;
    gap: var(--gap);
}
.Archive_Of_Events_Grid_Item p{
    font-size: var(--textgrid);
    line-height: 135%;
}
.Archive_Of_Events_Grid_Item img{
    width: 100% ;
    height: 32vw;
    object-fit: cover;
    cursor: pointer;
}
.actions{
    display: flex;
    justify-content: flex-end;
    margin-top: 3.1vw;
    margin-bottom: 5.2vw;
}
.btn_Archive{
    appearance: none;
    border: 1px solid black;
    background: none;
    color: black;
    font-size: 1vw;
    font-weight: 300;
    font-family: 'Geologica', serif;
    width: calc((100% - (var(--gap) * 3)) / 4);
    height: 3.1vw;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, transform 0.05s ease;

}
.btn_Archive:hover{
    background: var(--brand);
    color: white;
    border-color: var(--brand);
}
.Design_Week_Project_Grid_Text_Dop{
    display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        width: calc(100% - 40px);
        margin-inline: auto;
    }
    .btn_Archive {
        width: calc(50% - (var(--gap) / 2));
        appearance: none;
        border: 1px #000000 solid;
        background: #fff;
        font-weight: 300;
        font-family: Geologica, Arial, sans-serif;
        cursor: pointer;
        transition: all .18s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-main);
        text-transform: uppercase;
        grid-column: 2/2;
        height: 4vw;
        font-size: 1.3vw;
    }
    .Design_Week{
        grid-template-columns: 1fr;

    }
    .Design_Week_Img{
        height: auto;
    }
    .Design_Week p{
        font-size: var(--textmini);
    }
    .Design_Week_Center{
        gap: 4vw;
        margin-top: 2.5vw;
    }
    .Design_Week_Button{
        display: flex;
        justify-content: end;
    }
    .Design_Week_Button a{
        width: calc(50% - (var(--gap) / 2));
        height: 6vw;
        font-size: 2.2vw;
    }
    .Design_Week_Project{
        grid-template-columns: 0;
    }
    .Design_Week_Project_Grid_Title{
        font-size: var(--textgridmini);
    }
    .Design_Week_Project_Grid{
        font-size: var(--textmini);
    }
    .Archive_Of_Events_Grid_Item p{
        font-size: var(--textmini);
        line-height: 105%;
        margin: 2.5vw 0;
    }
    .Design_Week_Project_Grid_Text_Dop{
        display: none;
    }
}
@media (max-width: 767px){
    .container {
        padding: 0;
        padding-bottom: 8vw;
        width: 90%;
    }
    .Design_Week{
        display: flex;
        flex-direction: column;

    }
    .Design_Week p{
        font-size: var(--textminim);

    }
    .Design_Week_Center{
        gap: var(--gapm);
        margin-top: 5.4vw;

    }
    .btn{
        width: 100%;
        min-width: 0;
        height: 11vw;
        font-size: 3.9vw;
    }
    .Design_Week_Img{
        width: 100%;
        height: auto;
        grid-column: 4 / 1;
    }
    .Design_Week_Project{
        grid-template-columns: 0;

    }
    .Archive_Of_Events_Grid{
        grid-template-columns: repeat(2, 1fr);
        gap: var(--gapm);
    }
    .Design_Week_Project_Grid{
        font-size: var(--textgridmini);
        font-weight: 300;

    }
    .Archive_Of_Events_Grid_Item p {
        font-size: var(--textminim);
        margin-top:2.5vw;
        line-height: 105%;
        margin-bottom: -0.3vw;
    }
    .Design_Week_Project_Grid_Text{
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 13;
        overflow: hidden;

    }
    .Archive_Of_Events_Grid_Item img
    {
        height: 62vw;
    }
    .btn_Archive{
        width: 100%;
        height: 40px;
        font-size: 3.5vw;
    }
    .btn {
        font-size: 4.3vw;
    }
    .actions{
        margin-top: 5.5vw;
    }
    .Design_Week_Project_Grid_Title{
        font-size: var(--texttitel);
        margin-top: 16vw;
        margin-bottom: 5.2vw;
    }
    .Design_Week_Project_Grid_Text_Dop{
     color: var(--primary);
        display: flex;
        margin-top: -4vw;

    }
}