
section.header,
footer {
    background-color: white;
}

section.articles {
    padding: 50px calc((100% - 1100px)/ 2);
    padding-bottom: 150px;
    background-color: white;
}

section.articles h2 {
    text-align: center;
    font-size: 45px;
    color: rgba(0, 0, 0, 0.7);
}

section.articles h2 {
    font-weight: 700;
}

section.articles div.wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: baseline;
    margin-top: 50px;
}

section.articles div.wrap article {
    width: 45%;
    margin-bottom: 5%;
    background-color: #f3f3f3;
    position: relative;
    transition: all 0.3s;
    min-height: 580px;
}

body.en section.articles div.wrap article {
    min-height: 680px;
}

body.ar section.articles div.wrap article {
    text-align: left;
    direction: ltr;
}

section.articles div.wrap article span.image {
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 323px;
    width: 100%;
}

section.articles div.wrap article > div {
    padding: 1em 1em 2em 1em;
}

section.articles div.wrap article > div h3 {
    margin-bottom: 0.5em;
    color: rgba(0, 0, 0, 0.7);
    font-size: 30px;
}

section.articles div.wrap article > div p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    line-height: 20px;
}

section.articles div.wrap article > div div.description {
    display: none;
}

section.articles div.wrap article.show > div div.description {
    display: block;
}

section.articles div.wrap article > div a.read_more {
    display: inline-block;
    text-decoration: underline;
    color: rgba(0, 0, 0, 0.7);
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    position: absolute;
    right: 1em;
    bottom: 0.5em;
    outline: 0;
}

body.en section.articles div.wrap article > div a.read_more {
    right: auto;
    left: 1em;
}