/*
Theme Name: myBlog
Author: Sissy Mirtl
Description: Mein erstes WP-Theme.
Version: 5.0-Beta
*/

/*@import url('https://fonts.googleapis.com/css?family=Fira+Sans|Roboto+Mono&display=swap');*/
@import url("https://use.typekit.net/cpx6cdk.css");

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* verhindert das Anzeigen von Transitions beim Laden der Seite */
.preload {
    -webkit-transition: none !important;
    transition: none !important;
}

body {
   font-family: europa, sans-serif;
font-weight: 300;
font-style: normal;
    /* bei fixiertem HEADER
    padding-top: 9rem;
    */
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; 
    
}

/* SITE-HEADER-Elemente */

#site-header {
    /* fixierter HEADER 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;*/

    position: relative;
    z-index: 9999;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
/*     NAV unter LOGO: */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    padding: 1.8rem 0 0;
    background: radial-gradient(circle, rgba(240,240,240,1) 0%, rgba(214,181,148,1) 76%);
}

.home #site-header {
    position:fixed;
}

header a,
.menu a,
#content-header a,
h1 a,
h2 a,
h4 a,
.post-links a,
.footer-widgets a,
.show-more {
    text-decoration: none;
}

.site-logo {
     margin: 0 0 1.8rem 0; 
}

.site-logo a {
    display: block;
    width: 16.775rem;
    height: 10rem;

    background-image: url(img/logo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;

    text-indent: -3000px;

    /* Logo mit Text 
    font-family: 'Fira Sans', sans-serif;
    font-size: 2.4em;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    word-spacing: -0.05em;
    letter-spacing: 0.05em;
    text-indent: 0;
    */

}

#menu-container {
    
    background-color: black;
    width: 100vw;
}

.menu,
.menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    padding: 0;
    list-style: none;
}

.menu li {
    position: relative;
    white-space: nowrap;
    padding: 0;
    margin: 0 1em;
}


/* Menü mit Bildern als Trennzeichen:

.menu>li::after {
    content: "";
    display: inline-block;
    vertical-align: middle;

    width: 1em;
    height: 1em;
    margin: 0 0.8em 0 1em;

    background-image: url(img/menu-after.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.menu li:last-of-type::after,
#main-menu li:last-of-type::after {
    display: none;
}
*/

.menu a {
    display: inline-block;
    vertical-align: middle;
    padding: 0.3em 0 0.1em 0;

   font-family: europa, sans-serif;
font-weight: 300;
font-style: normal;
    font-size: 1.3em;
    color: white;
    letter-spacing: 0.1em;
    white-space: nowrap;
    
    border-bottom: transparent 3px solid;

    -webkit-transition-property: border;

    transition-property: border;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

.no-touchevents .menu li:hover > a,
.menu a.active,
.current-menu-item > a,
.current-menu-parent > a,
.home .primary-nav ul > li:first-of-type a {
    
    border-bottom-color: white;
    
}

.no-touchevents .menu li:hover > a,
.menu a.active,
.home .primary-nav .menu-footer ul > li:first-of-type a {
    border-bottom-width: none;
    border-bottom-style:none;
}


.menu-footer {
    display:none;
}



/* SUB-MENU */
.no-touchevents .menu li:hover .sub-menu {
    display: block;
}

.sub-menu {
    margin-top: 0.5em;
}

.sub-menu li {
    padding: 0.2em;
    margin: 0;
    display: block;
}

.sub-menu a {
    font-size: 0.8em;
}


/* Falls eine Suchfunktion verwendet wird: 

    #searchform {
        margin-left: 3rem;
        width:20em;
        height:2em;
    }

    #searchform input {
        vertical-align: middle;
        -webkit-transition: all 0.6s ease-out;
        transition: all 0.6s ease-out;
    }

    #searchform input[type=text] {
        width: 10em;
        border: none;
        border-bottom: solid 3px #000;
        padding: 0.2em 0.5em;
    }

    .no-touchevents #searchform input[type=text] {
        border-color: rgba(0, 0, 0, 0.1);
    }

    .no-touchevents #searchform:hover input[type=text],
    .no-touchevents #searchform input[type=text]:focus {
        border-color: #000;
    }

    #searchform input[type=image] {
        height: 2.4em;
        width: auto;
        margin-left: 0.5em;
    }

    #searchform input:focus {
        background-color: #fff;
        outline: none;
    }
*/



/* CONTENT-Elemente */

/*
header {
    display:none;
}
*/

main {
    position: relative;

    -ms-flex-preferred-size: 15rem;

    flex-basis: 15rem;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-bottom: 8rem;
}

.home main {
    margin-bottom:0;
}

/*
#content-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2em;
}

#content-header.bg-header {
    min-height: 440px;
    min-height: calc(100vh - 12em);
    background-color: deepskyblue;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
*/

.single-post #content-header.bg-header {
    margin-bottom: 0;
    background-position: center 30%;
}

