/*--Blog List----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.blog-list{
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    display: flex;

    height: fit-content;
    position: relative;

    transform: translate(-50%);
    margin-bottom: 10rem;
    margin-left: 50%;
    margin-top: 1rem;

    max-width: calc(100vw - 3rem);
    width: 77rem;
}
.blog{
    width: calc(33.33% - 0.66rem);
    margin-bottom: 1rem;
    overflow: hidden;
}
.blog-image{
    border-bottom: 1px solid var(--border);
    background-color: var(--off-white-1);
    transform: translate(-1rem, -1rem);
    width: calc(100% + 2rem);
    height: 15rem;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.blog-date{
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.5;
}
.blog-title{
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.blog-text{
    margin-bottom: 1rem;
}
.first-blog{
    margin-bottom: 1rem;
    width: 100%;
    overflow: hidden;
}

/*--Blog Page----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.blog-page{
    transform: translate(-50%);
    max-width: calc(100vw - 4rem);
    width: 40rem;

    height:   fit-content;
    position: relative;
    overflow: hidden;

    padding-bottom: 3rem;
    margin-bottom: 3rem;
    margin-left: 50%;
    margin-top: 1rem;
}
.blog-page-title{
    margin-bottom: 3rem;
    margin-top: 1rem;
    width: 100%;

    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
.blog-page-image{
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    background-color: var(--off-white-1);

    transform: translate(-1rem, -1rem);
    margin-bottom: 3rem;
    height: 30rem;
    width: calc(100% + 2rem);
}

/*--Mobile Dispaly-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media only screen and (max-width:1000px){
    .blog{
        width: calc(50% - 0.5rem);
    }
}
@media only screen and (max-width:600px){
    .blog-list{
        justify-content: center;
    }
    .blog{
        width: 100%;
    }
}