
.blog-description {
    color: var(--qp-color-blue-note);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.blog-title.text-h1 {
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 0;
}

/* */
.blog-highlighted-slidebar::-webkit-scrollbar, .blog-categories-slider::-webkit-scrollbar {
    display: none;
}
.blog-highlighted-slidebar, .blog-categories-slider {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* */

.blog-highlighted-slidebar {
    position: relative;
    width: 100vw;
    height: 470px;
    padding: 0 12px;
}

.blog-highlighted-slidebar-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: white;
    padding: 40px;
    overflow: hidden;
    background-repeat: no-repeat, repeat;
    background-size: cover;
}

.blog-highlighted-slidebar-item {
    position: relative;
    padding: 20px 24px 0 24px;
    height: 100%;
    width: 100%;
}

/* */
.blog-highlighted-item-label {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: var(--qp-color-blue-note);
    text-align: center;

    display: flex;
    width: fit-content;
    min-width: 50px;
    height: 40px;
    border-radius: 40px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--qp-color-light-blue);
    padding: 6px 16px;

    transition: all 0.2s linear;
}
/* */


.blog-highlighted-item-content-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;

    padding-bottom: 80px;
    z-index: 1;
}

.blog-highlighted-item-content-container-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 64px;
    color: white;
}

/* */
.blog-categories-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    height: 48px;
    width: 100vw;
    padding-left: 24px;
    padding-right: 24px;
    overflow: scroll;
}

.blog-categories-slider-item {
    display: flex;
    border-radius: 8px;
    width: fit-content;
    min-width: 50px;
    height: 100%;
    background-color: #E1E1E1;
    cursor: pointer;

    transition: background-color 0.2s ease-in-out;
}

.blog-categories-slider-item > p {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin: auto;
    color: #737373;

    transition: color 0.2s ease-in-out;
}

.blog-categories-slider-item.active {
    background-color: #1C2742;
}
.blog-categories-slider-item.active > p {
    color: white;
}

/* */
.blog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;

    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.related-blog-list {
    display: flex;
    gap: 24px;

    width: 100%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.blog-list-item {
    display: flex;
    width: 100%;
    min-height: 148px;
    padding: 0;
}

.blog-list-item-content-container {
    position: relative;
    width: 100%;
    padding: 32px 16px 16px 16px;
}

.blog-list-item-content-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-list-item-content-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    color: var(--qp-color-blue-note)
}

.blog-list-item-content-abstract {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--qp-color-blue-note)
}

/* */
.blog-details-image-container {
    position: relative;
    width: 100vw;
    height: 450px;
    padding: 0 24px;
}
.blog-details-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.blog-details-breadcrumb-container {
    position: fixed;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    min-height: 65px;
    margin: -24px -16px 0 -16px;
    background-color: var(--qp-color-light-grey);
    z-index: 20;

    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}

.blog-details-breadcrumb-list {
    display: flex;
    list-style-type: none;
    margin: auto 0;
    padding: 0 16px;
}

.blog-details-breadcrumb-list > li {
    display: flex;
    font-size: 20px;
    line-height: 24px;
    color: var(--qp-color-blue-note);
}

.blog-details-breadcrumb-list > li > a {
    font-size: 18px;
    line-height: 24px;
}

.blog-details-breadcrumb-list > li:not(:first-child):before {
    content: url('/images/app/accessory-right.svg');
    padding: 0 8px;
}

.blog-details-title.text-h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 56px !important;
    line-height: 64px !important;
    margin-bottom: 0;
}

.blog-details-content {
    font-style: normal;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 0;
}

.blog-details-incontent-banner-container {
    margin-top: 80px;
    margin-bottom: 80px;
}

.blog-details-related-items-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-details-related-items-strip-container {
    display: flex;
    gap: 24px
}

/* */

/* MEDIA QUERIES */
@media (max-width: 992px) {
    .related-blog-list li:last-child {
        display: none;
    }
}
@media (max-width: 650px) {
    .related-blog-list {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .blog-highlighted-item-content-container-title {
        font-size: 28px;
        font-weight: 700;
        line-height: 32px;
        color: white;
    }

    .blog-highlighted-slidebar {
        height: 330px
    }
    .blog-details-image-container {
        height: 250px;
    }
    .blog-details-title.text-h1 {
        font-style: normal;
        font-weight: 600;
        font-size: 24px !important;
        line-height: 32px !important;
        margin-bottom: 0 !important;
    }
    .blog-details-content {
        font-style: normal;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 0;
    }
    .blog-details-incontent-banner-container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) {
    .px-md-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width: 992px) {
    .blog-title.text-h1 {
        line-height: calc((48 / var(--screen-width)) * 100vw);
    }
}