/* BSP Hintergrundbild auf #CONTENT-HEADER in HOME */
/*
.home #content-header.bg-header {
    background-image: url(img/default-home-header.jpg);
}
*/

.menu a,
h2,
h4 {
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  font-family: europa, sans-serif;
font-weight: 400;
font-style: normal;
}

h1 {
    margin: 0;
    font-size: 1.8em;
    line-height: 1em;
    font-weight: 700;
    letter-spacing: 0.04em;
}

#content-header h1 {
    display:none;
    
    padding: 0.5em 4%;
    background-color: #000;
    color: white;

    font-size: 1.4em;
    font-weight:300;
    white-space: nowrap;
}

.single-post #content-header h1 {
    padding: 0 4%;
}

#content-header h1 a {
    color: white;
}



/* Artikel auf der Startseite */
.home .post-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;

    margin: 20em 2em 0;
    
}

.home .post-container::after {
    content:"magic";
    color:white;
    display:block;
    width:4em;
    -ms-flex-preferred-size: 4em;
    flex-basis: 4em;
}



article {
    width: 60%;
    margin: 4em auto 6em;
    padding: 2em 2em 4em 2em;
    background-color: #fff;
}

.single-post article {
    margin: 0 auto 2em;
}

.category-posts article {
    position: relative;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    width: 80%;
    padding: 2em;
/*    box-shadow: 0 5px 5px rgba(220, 220, 220, 0.4);*/
    -webkit-box-shadow:  0 0 5px black;
    box-shadow:  0 0 5px black;
    
    border-style: solid;
    border-color: black;
    border-width: 0.2em;
}

.home .category-posts article {
    border-style: none;
    border-color: none;
    border-width: none;
}

.category-posts article:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}


/* Artikel auf der Startseite */
.home .category-posts article {
    -ms-flex-preferred-size: 30ch;
    flex-basis: 30ch;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;

    /* mit Breite in Prozent, aber dann ist Anpassung über MEDIA QUERIES für DEVICES notwendig ... 50% ... 90%!
    flex-basis:30%;
    */

    -webkit-box-pack: center;

    -ms-flex-pack: center;

    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;

    max-width: 60ch;
    min-height: 30ch;
    margin: 1em;
    padding: 0;

    background-color:#d6b594;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
    -webkit-box-shadow: 0 5px 5px rgba(220, 220, 220, 0.4);
    
    box-shadow: 0 5px 5px rgba(220, 220, 220, 0.4);
}

/* Artikel auf der Startseite */
.bg-permalink {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


.post-thumb {
    margin: 0 0 2em;
}

.category-posts .post-thumb {
    position: relative;
    -ms-flex-preferred-size: 360px;
    flex-basis: 360px;
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    min-height: 40vh;
    margin: 0;
    overflow: hidden;
    text-align: center;
}

.category-posts .post-thumb img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


.category-posts .post-text {
    position: relative;
    -ms-flex-preferred-size: 40ch;
    flex-basis: 40ch;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    background-color: #fff;
    padding: 1em 3ch 0.5em;
}

.category-posts .post-text.no-thumb {
    -ms-flex-preferred-size: 60ch;
    flex-basis: 60ch;
    -webkit-box-flex: unset;
    -ms-flex-positive: unset;
    flex-grow: unset;
}

/* Artikel auf der Startseite */
.home .category-posts .post-text {
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    
    -webkit-box-flex: 1;
    
    -ms-flex-positive: 1;
    
    flex-grow: 1;
    -ms-flex-preferred-size:25ch;
    flex-basis:25ch;

    /* Verteilung der Post-Header-Inhalte über die Höhe:*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

    background-color: rgba(255, 255, 255, 0.85);
    padding: 1.5em 2ch;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
}

/* Artikel auf der Startseite */
.home .category-posts .post-text.no-thumb {
    opacity: 0.6;
}

.home .category-posts article:hover .post-text {
    opacity: 1;
}



.post-header {
    margin-bottom: 3em;
}

.category-posts .post-header {
    margin-bottom: 1em;
}

.category-posts .entry-content {
    margin: 0 0 2.5em;
}



.category-names {
    position: relative;
    z-index: 500;
    margin-bottom: 1em;
}

.cat-name:last-of-type::after {
    content: "";
}

.cat-name a {
    padding: 0 0.2em;
    color: #666;
    -webkit-transition: color 0.4s ease-out;
    transition: color 0.4s ease-out;
}

.cat-name a:hover {
    color: #333;
}

.cat-name::after {
    content: "|";
    color: #666;
}

#content-header .cat-name::after {
    color: #fff;
}

#content-header .cat-name a {
    display: inline-block;
    padding: 0.6em 0.5em 0.5em 0.5em;
}

