@media screen and (min-width: 1080px) {


    /***** Structure *****/
    #article header {
        position: relative;
    }
    #article header {
        min-height: 340px;
    }
    #article header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    #article header {
        box-shadow: 0 0 20px 0 #00000050;
        background-color: #bbb;
    }
    #headerText {
        z-index: 2;
    }
    #headerText {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #headerText {
        padding: 20px;
    }

    /***** Text *****/
    #article header h1 {
        text-align: center;
        color: #fff;
    }
    #article header h1 {
        font-family: 'title-font';
        font-size: 22px;
        font-weight: 400;
        text-transform: uppercase;
        line-height: 25px;
    }

    /***** Gradient *****/
    #headerGradient {
        position: absolute;
        z-index: 1;
    }
    #headerGradient {
        height: 100%;
        width: 100%;
    }
    #headerGradient {
        background: rgb(0, 0, 0);
        background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.29744397759103647) 100%);
    }

    /***** Image *****/
    #article header img {
        position: absolute;
    }
    #article header img {
        width: 100%;
        height: 100%;
    }
    #article header img {
        object-fit: cover;
    }


}