:root {
  --main-green: #21A96C;
  --dark-green: #006231;
  --highlight-yellow: #FFEA01;
  --section-bg: #FDDBAB;
  --text-dark: #0A0A0A;
}
.NationalPoems__section {
  background: #44A148;
  padding: 2rem 0 6rem 0;
  position: relative;
}
.NationalPoems__section:before,
.NationalPoems__section:after {
  content: '';
  position: absolute;
  height: 100%;
  bottom: 0;
  background: url('../../includes/images/afterPage.png') no-repeat;
  opacity: 0.3;
  /* z-index: -1; */
}
.NationalPoems__section:before { left: 0; width: 11.9%; }
.NationalPoems__section:after  { right: 0; width: 11%; }


.NationalPoems__section .main-heading {
  text-align: center;
  margin-bottom: 3rem;
  color: #fff;
  font-family: "DecoType Thuluth";
  font-size: 4.25rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* الكارت */
.NationalPoems__section .item {
  text-align: right;
  margin: 1rem 0.5rem;
  overflow: hidden;
  border: 0;
  position: relative;
  clip-path: inset(0 0 var(--trim) 0 round 2rem);
  transition: clip-path .35s ease, transform .35s ease;
}
.NationalPoems__section .item:before{
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    width:100%;
    background: url('../../includes/images/postCart.png') no-repeat;
    background-size: 100% 100%;
    z-index: 1;
}

/* عند الهوفر: نقصّر من الأسفل */
.NationalPoems__section .item:hover {
}

/* صورة الكارت */
.NationalPoems__section .image {
  position: relative;
}

.NationalPoems__section .image img {
  width: 100%;
  display: block;
  border: 0;
  transform: scale(1);
  transition: transform .5s ease;
  height: 400px;
}

/* زوم للصورة عند الهوفر */
.NationalPoems__section .item:hover .image img {
  transform: scale(1.08);
}

/* الكابشن */
.NationalPoems__section .caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem;
  color: #fff;
}

.NationalPoems__section .item .caption h4 {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.NationalPoems__section .item .caption p {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 23px;
}

.NationalPoems__section .item .caption a.btn {
  background: #fff;
  color: #006231;
  border-radius: 2rem;
  padding: 0.5rem 1.25rem;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s ease;
}

.NationalPoems__section .item .caption a.btn:hover {
  background: #004d21;
  color: #fff;
}
/* زرار مخصص */
/*.custom-btn {*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 0.5rem;*/
/*  position: relative;*/
/*  overflow: hidden;*/
/*}*/
/*.custom-btn span:nth-child(2) {*/
/*  background: #fff;*/
/*  color: var(--main-green);*/
/*  border-radius: 2rem;*/
/*  padding: 0.5rem 1.5rem;*/
/*  font-weight: bold;*/
/*}*/

/* أيقونات */
/*.custom-btn .icon-left,*/
/*.custom-btn .icon-right {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  border-radius: 50%;*/
/*  transition: transform .3s ease, opacity .3s ease;*/
/*}*/
/*.custom-btn .icon-right {*/
/*  background: var(--highlight-yellow);*/
/*}*/
/*.custom-btn .icon-left {*/
/*  background: var(--main-green);*/
/*  transform: translateX(20px);*/
/*  opacity: 0;*/
/*}*/

/* عند الهوفر */
/*.custom-btn:hover .icon-right {*/
/*  transform: translateX(-20px);*/
/*  opacity: 0;*/
/*}*/
/*.custom-btn:hover .icon-left {*/
/*  transform: translateX(0);*/
/*  opacity: 1;*/
/*}*/

/* زرار readMore */
.readMore {
  padding-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* اللينك في الكابشن: مخفي افتراضي */
.news__section .caption .custom-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* لما اعمل hover على الكارت يظهر اللينك */
.news__section .item:hover .caption .custom-btn {
  opacity: 1;
  transform: translateY(0);
}
.slick-dots li.slick-active button {
  width: 3rem;                 /* المستطيل الطويل */
  background: #FFEA01;         /* الأخضر */
}

