/* ===== Block 01: Featured News Section (Exact PC Screenshot Layout) ===== */
.unp-featured-block {
  direction: rtl;
}

/* Section title */
.unp-featured-block .section-title {
  font-weight: 700;
  border-inline-end: 6px solid var(--primary);
  padding: 6px 10px;
  background: #f5f5f5;
  margin-bottom: 16px;
  display:none;
}

/* --- Top Area --- */
.unp-featured-block .featured-top {
  display: grid;
  grid-template-columns: 60% 40%;
  background: #fff;
  overflow: hidden;
  align-items: stretch;
}

/* Left Image */
.unp-featured-block .left-img {
  position: relative;
}
.unp-featured-block .left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Info Box */
.unp-featured-block .right-info {
  background: #333;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unp-featured-block .right-info .info-inner {
  padding: 24px;
  text-align: right;
}
.unp-featured-block .headline {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 12px;
}
.unp-featured-block .headline a {
  color: #fff;
  text-decoration: none;
}
.unp-featured-block .excerpt {
  font-size: 16px;
  line-height: 1.6;
  color: #eee;
}

/* --- Bottom 4 Small Posts --- */
.unp-featured-block .small-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.unp-featured-block .s-post {
  text-align: center;
  background: #f6f6f6;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  transition: transform .2s;
}
.unp-featured-block .s-post:hover { transform: translateY(-4px); }
.unp-featured-block .s-post .thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.unp-featured-block .s-post .title {
  font-size: 17px;
  line-height: 1.4;
  padding: 8px;
  margin: 0;
  text-align:right;
}
.unp-featured-block .s-post .title a {
  color: #111;
  text-decoration: none;
}
.unp-featured-block .s-post .title a:hover {
  color: var(--primary);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .unp-featured-block .featured-top {
    grid-template-columns: 1fr;
  }
  .unp-featured-block .right-info {
    background: transparent;
    color: #111;
  }
  .unp-featured-block .headline a { color: #111; }
  .unp-featured-block .excerpt { color: #333; }
  .unp-featured-block .small-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Mobile Overlay Layout --- */
@media (max-width: 600px) {
  .unp-featured-block .featured-top {
    position: relative;
  }
  .unp-featured-block .right-info {
    position: relative;
    inset: auto 0 0 0;
    background: rgb(0 0 0);
    color: #fff;
    padding: 12px 16px;
  }
	    .unp-featured-block .headline a {
        color: #ffffff;}
	.unp-featured-block .right-info .info-inner{padding: 8px;}
  .unp-featured-block .headline {
    margin: 0;
	font-size: 24px;
  }
  .unp-featured-block .excerpt { display: none; }
}