.blog-hero-carousel {
  position: relative;
  width: 100%;
  height: 560px;
  background: var(--blog-navy);
  overflow: hidden;
  touch-action: pan-y;
}
.bhc-track-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.bhc-track {
  display: flex;
  height: 100%;
  width: 100%;
  will-change: transform;
}
.bhc-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.bhc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, transparent 100%);
}
.bhc-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 60px 5%;
  color: #fff;
  opacity: 0;
  transform: translateY(20px);
  animation: bhc-fade-up 0.8s ease forwards 0.2s;
}
@keyframes bhc-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
.bhc-category {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--blog-gold);
  color: var(--blog-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.bhc-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 16px;
  color: #fff;
}
.bhc-excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 0 24px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.bhc-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.bhc-meta i { margin-right: 5px; color: var(--blog-gold); }
.bhc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--blog-gold);
  color: var(--blog-navy);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bhc-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  text-decoration: none;
}
/* Arrows */
.bhc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(4px);
  transition: all 0.2s;
}
.bhc-arrow:hover {
  background: var(--blog-gold);
  color: var(--blog-navy);
  border-color: var(--blog-gold);
}
.bhc-prev { left: 20px; }
.bhc-next { right: 20px; }

@media (max-width: 768px) {
  .bhc-arrow {
    display: none !important;
  }
}

/* Dots */
.bhc-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.bhc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.bhc-dot:hover { background: rgba(255,255,255,0.6); }
.bhc-dot.active {
  background: var(--blog-gold);
  transform: scale(1.3);
}
/* Admin Hero Selector */
.admin-hero-manager {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  border: 1px solid var(--blog-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.admin-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: var(--blog-navy);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-hero-title i { color: var(--blog-gold); }
.admin-hero-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.admin-hero-list-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--blog-muted);
  margin: 0 0 12px;
  letter-spacing: 1px;
}
.admin-hero-ul {
  list-style: none;
  padding: 0;
  margin: 0;
  min-height: 100px;
  border: 2px dashed var(--blog-border);
  border-radius: 8px;
  background: var(--blog-offwhite);
  padding: 8px;
}
.admin-hero-li {
  background: #fff;
  border: 1px solid var(--blog-border);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 8px;
  cursor: grab;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.admin-hero-li:last-child { margin-bottom: 0; }
.admin-hero-li:active { cursor: grabbing; }
.admin-hero-li i { color: var(--blog-muted); cursor: pointer; }
.admin-hero-li .add-btn { margin-left: auto; color: var(--blog-royal); font-weight: 700; cursor: pointer; padding: 4px; }
.admin-hero-li .add-btn:hover { color: var(--blog-gold); }
.admin-hero-li .remove-btn { margin-left: auto; color: #ef4444; font-weight: 700; cursor: pointer; padding: 4px; }
.admin-hero-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
