/* ==========================================================================
   CAT-5 — Spotlight Featured
   ========================================================================== */
.yymev5_spotlight {
  position: relative;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-secondary);
  display: flex;
  align-items: flex-end;
}
.yymev5_spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.1) 100%);
}
.yymev5_spotlight-inner {
  position: relative;
  z-index: 1;
  padding: 4rem;
  color: #fff;
  max-width: 900px;
}
.yymev5_spotlight-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: .75rem;
}
.yymev5_spotlight-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  margin: .5rem 0 1rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.yymev5_spotlight-title a { color: #fff; text-decoration: none; }
.yymev5_spotlight-title a:hover { text-decoration: underline; }
.yymev5_spotlight-excerpt {
  font-size: 1.1rem;
  opacity: .85;
  margin: 0 0 1.25rem;
  max-width: 640px;
  line-height: 1.65;
}
.yymev5_spotlight-meta { font-size: .85rem; opacity: .7; }

.yymev5_grid-wrap { padding: 2.5rem 4%; background: var(--color-bg); }
.yymev5_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.yymev5_card {
  background: var(--color-surface);
  border-radius: var(--radius, 10px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}
.yymev5_card:hover {
  box-shadow: var(--shadow-md, 0 8px 24px rgba(0,0,0,.1));
  transform: translateY(-3px);
}
.yymev5_card-thumb {
  display: block;
  height: 180px;
  overflow: hidden;
}
.yymev5_card-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s;
}
.yymev5_card:hover .yymev5_card-thumb img { transform: scale(1.05); }
.yymev5_card-body { padding: 1rem 1.1rem 1.25rem; flex: 1; }
.yymev5_card-title {
  font-size: .95rem;
  font-weight: 700;
  margin: .4rem 0 .5rem;
  line-height: 1.4;
}
.yymev5_card-title a { color: var(--color-text); text-decoration: none; }
.yymev5_card-title a:hover { color: var(--color-primary); }
.yymev5_card-meta { font-size: .75rem; color: var(--color-muted); }

@media (max-width: 1024px) {
  .yymev5_spotlight { min-height: 480px; }
  .yymev5_spotlight-inner { padding: 2.5rem; }
  .yymev5_grid-wrap { padding: 2rem; }
  .yymev5_grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .yymev5_spotlight { min-height: 380px; }
  .yymev5_spotlight-inner { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .yymev5_grid { grid-template-columns: 1fr; }
  .yymev5_grid-wrap { padding: 1rem; }
  .yymev5_spotlight { min-height: 300px; }
}
