



.main-cont{
    height: 35vh;
    position: relative;
    color: var(--mustard);
    background-size: cover;
    background-position: center;
}

h1.title{
    color: var(--mustard);
    z-index: 3;
    font-size: 3.1rem;
}

.main-cont-overlay{
    background: var(--background-black);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.title-cont::before{
    display: none;
}


b{
    display: inline-block;
}

.article{
    padding: 5vh 6vw;
}
.article img{
    width: 100%;
    height: 25vh;
    object-fit: cover;
    border-radius: 10px;
}

.separator{
    height: 0.1vh;
    background: var(--gray);
}


@media screen and (min-aspect-ratio: 1/1) {

    .main-cont-overlay{
        background: linear-gradient(-60deg, var(--background-black) 50%, transparent 50%);
    }
    .main-cont{
        height: 40vh;
        background-position: 0 -55vh;
        background-repeat: no-repeat;
    }

    .v-stripe{
        position: absolute;
        top: 2vmin;
        bottom: 2vmin;
        left: 0;
        background: linear-gradient(90deg, var(--mustard) 70%, black 30%);
    }


    .article .h2{
        padding: 0;
        font-size: 1.2rem;
    }
    .article img{
        height: auto;
    }
}