.subheader {
    display: flex;
    height: auto;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    direction: rtl;
    text-align: justify;
    text-justify: inter-word;
    font-size: 0.875rem;
    margin-bottom: 2dvh;
    color: #222021;

}

.subheader>img {
    height: 3dvh;
    width: auto;
    margin: auto;
    margin-right: 1dvw;
    margin-left: 1dvw;
}

.subheader>h1 {
    white-space: nowrap;
    margin: auto;
}

.header-vborder {
    border-bottom: 2px #c94f38 solid;
    width: 100%;
    height: 50%;
    margin-left: 1dvw !important;
    margin-right: 0 !important;
    margin: auto;
}

.articlesList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch !important;
    padding: 1dvw;
    direction: ltr;
    row-gap: 5dvh;
    column-gap: 1dvw;
    justify-content: center;
}

.articleCard a {
    text-decoration: none !important;
    color: inherit;
}

.articleCard {
    display: flex;
    flex-direction: column;
    direction: rtl;
    flex-basis: 30%;
    /* border: 1px solid #c94f38; */
    border-radius: 15px !important;
    justify-content: flex-start;
}

.articleCard:hover {
    /* background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.09)); */
    border-radius: 15px;
    box-shadow: 0 5px 3px 0 #222021;
}

.postCover {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    aspect-ratio: 16 / 9 !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 15px !important;
    background-color: transparent !important;
}

.postCover>h1 {
    text-align: center;
    position: absolute;
    font-size: 1.4rem;
    font-weight: 700;
    bottom: 2dvh;
    color: #e4e4e4;
}

.postDetails {
    position: relative;
    text-align: center;
    padding: 1dvh;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: stretch;
    gap: 1dvh;
    height: auto;
    margin: auto;
}
.postDetails>h6{
    margin-bottom: 0;
}

.postDetails>h1 {
    font-size: 1rem;
    flex-basis: 100%;
    /* white-space: nowrap; */
}
.postDetails>h1>img {
    width: 30%;
    
}
.postDetails>h6{
    direction: rtl !important;
}

.tags>* {
    text-decoration: none;

}

.tags>i {
    color: #c94f38;
    margin: auto 0;
}

.tags>span {
    border-left: 3px solid #222021;
}

.tags>a {
    color: #222021;
}

.tags>a:hover {
    color: #322f30;
}

/* ________________________________________________________________________________________ */
@media screen and (max-width: 768px) {
    .subheader {
        font-size: 0.5rem;
    }

    .subheader>h1 {
        font-size: 1rem;
    }

    .subheader>img {
        height: 2dvh;
    }

    .header-vborder {
        border-bottom: 1px #c94f38 solid;
    }
    .articleCard{
        flex-basis: 45%;
    }
    .postCover>h1{
        font-size: 0.75rem;
    }
    .postDetails>h1{
        font-size: 0.5rem;
    }
    .postDetails>h6{
        font-size: 0.5rem;
    }

}