.hpdrn-news-wrapper {
  margin: 0 auto;
}

.hpdrn-news-inner {
  display: flex;
  gap: 20px;
}

/* -------- LEFT & RIGHT LAYOUT -------- */
.hpdrn-news-left {
  flex: 1.7;
}

.hpdrn-news-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* -------- CARD WRAPPER -------- */
.hpdrn-news-card {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  color: #fff;
}

.hpdrn-news-large {
  height: 800px;
}

a.hpdrn-news-large:hover {
    color: white!important;
}
.hpdrn-news-small {
  height: 390px;
}

a.hpdrn-news-small:hover {
  color: white!important;
}

/* -------- IMAGE -------- */
.hpdrn-news-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* -------- OVERLAY -------- */
.hpdrn-news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hpdrn-news-overlay-small {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 70%
  );
}

/* -------- TOP ROW: Category + Date -------- */
.hpdrn-news-top {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}

.hpdrn-news-label {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
}

.hpdrn-news-date {
font-weight: 700;
font-size: 18px;
display: flex;
justify-content: center;
align-items: center;
	color: white;
}

/* -------- CONTENT BOTTOM -------- */
.hpdrn-news-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 5;
}

/* Big Card Title */
.hpdrn-news-title {
font-family: Montserrat;
font-weight: 700!important;
font-size: 42px!important;
color: white;
	  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Small Card Title */
.hpdrn-news-title-small {
font-family: Montserrat;
font-weight: 700!important;
font-size: 26px!important;
color: white;
	  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* -------- BUTTON -------- */
.hpdrn-news-btn,
.hpdrn-news-btn-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
	color: white;
}

/* Hover */
.hpdrn-news-card:hover .hpdrn-news-img {
  transform: scale(1.04);
  transition: 0.4s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .hpdrn-news-inner {
    flex-direction: column;
  }
  .hpdrn-news-large {
    height: 330px;
  }
}
