/* Nagłówek ze zdjęciem */
#single_header{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 524px;
}

.header_content {
    display: block;
    color: var(--color-white);
}

.header_content{
    padding-top: 30px;
}

.header_content > div{
    max-width: 620px;
    margin-top: 155px;
}

.header_content > div > h1{
    color: var(--color-white);
    font-family: 'Space Grotesk';
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: 0em;
    text-align: left;
}
.header_content > div > p{
    font-family: 'Mulish';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;

}
/*  end     -   Nagłówek ze zdjęciem   -   end  */

/*  Pasek informacji    */
.info-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #E4E4E4;
    padding: 20px 0px;
    font-family: Mulish;
    font-size: 16px;
    line-height: 150%;
    color: var(--color-black);
}

.info-bar > .left_info > span{
    color: var(--color-black-50);
}

.info-bar > .right_info{
    width: 200px;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.right_info a:hover{
    opacity: 0.8;
}
/*  end     -   Pasek informacji   -   end  */

/* Artykuł */
#article_content{
    margin-top: 40px;
    margin-bottom: 120px;
}

#article_content h2{
    font-family: 'Mulish';
    font-style: normal;
    font-weight: bold;
    line-height: 150%;
    margin-top: 30px;
}

#article_content p{
    font-family: Mulish;
    /*font-size: 16px;*/
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 30px;
    color: var(--color-black);
}

#article_content figure{
    margin-top: 48px;
    margin-bottom: 18px;
}

#article_content figcaption{
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #E4E4E4;
    font-family: Mulish;
    font-style: italic;
    font-weight: normal;
    font-size: 12px;
    line-height: 150%;
    color: var(--color-black-50);
    padding: 16px 0px;
}

#article_content figure > img{
    width: 100%;
    height: auto;
}

/*  end     -   Artykuł   -   end  */

/* Inne newsy */
#other_newses{
    margin-bottom: 76px;
}
#other_newses > .container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap
}

#other_newses .single-news {
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 495px;
    margin-bottom: 34px;
    padding: 0px 16px;
}

#other_newses .single-news .news_content {
    position: relative;
    height: 100%;
}

#other_newses .single-news .news-image {
    height: 495px;
    overflow: hidden;
}

#other_newses .single-news .news-image img{
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
    object-fit: cover;
}

#other_newses .single-news:hover .news-image > img {
    transform: scale(1.1);
}

.news-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    min-height: 180px;
    padding: 32px 52px;
    background-color: rgba(54, 87, 164, 0.7);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.news-content h4, .news-content span {
    display: block;
}

.news-content h4, .news-content span, .news-content a {
    color: var(--color-white);
    position: relative;
    font-size: 13px;
    font-weight: 300;
}

.news-content a > img {
    position: absolute;
    right: -20px;
    top: 5px
}

.news-content h4 {
    font-size: 22px;
    font-weight: bold;
}

.news-content span{
    font-size: 14px;
}

.news-content a {
    font-size: 16px;
    font-weight: bold;
}

.news-content span {
    font-family: 'Mulish';
    font-size: 13px;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 16px;
    margin-bottom: 32px;
    max-width: 272px;
}
/*  end     -   Inne newsy   -   end  */

@media screen and (min-width: 0px) and (max-width: 500px){

    .header_content > div{
        margin-top: 100px;
    }

    .info-bar > .right_info > *{
        padding: 0px 5px 0px 5px;
    }

    .info-bar > .right_info > a{
        padding-top: 8px;
    }

    .info-bar > .right_info > span{
        line-height: 250%;
    }
}
