/* HERO SECTION */
.hero-section {
  position: relative;
  height: 500px;
  background: url("../images/photos/hero-img.webp") center/cover no-repeat;
  overflow: hidden;
  display: flex;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.1));
}


/* ===============================
   BLOG DETAIL SECTION
================================ */

.blog-detail {
  background-color: #000;
  color: #ffffff;
  margin-top: -25px;
}

.blog-detail .row {
  align-items: stretch;
}


/* Optional container max-width control */
.blog-container {
  max-width: 1340px;
  position: relative;
  background-color: #242424;
  margin-top: -350px;
  border-radius: 15px;
}

/* ===============================
   FEATURED IMAGE
================================ */

.featured-image {
  height: 375px; 
  margin: 20px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay (kept for future use) */
.image-overlay {
  position: absolute;
  inset: 0;
}

/* ===============================
   RESOURCES BOX
================================ */
.resources-box {
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
  width: 100%;
  height: 100%;
  margin-top: 10px;
}


.resources-box h5 {
  font-size: 26px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

/* Resource Item */
.blog-link {
  text-decoration: none;
}

.resource-item {
  align-items: center;
  padding-bottom: 20px;
}

.resource-item img {
  width: 160px;
  height: 100px;
  object-fit: cover;
}

.resource-item .text-muted {
  color: #ffffff !important;
}

.resource-item h6 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
  color: #fff;
}

/* Date row inside resources */
.resource-item small {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

/* ===============================
   TEXT CONTENT
================================ */
.bottom-text {
  margin-left: 20px;
  margin-top: -30px;
}

.bottom-text h2 {
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0%;
}

.bottom-text p {
  color: #ffffff;
  margin-bottom: 18px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 0%;
  width: 100%;
}

/* Date under title */
.bottom-text .text-muted {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #ffffff !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0%;
  margin-top: 20px;
}

/* ===============================
   ICON SIZE FIX
================================ */

.text-muted img {
  width: 24px;
  height: 24px;
}

.resource-item small img {
  width: 15px;
  height: 15px;
}