/* ------------------------------------------------ */
/* Hauptcontainer für das Layout */
/* ------------------------------------------------ */
.layout-featured-sidebar {
    max-width: 115rem; /* max-width: 1150px; */
    margin: 0 auto 2rem;
    padding: 1rem;
}
.layout-featured-sidebar-header {
    border-bottom: 0.4rem solid #e0e0e0;
    margin-bottom: 1rem;
}
.layout-featured-sidebar-header_title {
    display: flex;
    align-items: baseline;
}
.layout-featured-sidebar-header_title .icon p {
    font-size: 2.9rem;
    margin: 0;
}
.layout-featured-sidebar-header_title a, .layout-featured-sidebar-header_title p, .layout-featured-sidebar-bottom_title a, .layout-featured-sidebar-bottom_title p{
    color: #9a94dd;
    font-weight: bold;
}
.layout-featured-sidebar-header_title a, .layout-featured-sidebar-header_title p{
    font-size: 2.24rem;
    margin: 0 0 0 0.2rem;
}
/* ------------------------------------------------ */
/* GRID LAYOUT: Hauptartikel links, Subs rechts */
/* ------------------------------------------------ */
.layout-featured-sidebar_grid {
    display: flex;
    gap: 2rem;
}
.layout-featured-sidebar-main {
    flex: 2;
}
.layout-featured-sidebar-main_image_box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 0.6rem;
}
.layout-featured-sidebar-main_image_image-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.layout-featured-sidebar-main_title p {
    font-size: 2.24rem;
    font-weight: bold;
    color: #e0e0e0;
    margin-top: 1rem;
    margin-bottom: 0;
}
.layout-featured-sidebar-main_creation-date p {
    margin: 0;
}
/* ------------------------------------------------ */
/* SUB-ARTIKEL (rechts) */
/* ------------------------------------------------ */
.layout-featured-sidebar-subs-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 30%;
}
.layout-featured-sidebar-sub {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 0.1rem solid #e0e0e0;
}
.layout-featured-sidebar-sub:last-child {
    border-bottom: none;
}
.layout-featured-sidebar-sub a {
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
}
.layout-featured-sidebar-sub_image_box {
    width: 10rem;
    height: 6rem;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 1rem;
    border-radius: 0.4rem;
}
.layout-featured-sidebar-sub_image_box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.layout-featured-sidebar-sub_title {
    margin-top: 0;
}
.layout-featured-sidebar-sub_title p {
    font-size: 1.4rem; 
    font-weight: 500;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 0;
}
.layout-featured-sidebar-sub_meta {
    margin-top: 0.5rem;
    margin-left: auto;
}
.layout-featured-sidebar-sub_creation-date p {
    font-size: 1rem; 
    margin: 0;
    line-height: 1;
}
/* ------------------------------------------------ */
/* FOOTER-BEREICH
/* ------------------------------------------------ */
.layout-featured-sidebar-bottom {
    display: flex;
    justify-content: right;
    margin-top: 1rem;
}
.layout-featured-sidebar-bottom_title {
    display: flex;
    align-items: center;
}
.layout-featured-sidebar-bottom_title a, .layout-featured-sidebar-bottom_title p{
    font-size: 1.44rem;
    margin: auto 0 0 0.2rem;
}
/* ------------------------------------------------ */
/* MOBILE ANSICHT
/* ------------------------------------------------ */
@media (max-width: 975px) {
    .layout-featured-sidebar_grid {
       
        flex-direction: column;
        gap: 2rem;
    }

    .layout-featured-sidebar-main {
        flex: none;
        width: 100%;
    }

    .layout-featured-sidebar-subs-wrapper {
        min-width: 100%;
        flex: none;
    }

    .layout-featured-sidebar-bottom {
        justify-content: flex-start;
        margin-top: 2rem;
    }
}