#content-header .cat-name a:hover {
    background-color: black;
    color: white;
}


h2 {
    margin-bottom: 0.2em;
    font-size: 3.6em;
    line-height: 1.25em;
    letter-spacing: 0.02em;
    /*    text-align: center;*/
    -webkit-transform: translateX(-0.05em);
    transform: translateX(-0.05em);
}

.category-posts h2 {
    font-size: 2.8em;
    margin-bottom: 0.2em;
}

/* Artikel auf der Startseite */
.home .category-posts h2 {
    font-size: 1.2em;
}

h3 {
    font-size: 2em;
    margin: 1.4em 0 0.5em;
}

h4 {
    font-size: 1.4em;
    margin: 1em 0 0.6em;
}

ul {
    margin: 0.7em;
}

li {
    margin-bottom: 0.8em;
    padding-left: 1.5em;
}

a {
    color: #000;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}


h2 a:hover {
     text-shadow: 0 0 2px #000;
    color:#fff;
}

.home h2 a:hover {
    text-shadow:none;
}

/* Artikel auf der Startseite */
.home .category-posts h2 a {
    display: block;
    padding: 0.6em 0;
    border: none;
    color: #666;
}

.home .category-posts h2 a:hover {
    background-color: transparent;
    color: #333;
}

.show-more {
    color: black;
    padding: 0.2em 0.5em;
}

.show-more:hover {
    color: white;
    text-shadow: 0 0 2px black;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    
}

.entry-meta {
    color: #666;
    font-size: 0.8em;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1.4em;
    font-size: 1.1em;
    line-height: 1.6em;
}

figure {
    margin: 2em 0 3em;
}

img {
    display: inline-block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.gallery-image img {
    height:30ch;
    width:auto;
}

.gallery-image {
    position:relative;
    
}

.post-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 10% 5em;
     font-family: europa, sans-serif;
font-weight: 300;
font-style: normal;
    font-size: 0.8em;
}

.single-post .post-links {
    margin: 0 20% 5em;
}

.post-links a {
    display: block;
    padding: 0.5em;

    font-size: 2em;
    letter-spacing: 0.09em;
    white-space: nowrap;
}

.post-links a:hover {
/*    background-color: black;*/
    color: white;
    text-shadow: 0 0 2px black;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}


/* FOOTER-Elemente */
#site-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* WIDGETS untereinander: 
    flex-direction: column;
    */
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    padding: 0.2em 4%;
    background-color: black;
}

.home #site-footer {
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
}

#site-footer .menu li {
    margin-bottom: 0;
}

.footer-widgets {
    margin: 0.5em;
}

.footer-widgets ul {
    list-style: none;
    padding: 0;
}

.widget-title {
    margin: 2em 0 1em;
    font-size: 1.2em;
    text-transform: uppercase;
}

.footer-widgets p {
    margin: 0;
}

.footer-widgets a {
    font-size: 0.8em;
}





/* WP-BLOCKS, wenn das BLOCK-Element in einem POST verwendet wird: 

.wp-block-media-text {
    grid-template-rows: auto;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin: 2em 0;
}

.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text .wp-block-media-text__content {
    grid-column: auto;
    grid-row: auto;
    align-self: start;
    margin: 0.5em 0;
}

*/

.is-type-video .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 54%;
    /* 56.25%=16:9 - 75%=4:3*/
    padding-top: 25px;
    height: 0;
    margin-bottom: 4em;
}

.is-type-video .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none !important;
}



/* WP-Gallery mit Abstand! 
.wp-block-responsive-lightbox-gallery {
    margin: 5em auto;
}
*/

.rl-gallery-container {
    width: 100%;
    height: 60vh !important;
    overflow: hidden;
}




/* Beispiele Styles für PLUGINS: */

/* LIKE-BUTTON 
.wpulike-notification .wpulike-message.wpulike-success {
    background-color: skyblue;
}

.wpulike-notification .wpulike-message.wpulike-error {
    background-color: #ffed14;
}

.wpulike-notification .wpulike-message.wpulike-warning {
    background-color: deeppink;
}
*/




/* MEDIA QUERIES */
@media screen and (min-width:100rem) {
    article {
        width: 48%;
    }

    .post-links {
        margin: 0 20% 5em;
    }
}

