body {
  background-color: var(--bg);
  padding-top: 90px;
}

header {
  height: 75vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
header::before {
  content: "";
  position: absolute;
  inset: 0px;
  background-color: rgba(0, 0, 0, 0.1);
}
header .go-to-bottom {
  transition: all 0.4s linear;
  animation-name: toBottom;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  position: absolute;
  bottom: 30px;
  opacity: 1;
}
header .go-to-bottom::after {
  content: "";
  position: absolute;
  bottom: 25px;
  width: 4px;
  right: calc(50% - 5.5px);
  border-radius: 3px;
  height: 20px;
  background-color: rgb(255, 255, 255);
  transform: rotate(40deg);
}
header .go-to-bottom::before {
  content: "";
  position: absolute;
  bottom: 25px;
  right: calc(50% + 5.5px);
  width: 4px;
  border-radius: 3px;
  height: 20px;
  background-color: rgb(255, 255, 255);
  transform: rotate(-40deg);
}
@keyframes toBottom {
  from {
    bottom: 25px;
  }
  to {
    bottom: -10px;
    opacity: 0;
  }
}

main .article-col {
  background-color: var(--bg-third);
  padding: 20px 35px;
}
main .article-col article #title {
  font-size: 32px;
  font-weight: 600;
}
main .article-col article .auther img {
  width: 55px;
  margin-top: -30px;
}
main .article-col article .content img {
  width: 100% !important;
  border-radius: var(--radius-sm);
}
main .share-box {
  display: none;
}
main .share-box a {
  text-align: center;
  background-color: rgb(27, 119, 199);
  color: #fff;
  font-size: 18px;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: var(--border-radius);
}

/* Start Var */
/* End Var */
#share {
  position: fixed;
  left: 0px;
  top: 25%;
  background-color: var(--bg-white);
  z-index: 9;
  height: auto;
  width: 60px;
  padding: 10px 10px;
  border-bottom-right-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  display: none;
}
#share ul {
  margin-bottom: 0px;
}
#share ul li {
  list-style: none;
  margin: 5px 0px;
}
#share ul li a {
  text-align: center;
  background-color: var(--bg);
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: var(--border-radius);
}
#share .alert {
  position: absolute;
  background-color: #fbe9d0;
  width: 200px;
  top: 0px;
  left: 80px;
  color: #ed8d00;
  display: none;
}
#share .alert::before {
  content: "";
  top: calc(50% - 10px);
  left: -10px;
  position: absolute;
  background-color: #fbe9d0;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}
#share .alert .btn-close-alert {
  border: none;
  background-color: transparent;
  color: #ed8d00;
  position: absolute;
  top: 5px;
  right: 10px;
}

@media (max-width: 920px) {
  main .article-col #title {
    font-size: 28px !important;
  }
  main .share-box {
    display: block !important;
  }
  #share {
    display: none !important;
  }
}
@media (max-width: 576px) {
  header {
    height: 280px;
  }
  main .article-col {
    padding: 15px;
  }
  main .article-col #title {
    font-size: 22px !important;
  }
  main .share-box {
    display: block !important;
  }
  main .share-box a {
    line-height: 40px !important;
  }
}/*# sourceMappingURL=article.css.map */
/* ===== Blog Article Improvements ===== */

/* صورة المقال الرئيسية */
.article-col header,
.article-col > header {
    background-size: cover;
    background-position: center;
    min-height: 420px;
}


/* محتوى المقال */
.article-col article {
    font-size:18px;
    line-height:2;
    color:#333;
    padding:40px;
}


/* العناوين داخل المقال */
.article-col article h2 {
    font-size:28px;
    font-weight:700;
    margin:35px 0 20px;
    color:#0B1F3A;
}

.article-col article h3 {
    font-size:22px;
    margin:25px 0 15px;
}


/* الفقرات */
.article-col article p {
    margin-bottom:20px;
}


/* القوائم */
.article-col article ul {
    padding-right:25px;
    margin-bottom:25px;
}

.article-col article li {
    margin-bottom:10px;
}


/* تحسين عرض المقال */
.article-col {
    max-width: 950px !important;
    margin: auto;
}

.article-col article {
    font-size: 18px;
    line-height: 2;
}


/* صورة المقال */
.article-cover {
    width: 100%;
    max-width: 1100px;
    height: 350px;
    margin: 30px auto;
    overflow: hidden;
    border-radius: 12px;
    background: #f5f5f5;
}

.article-cover img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: center;
}
