/* =========================================
   Post Page - Kawalis Style (CLEAN)
   - same design
   - removed duplicates
========================================= */

/* =========================
   Page
========================= */
.post-page{
  background: var(--bg-page);
}

.post-page__container{
  padding-top: 28px;
}

/* =========================
   Breadcrumb
========================= */
.post-breadcrumb{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;

  padding: 10px 0;
  margin-bottom: 18px;
  border-radius: 12px;

  font-family: "Nizar Bukra", var(--font-ui);
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0;

  background: #FFFDF3;
  color: rgba(26, 26, 26, 0.50);
}

.post-breadcrumb__link{
  color: rgba(26, 26, 26, 0.50);
  text-decoration: none;
  transition: var(--transition);
}

.post-breadcrumb__link:hover{
  color: #1A1A1A;
  text-decoration: underline;
}

.post-breadcrumb__sep{
  color: rgba(26, 26, 26, 0.50);
}

.post-breadcrumb__current{
  font-weight: 700;
  color: #1A1A1A;
}

/* =========================
   Publish time
========================= */
.post-publish-time{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: rtl;
  margin-bottom: 8px;
}

.post-publish-time__text{
  font-family: "Nizar Bukra", var(--font-ui);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0;
  text-align: right;
  color: #777;
}

/* =========================
   Title
========================= */
.post-title{
  font-family: "Nizar Bukra", var(--font-heading);
  font-weight: 700;
  font-style: normal;
  font-size: 34px;
  line-height: 45px;
  letter-spacing: 0;
  text-align: right;

  color: #1A1A1A;
  margin: 0 0 16px;

  word-break: break-word;
}

/* =========================
   Social Media
========================= */
.post-social{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.post-social__btn{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  background: #ECECEC;
  border: 1px solid rgba(0,0,0,0.06);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  transition: var(--transition);
}

.post-social__btn:hover{
  transform: translateY(-2px);
  background: #F4F4F4;
  box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}

.post-social__icon{
  display: block;
  object-fit: contain;
}

.post-social__icon--fb{ width: 16px; height: 16px; }
.post-social__icon--x{ width: 16px; height: 16px; }
.post-social__icon--tiktok{ width: 16px; height: 16px; }
.post-social__icon--ig{ width: 16px; height: 16px; }
.post-social__icon--youtube{ width: 21px; height: 16.5px; }

/* =========================
   Layout (Content + Sidebar)
========================= */
.post-layout{
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 28px;
  align-items: start;
}

.post-main{
  min-width: 0;
  max-width: 820px;
}

/* =========================
   Post Image
========================= */
.post-hero-media{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #eee;
  margin: 6px 60px 60px;
}

.post-hero-media__link{
  display: block;
  position: relative;
  text-decoration: none;
}

.post-hero-media__img{
  width: 100%;
  height: 558px;
  display: block;
  aspect-ratio: 1440 / 885;
  object-fit: cover;
}

.post-hero-media__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.04) 0%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.55) 100%
  );
  pointer-events: none;
}

.post-hero-media__badge{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;

  height: 26px;
  padding: 0 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.90);
  border: 1px solid rgba(0,0,0,0.06);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Nizar Bukra", var(--font-ui);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  color: #1A1A1A;
}

/* =========================
   Post Content (FINAL)
========================= */
.post-content{
  font-family: "Nizar Bukra", var(--font-ui);
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;

  text-align: justify;
  text-justify: inter-word;

  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;

  color: #1A1A1A;
}

.post-content p{
  margin: 0 0 22px;
}

.post-content h2{
  margin: 22px 0 12px;
  font-family: "Nizar Bukra", var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #1A1A1A;
}

.post-content blockquote{
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #FFFDF3;
  border: 1px solid rgba(0,0,0,0.06);

  font-family: "Nizar Bukra";
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
  color: #1A1A1A;
}

/* =========================
   Tags
========================= */
.post-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.post-tag{
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;

  background: #ECECEC;
  color: #1A1A1A;

  font-family: "Nizar Bukra";
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.post-tag:hover{
  background: #e0e0e0;
}

/* =========================
   Sidebar title
========================= */
.post-side__title{
  font-family: "Nizar Bukra", var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1A1A1A;
  margin: 0 0 14px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px){
  .post-layout{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
 
.featured__sidebar{
  display: block !important;
}