:root{
    --main:#aea349;
    --dark:#020001;
}

body{
    font-family:'Cairo',sans-serif;
    background:#f7f7f5;
    color:var(--dark);
}

/* SECTION TITLE */
.blog-title{
    font-weight:800;
    margin-bottom:50px;
}

/* BLOG CARD */
/*.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}*/

.blog-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

/* الزوايا الزخرفية */
.blog-card::before,
.blog-card::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border: 3px solid var(--main-color);
    pointer-events: none;
}

/* الزاوية العلوية اليمنى */
.blog-card::before {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 20px;
}

/* الزاوية السفلية اليسرى */
.blog-card::after {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 20px;
}


.blog-card:hover{
    transform:translateY(-6px);
}

/* IMAGE SMALLER */
.blog-card img{
    width:100%;
    height:170px;
    object-fit:cover;
}

/* CONTENT */
.blog-content{
    padding:18px 20px 22px;
}

.blog-content h3{
    font-size:17px;
    font-weight:800;
    color:var(--main);
    margin-bottom:12px;
    line-height:1.6;
}

.blog-content p{
    font-size:14.5px;
    line-height:1.9;
    color:#444;

    display:-webkit-box;
    -webkit-line-clamp:6;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.blog-content a{
    display:inline-block;
    margin-top:14px;
    padding:8px 20px;
    border-radius:30px;
    background:var(--main);
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
    background: linear-gradient(135deg, #bea46a, #020001);
}

.blog-content a:hover{
    background:#8f8538;
    background: var(--main);
}




/* ############################################################################  */

/* ARTICLE */
/*.article-box{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}
*/
/*.article-img{
    width:100%;
    height:420px;
    object-fit:cover;
}*/



.article-box {
    position: relative;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    padding: 3px;
    margin: 10px;
}

/* الزوايا */
.article-box::before,
.article-box::after {
    content: "";
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid var(--main-color);
    pointer-events: none;
}

/* الزاوية العلوية اليمنى */
.article-box::before {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 25px;
}

/* الزاوية السفلية اليسرى */
.article-box::after {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 25px;
}



.article-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  margin: 10px;
  border-radius: 25px;
  padding: 10px;
  margin: 0 auto;
}

.article-content{
    padding:35px 40px;
}

.article-content h1{
    font-size:28px;
    font-weight:800;
    color:var(--main);
    margin-bottom:25px;
}

.article-content p{
    font-size:16px;
    line-height:2.1;
    margin-bottom:18px;
    color:#444;
}

/* SIDEBAR */
.sidebar{
    position:sticky;
    top:120px;
    z-index: 10;
}

.sidebar-title{
    font-weight:800;
    margin-bottom:25px;
}

/* SIDE CARD */
/*.side-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:18px;
    transition:.3s;
}*/

.side-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  margin-bottom: 18px;
  transition: .3s;
  padding: 20px;
  margin: 10px;
}


.side-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 20px;
    margin: 10px;
    transition: .3s;
}

/* الزوايا */
.side-card::before,
.side-card::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid var(--main-color);
    pointer-events: none;
}

/* الزاوية العلوية اليمنى */
.side-card::before {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
    border-top-right-radius: 18px;
}

/* الزاوية السفلية اليسرى */
.side-card::after {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
    border-bottom-left-radius: 18px;
}


.side-card:hover{
    transform:translateY(-5px);
}

/*.side-card img{
    width:100%;
    height:110px;
    object-fit:cover;
}*/
.side-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  /*width: 252px;*/
  height: 185px;
  margin: auto;
  margin: auto 0px;
  border-radius: 18px;
}


.side-card .content{
    padding:12px 14px;
}

.side-card h5{
    font-size:14.5px;
    font-weight:800;
    color:var(--main);
    line-height:1.6;
    margin:0;
}