

/*     */

.main{
    padding: 50px 12%; 
    flex-direction: column;
    font-weight: 300;
    position: relative;
    background: rgba(255, 255, 255, .9);

}

.main::before{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: url('../img/network-1.webp');
    z-index: -1;
    top: 0px;
    left: 0px;
}

h1{
    font-size: 42px;
    font-weight: 300;
    margin-block-start: 0;
    margin-block-end: 0;
}

.divider{
    width: 100px;
    height: 2px;
    background: #ff6f10;
    margin: 8px 0;
    margin-bottom: 50px;
}

.post{
    background: #fff;
    flex-direction: row;
    width: 80%;
    border: 1px solid #ff6f10;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.thumb img{
    width: 400px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ff6f10;
}

.content{
    flex-direction: column;
    margin: 8px 32px;
    overflow-wrap: anywhere;
}

.headline{
    font-size: 36px;
    margin-bottom: 8px;
}

.desc{
    font-size: 24px;
}

.date{
    font-size: 24px;
    height: 100%;
    align-items: end;
}

.pagination{
    flex-direction: row;
}

.pagebutton{
    border: 1px solid #ff6f10;
    padding: 10px 16px;
    user-select: none;
    cursor: pointer;
    background: #fff;
    font-size: 20px;
    text-align: center;
}

.next{
    margin-left: 12px;
}

.breadcrumbs{
    margin: 0 0 16px 0;
    font-size: 18px;
}

@media only screen and (max-width: 1750px){

    .main {
        padding: 50px 8%;
    }

}

@media only screen and (max-width: 1550px){

    .main {
        padding: 50px 4%;
    }

    .divider {
        margin-bottom: 30px;
    }

}

@media only screen and (max-width: 1350px){

    .main {
        padding: 50px 2%;
    }

    .post {
        width: 90%;
    }

}

@media only screen and (max-width: 1150px){

    .thumb img {
        width: 320px;
        height: 215px;
    }

    .headline{
        font-size: 32px;
    }

    .desc{
        font-size: 21px;
    }

    .date{
        font-size: 21px;
    }

    .divider {
        margin-bottom: 25px;
    }

}

@media only screen and (max-width: 900px){

    .post {
        width: 95%;
    }

    .headline{
        font-size: 28px;
    }

    .desc{
        font-size: 19px;
    }

    .date{
        font-size: 19px;
    }

}

@media only screen and (max-width: 768px){

    .main h1{
        margin-left: 5px;
    }

    .divider{
        margin-left: 5px;
    }
    
    .post{
        flex-direction: column;
        width: 100%;
    }

    .thumb img{
        width: 100%;
        height: 325px;
    }

    .desc{
        margin-bottom: 16px;
    }

    .content {
        margin: 8px 12px;
    }

    .breadcrumbs{
        margin: 0 0 12px 0;
        font-size: 16px;
    }

}

@media only screen and (max-width: 550px){

    .thumb img{
        height: 285px;
    }

    .main h1 {
        font-size: 38px;
        margin-left: 10px;
    }

    .divider{
        margin: 5px 0 25px 10px;
    }

}

@media only screen and (max-width: 420px){
    
    .thumb img{
        height: 265px;
    }

    .main h1 {
        font-size: 32px;
    }

    .headline {
        font-size: 24px;
    }

    .thumb img{
        height: 275px;
    }

    .content {
        margin: 8px 10px;
    }

}

@media only screen and (max-width: 390px){

    .pagination{
        flex-direction: column;
        margin-left: 5px;
    }

    .pagebutton{
        width: 160px;
    }

    .thumb img{
        height: 255px;
    }

    .post{
        padding: 12px 10px;
    }

    .next{
        margin-left: 0;
        margin-top: 5px;
    }

}

@media only screen and (max-width: 350px){

    .thumb img{
        height: 235px;
    }

}