@media screen and (hover:hover) and (min-width:64.011rem) {

    /* - - SUBMENU ON HOVER 
    derzeit noch doppelt auch mit MODERNIZR gecheckt ... */

    .sub-menu {
        position: absolute;
        top: 1.6em;
        left: 0;
        height: 0;
        margin: 0;
        overflow: hidden;

        background-color: #fff;
        opacity: 0;
        -webkit-transition: opacity 0.6s ease-out;
        transition: opacity 0.6s ease-out;
    }

    .menu li:hover .sub-menu {
        height: auto;
        padding: 0.6em 0.6em 0.8em;
        opacity: 1;
    }

}

@media screen and (hover:none) {

    /* Artikel auf der Startseite */
    .home .category-posts .post-text {
        background: rgba(255, 255, 255, 0.5);
/*        opacity: 1;*/
        display:none;
    }

    /* Artikel auf der Startseite */
    .home .category-posts h2 a {
        color: #000;
    }

}

@media screen and (hover:none) and (min-width:64.0111rem) {

    .sub-menu {
        position: absolute;
        top: 1.6em;
        left: 0;
        height: auto;
        margin: 0;
        background-color: white;
        overflow: hidden;
        opacity: 1;
    }

}


@media screen and (max-width:64rem) {
    #site-header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width:100vw;
    }
    
    .home #site-header {
        position:relative;
    }
    
    .home .category-posts article {
        background-color: white;
    }

    .site-logo {
        margin: 0 1rem 1.8rem 1rem;
    }

    #main-menu ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;

    }
    
    .menu-footer {
        display:block;
    }
    
    .menu-social-media-menu-container ul#menu-social-media-menu {
/*        margin:0.5em;*/
        margin:0 0.5em 0 0.5em;
    }
    
    .menu-footer-menu-container ul#menu-footer-menu {
        margin:0 0.5em 0 0.5em;
    }
    

    #main-menu > div > ul {
        min-height: 30vh;
/*        margin: 0.5em;*/
        margin: 0.5em 0.5em 0 0.5em;
    }

    #main-menu li {
        margin-bottom: 0.2em;
        text-align: center;
    }

    #main-menu li::after {
        display: block;
        margin: 0.8em auto;
    }

    #main-menu a {
        font-size: 1.4em;
    }

    #main-menu .sub-menu a {
        font-size: 1em;
    }

    /* - - SEARCHFORM
    #site-header nav div,
    #searchform {
        flex-basis: 90%;
    }
    
    #searchform {
        margin: 2em 0 0;
    }

    .no-touchevents #searchform input[type=text] {
        border-color: #000;
    }
    */
    

    #content-header {
        margin-top: 0em;
    }

    #content-header h1 {
        display:block;
        
        -ms-flex-preferred-size: 100%;
        
        flex-basis: 100%;
        font-size: 1.2em;
        white-space: normal;
         text-align: center;
    }
    
    main {
        margin-bottom:0;
    }
    
    .home .post-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 2em 2em 0;
        
    }

    article {
        width: 80%;
        margin: 4em auto 6em;
    }

    .category-posts article {
        padding: 1em;
    }

    h2 {
        font-size: 2.4em;
    }

    h3 {
        font-size: 1.6em;
        margin: 1.2em 0 0.6em;
    }

    h4 {
        font-size: 1.3em;
        margin: 1.2em 0 0.6em;
    }
    
    p, li {
        line-height:1.4em
    }


    .single-post .post-links {
        margin: 0 10% 5em;
    }
    
    #site-footer {
        display:none;
    }
    
    .footer-widgets {
    margin: 0;
}


}



@media screen and (max-width:44rem) {
    main {
        margin-bottom: 4em;
    }

    .single-post #content-header h1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
/*        padding: 0.5em 1em;*/
    }

    .single-post-links {
        margin: 0.2em 0;
    }

    .home .post-container {
        margin: 4em 0;
        overflow:hidden;
    }

    article {
        width: 100%;
/*        margin: 0 auto 3em;*/
        margin: 3em auto;
        padding: 1em;
    }
    
/*
    .gallery-image img {
    height:auto;
    width:100%;
}
*/

    .category-posts article {
        width: 96%;
        padding: 0.5em;
    }

    .category-posts .post-thumb {
        -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
    }

    .category-posts .post-text {
        padding: 1em 0 3.5em;
    }

    h1 {
        font-size: 1.2em;
    }

    h2,
    .category-posts h2 {
        font-size: 1.8em;
    }

    .post-links {
        margin: 0 2em 5em;
    }

    .post-links,
    #site-footer {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

/*
    #site-footer .menu {
        flex-direction: column;
    }

    #site-footer .menu li {
        flex-direction: column;
        margin-bottom: 0.4em;
    }
*/
}


@media screen and (orientation:portrait) {

    .category-posts .post-thumb {
        position: relative;
        -ms-flex-preferred-size: 250px;
        flex-basis: 250px;
    }

    .single-post #content-header.bg-header {
        min-height: 40vh;
    }

}
