/* ===============================
   EXPLORE PAGE STYLE
================================ */

article.explore-page.spotlight-hero {
    width: 1376px;
    margin: 0 auto;
    height: 720px;
}

/* ===============================
   CONTENT SPOTLIGHT – HERO STYLE
================================ */

.spotlight-hero {
  position: relative;
  width: 855px;           /* 🔑 exact width */
  height: 400px;          /* 🔑 exact height */
  max-width: 100%;        /* responsive safety */
  border-radius: 24px;
  overflow: hidden;
  background: #000;
}

.spotlight-hero a {
  display: block;
  color: #fff;
  text-decoration: none;
}

/* Image layer */
.spotlight-media {
  width: 100%;
  height: 100%;
}

.spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay */
.spotlight-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 15%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0) 70%
  );
  z-index: 1;
}

/* Text overlay */
.spotlight-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

/* Article badge */
.spotlight-type {
  display: inline-block;
  background: #ffffff;
  color: #000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Tags */
.spotlight-overlay .card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.spotlight-overlay .tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

.tag-category {
  background: #e6f4d7;
  color: #2f7d32;
}

.tag-subcategory {
  background: #fde2f3;
  color: #b1006e;
}

/* Title */
.spotlight-title {
  font-size: 36px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 10px;
}

/* Excerpt */
.spotlight-excerpt {
  font-size: 16px;
  max-width: 680px;
  opacity: 0.95;
  margin-bottom: 12px;
}

/* Meta */
.spotlight-meta {
  font-size: 14px;
  opacity: 0.85;
}

/* Mobile */
@media (max-width: 767px) {
  .spotlight-hero {
	width: 100%;
	height: auto;
	aspect-ratio: 855 / 400; /* keeps proportions */
  }

  .spotlight-title {
    font-size: 24px;
  }

  .spotlight-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}



/* ===================================
   This Week’s Guidance (Right)
   Shortcode: [this_weeks_guidance]
=================================== */

.weekly-guidance {
  background: #fff9e8;
  border-radius: 20px;
  padding: 20px;
}

.weekly-guidance-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Single item */
.guidance-card {
  margin-bottom: 16px;
}

.guidance-card:last-child {
  margin-bottom: 0;
}

.guidance-card a {
  display: flex;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

/* Image */
.guidance-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.guidance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.guidance-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Tags */
.guidance-card .card-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.guidance-card .tag-category {
  background: #e6f4d7;
  color: #2f7d32;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}

/* Title */
.guidance-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

/* Hover */
.guidance-card a:hover .guidance-title {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {
  .weekly-guidance {
    padding: 16px;
  }

  .weekly-guidance-title {
    font-size: 20px;
  }
}