h1{
    margin-bottom: 12px;
}
#breadcrumbs{
    margin-bottom: 80px;
}
#archive-header{
    background: #F2F2F2BD;
    padding: 90px 0 50px;
    text-align: center;
}
#archive-header article{
    display: grid;
    grid-template-columns: minmax(0, 62%) minmax(0,1fr);
    grid-template-rows: auto;
    column-gap: 30px;
    align-items: center;
    text-align: left;
    width: 100%;
    height: 100%;
}
#archive-header .date{
    margin-top: 12px;
}
#archive-header .post--image{
    height: 100%;
    position: relative;
}
#archive-header .post--image img{
    position: absolute;
    left:0;
    top: 0;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    margin-bottom: 0;
}
#archive-header .post--card__title{
    margin-bottom: 32px;
}
#archive-header .post--card__link{
    color: white;
    background: #241F1F;
}
#archive-header .splide__arrows{
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: end;
    align-items: center;
    column-gap: 24px;
    margin-top: 30px;
}
#archive-header .splide__arrow{
    position: relative;
    inset: unset;
    transform: none;
    opacity: 1;
    background: white;
    width: 40px;
    height: 40px;
}
#archive-header .splide__arrow svg{
    fill: none;
    stroke: #241F1F;
    stroke-width: 2px;
}

/* Content area */
#archive-content{
    background: white;
    padding: 80px 0;
}
.archive-content-title{
    font-weight: 700;
    font-size: 26px;
    line-height: 1.23;
    text-transform: uppercase;
    color: #241F1F;
    margin-bottom: 50px;
}
.posts-wrapper{
    display: flex;
    flex-flow: row wrap;
    justify-content: start;
    align-items: stretch;
    column-gap: 30px;
    row-gap: 80px;
    margin-bottom: 80px;
}
article{
    width: calc((100% - 60px) / 3);
    display: flex;
    flex-flow: column nowrap;
}
.post--card__content{
    display: flex;
    height: 100%;
    flex-flow: column nowrap;
    justify-content: start;
    align-items: start;
}
.post--image img{
    aspect-ratio: 1.24;
    object-fit: cover;
    margin-bottom: 20px;
}
.date{
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.57;
    text-transform: capitalize;
    color: #241F1F80;
    margin-bottom: 10px;
}
.post--card__title{
    font-weight: 700;
    font-size: 26px;
    line-height: 1.23;
    margin: 0 0 20px;
}
.post--card__excerpt{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 60px;
}
.post--card__link{
    width: 100%;
    max-width: 270px;
    margin-top: auto;
}
.nav-links{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}
.page-numbers{
    width: 43px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F2F2F2;
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    border-radius: 50%;
}
.page-numbers.current, .page-numbers:hover{
    background: #AD8D7C;
    color: white;
}
.page-numbers:hover svg{
    stroke: white;
}
@media(max-width:1024px){
    #breadcrumbs {
        margin-bottom: 40px;
    }
    #archive-header article{
        display: flex;
        flex-flow: column nowrap;
    }
    #archive-header .post--image{
        height: auto;
    }
    #archive-header .post--image img{
        position: relative;
        inset: unset;
        height: auto;
        aspect-ratio: 1.92;
        margin-bottom: 20px;
    }
    #archive-header .post--card__excerpt{
        margin-bottom: 20px;
    }
    .posts-wrapper{
        row-gap: 60px;
        margin-bottom: 60px;
    }
    article{
        width: calc((100% - 30px) / 2);
    }
    .post--card__excerpt{
        margin-bottom: 40px;
    }
}
@media(max-width:767px){
    #archive-header, #archive-content{
        padding: 40px 0 60px;
    }
    #breadcrumbs {
        margin-bottom: 40px;
        margin-right: 20px;
    }
    #archive-header .container{
        padding-right: 0;
    }
    h1, #archive-header .splide__arrows{
        padding-right: 20px;
    }
    #archive-header .post--card__excerpt,
    #archive-header .post--card__title{
        margin-bottom: 20px;
    }
    .posts-wrapper{
        row-gap: 40px;
        margin-bottom: 40px;
    }
    article{
        width: 100%;
    }
    .post--card__title{
        font-size: 22px;
    }
    .post--card__excerpt{
        margin-bottom: 40px;
    }
    .archive-content-title{
        margin-bottom: 30px;
    }
}