/* Desktop first 1920px */

h1 {
    font-size: 52px;
    font-weight: 700;
}

p {
    font-size: 18px;
}

#sections {
    display: flex;
    flex-direction: column;
    gap: 60px !important;
}

#breadcrumb {
    margin-top: 60px;
}

#breadcrumb p {
    text-align: center;
}

#breadcrumb a {
    color: #545459;
    font-size: 18px;
    font-weight: 700;
}

#blog-post-nav-row-mobile {
    display: none;
}

.blog-post-nav-col {
    margin: auto 0;
}

.blog-post-nav-button {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 14px;
    color: #313132;
} 


#blog-post-date p {
    color: #909090;
    font-size: 18px;
    text-align: center;
}

#blog-post-divider {
    width: 100%;
    height: 2px;
    background-color: #9563FF;
}

.blog-post-image{
    border-radius: 8px;
    width: 100%;
}

/* Adaptation for mobile screens */
@media (max-width: 768px) {
    
    #breadcrumb {
        margin-top: 120px;
    }

    h1 {
        font-size: 24px;
    }

    .blog-post-nav-col {
        display: none;
    }

    #blog-post-nav-row-mobile {
        display: flex;
    }
    
}

/* Adaptations for the large screens  */
@media (max-width: 992px) {


}