/* ==========================================
   SINGLE: Angebot – Hero, Staff, Related
   ========================================== */

.single-angebot .nv-post-cover,
.single-angebot .nv-overlay,
.single-angebot .nv-post-cover .nv-overlay,
.single-angebotsevent .nv-post-cover,
.single-angebotsevent .nv-overlay,
.single-angebotsevent .nv-post-cover .nv-overlay {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* ==========================================
   Single Badges / Taxonomies
   ========================================== */
.jhh-post-taxonomies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
}

.jhh-post-taxonomies .jhh-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  line-height: 1;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  margin: 0;
  white-space: nowrap;
}

.jhh-post-taxonomies .jhh-badge-jug {
  padding: 6px 12px;
  border: 2px solid transparent;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-color: #000;
  background-image:
    linear-gradient(#000, #000),
    linear-gradient(90deg, #ff6a00, #ee0979, #00c6ff);
  color: #fff;
}

.jhh-post-taxonomies .jhh-badge-pa {
  background-color: var(--jhh-badge-pa-bg, var(--jhh-term-default-bg, #d9d9d9));
  color: var(--jhh-badge-pa-color, var(--jhh-term-default-color, #222));
}

.jhh-post-taxonomies .jhh-badge-ta {
  background-color: #f0f0f0;
  color: #333;
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem;
}

/* ==========================================
   Hero Title Animations
   ========================================== */
.jhh-hero-title.anim-fade-in-up {
  animation: jhhFadeInUp 1s ease-out forwards;
}
@keyframes jhhFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.jhh-hero-title.anim-slide-in-left {
  animation: jhhSlideInLeft 0.8s ease-out forwards;
}
@keyframes jhhSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.jhh-hero-title.anim-scale-pop {
  animation: jhhScalePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes jhhScalePop {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jhh-hero-title.anim-typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;
  animation: jhhTypewriter 2s steps(30, end) forwards, jhhBlinkCaret 0.75s step-end infinite;
}
@keyframes jhhTypewriter {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes jhhBlinkCaret {
  from, to { border-color: transparent; }
  50% { border-color: #fff; }
}

.jhh-hero-title.anim-glitch {
  position: relative;
  animation: jhhGlitch 1s ease forwards;
}
.jhh-hero-title.anim-glitch::before,
.jhh-hero-title.anim-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.jhh-hero-title.anim-glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00ff;
  clip-path: inset(0 0 50% 0);
  animation: jhhGlitchTop 0.8s ease infinite;
  animation-delay: 0.2s;
}
.jhh-hero-title.anim-glitch::after {
  left: -2px;
  text-shadow: 2px 0 #00ffff;
  clip-path: inset(50% 0 0 0);
  animation: jhhGlitchBottom 0.8s ease infinite;
  animation-delay: 0.4s;
}
@keyframes jhhGlitch {
  0% { opacity: 0; transform: translateX(-20px); }
  10% { opacity: 1; transform: translateX(10px); }
  20% { transform: translateX(-5px); }
  30% { transform: translateX(0); }
  100% { transform: translateX(0); }
}
@keyframes jhhGlitchTop {
  0%, 100% { clip-path: inset(0 0 50% 0); transform: translateX(0); }
  50% { clip-path: inset(0 0 48% 0); transform: translateX(-3px); }
}
@keyframes jhhGlitchBottom {
  0%, 100% { clip-path: inset(50% 0 0 0); transform: translateX(0); }
  50% { clip-path: inset(52% 0 0 0); transform: translateX(3px); }
}

.jhh-hero-title.anim-wave {
  display: inline-block;
  animation: jhhWave 2s ease-in-out infinite;
}
@keyframes jhhWave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-5px) rotate(-2deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(-5px) rotate(2deg); }
}

.jhh-hero-title.anim-glow-pulse {
  animation: jhhGlowPulse 2s ease-in-out infinite, jhhFadeIn 0.6s ease forwards;
}
@keyframes jhhFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes jhhGlowPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255,255,255,0.5), 0 0 20px rgba(255,255,255,0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(255,255,255,0.8), 0 0 40px rgba(255,255,255,0.5), 0 0 60px rgba(255,255,255,0.3);
  }
}

.jhh-hero-title.hover-glow:hover {
  text-shadow: 0 0 20px rgba(255,255,255,0.9), 0 0 40px rgba(255,255,255,0.6), 0 0 60px rgba(255,255,255,0.4);
  transition: text-shadow 0.3s ease;
}

.jhh-hero-title.hover-scale:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.jhh-hero-title.hover-color-shift:hover {
  background: linear-gradient(90deg, #ff6a00, #ee0979, #8a2be2, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.jhh-hero-title.hover-underline {
  position: relative;
  display: inline-block;
}
.jhh-hero-title.hover-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6a00, #ee0979, #00c6ff);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.jhh-hero-title.hover-underline:hover::after {
  width: 100%;
}

.jhh-hero-title.hover-shake:hover {
  animation: jhhShake 0.5s ease;
}
@keyframes jhhShake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .jhh-hero-title[class*="anim-"],
  .jhh-hero-title[class*="hover-"],
  .jhh-hero[class*="anim-"],
  .jhh-hero[class*="anim-"]::before {
    animation: none !important;
    transition: none !important;
  }
  .jhh-hero-title.anim-typewriter {
    width: 100% !important;
    border-right: none !important;
  }
}

/* ==========================================
   Kombinierte Hero-Animationen
   ========================================== */
.jhh-hero.anim-cinematic {
  overflow: hidden;
}
.jhh-hero.anim-cinematic::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: jhhKenBurns 20s ease-in-out infinite alternate;
  z-index: 0;
}
.jhh-hero.anim-cinematic .jhh-hero-title {
  opacity: 0;
  animation: jhhEpicReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
@keyframes jhhKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}
@keyframes jhhEpicReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    letter-spacing: 0.3em;
    filter: blur(10px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: normal;
    filter: blur(0);
  }
}

.jhh-hero.anim-parallax-drift {
  overflow: hidden;
}
.jhh-hero.anim-parallax-drift::before {
  content: '';
  position: absolute;
  inset: -5%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: jhhParallaxFloat 15s ease-in-out infinite;
  z-index: 0;
}
.jhh-hero.anim-parallax-drift .jhh-hero-title {
  opacity: 0;
  animation: jhhDreamyText 2s ease-out 0.3s forwards;
}
@keyframes jhhParallaxFloat {
  0%, 100% { transform: translateY(0) translateX(0) scale(1.05); }
  25% { transform: translateY(-1%) translateX(1%) scale(1.08); }
  50% { transform: translateY(0.5%) translateX(-0.5%) scale(1.06); }
  75% { transform: translateY(-0.5%) translateX(-1%) scale(1.07); }
}
@keyframes jhhDreamyText {
  0% {
    opacity: 0;
    transform: translateY(30px);
    text-shadow: 0 0 40px rgba(255,255,255,0.8);
    filter: blur(8px);
  }
  50% {
    text-shadow: 0 0 60px rgba(255,255,255,1), 0 0 100px rgba(255,255,255,0.5);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    filter: blur(0);
  }
}

.jhh-hero.anim-explosive {
  overflow: hidden;
}
.jhh-hero.anim-explosive::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: jhhExplosiveBg 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  z-index: 0;
}
.jhh-hero.anim-explosive .jhh-hero-title {
  opacity: 0;
  animation: jhhImpactText 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s forwards;
}
@keyframes jhhExplosiveBg {
  0% { transform: scale(1.5); filter: blur(20px) brightness(2); }
  50% { filter: blur(5px) brightness(1.2); }
  100% { transform: scale(1); filter: blur(0) brightness(1); }
}
@keyframes jhhImpactText {
  0% {
    opacity: 0;
    transform: scale(3) translateY(-20px);
    text-shadow: 0 0 100px rgba(255,255,255,1);
  }
  60% {
    text-shadow: 0 0 40px rgba(255,255,255,0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }
}

.jhh-hero.anim-vortex {
  overflow: hidden;
}
.jhh-hero.anim-vortex::before {
  content: '';
  position: absolute;
  inset: -15%;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: jhhVortexBg 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  z-index: 0;
}
.jhh-hero.anim-vortex .jhh-hero-title {
  opacity: 0;
  animation: jhhVortexText 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes jhhVortexBg {
  0% { transform: scale(2) rotate(15deg); filter: blur(30px); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); filter: blur(0); opacity: 1; }
}
@keyframes jhhVortexText {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.jhh-hero.anim-aurora {
  overflow: hidden;
}
.jhh-hero.anim-aurora::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
    rgba(255,107,107,0.3),
    rgba(78,205,196,0.3),
    rgba(199,125,255,0.3),
    rgba(69,183,209,0.3),
    rgba(255,190,118,0.3));
  background-size: 400% 400%;
  animation: jhhAuroraShift 8s ease infinite;
  z-index: 1;
  mix-blend-mode: overlay;
}
.jhh-hero.anim-aurora .jhh-hero-title {
  opacity: 0;
  animation: jhhEtherealText 2s ease-out 0.2s forwards;
  position: relative;
  z-index: 2;
}
@keyframes jhhAuroraShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes jhhEtherealText {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    text-shadow: 0 0 80px rgba(199,125,255,0.8), 0 0 120px rgba(78,205,196,0.6);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    text-shadow: 0 0 30px rgba(199,125,255,0.4), 0 0 60px rgba(78,205,196,0.3);
    filter: blur(0);
  }
}

.jhh-hero.anim-spotlight {
  overflow: hidden;
}
.jhh-hero.anim-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--spotlight-x, -50%) var(--spotlight-y, 50%), rgba(255,255,255,0.4) 0%, transparent 50%);
  animation: jhhSpotlightSweep 2s ease-out forwards;
  z-index: 1;
}
.jhh-hero.anim-spotlight .jhh-hero-title {
  opacity: 0;
  animation: jhhBoldReveal 1s ease-out 0.8s forwards;
  position: relative;
  z-index: 2;
}
@keyframes jhhSpotlightSweep {
  0% { --spotlight-x: -50%; opacity: 0; }
  20% { opacity: 1; }
  100% { --spotlight-x: 150%; opacity: 0; }
}
@keyframes jhhBoldReveal {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }
}

.jhh-hero.anim-glitch-storm {
  overflow: hidden;
}
.jhh-hero.anim-glitch-storm::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  animation: jhhGlitchStormBg 0.5s steps(1) 3;
  z-index: 0;
}
.jhh-hero.anim-glitch-storm .jhh-hero-title {
  opacity: 0;
  animation: jhhGlitchStormText 0.8s steps(1) forwards;
  position: relative;
}
@keyframes jhhGlitchStormBg {
  0% { transform: translate(0); filter: hue-rotate(0deg); }
  20% { transform: translate(-5px, 5px); filter: hue-rotate(90deg); }
  40% { transform: translate(5px, -5px); filter: hue-rotate(180deg); }
  60% { transform: translate(-3px, -3px); filter: hue-rotate(270deg); }
  80% { transform: translate(3px, 3px); filter: hue-rotate(360deg); }
  100% { transform: translate(0); filter: hue-rotate(0deg); }
}
@keyframes jhhGlitchStormText {
  0%, 20% { opacity: 0; transform: skewX(0deg); }
  25% { opacity: 1; transform: skewX(10deg); color: #ff00ff; }
  30% { transform: skewX(-10deg); color: #00ffff; }
  35% { transform: skewX(5deg); color: #ffff00; }
  40%, 100% { opacity: 1; transform: skewX(0deg); color: #fff; }
}

/* ==========================================
   Content / Single Layout
   ========================================== */
.jhh-content ul,
.jhh-content ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.jhh-content ul {
  list-style-type: disc;
}
.jhh-content ol {
  list-style-type: decimal;
}
.jhh-content li {
  margin-bottom: 0.5em;
  display: list-item;
}
.jhh-content ul ul,
.jhh-content ol ol,
.jhh-content ul ol,
.jhh-content ol ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.jhh-single-angebot .jhh-hero{ position:relative; min-height: 420px; background-size: cover; background-position: center; }
.jhh-single-angebot .jhh-hero::after{ content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.55)); }
.jhh-single-angebot .jhh-hero-overlay{ position:relative; z-index:1; height:100%; display:flex; align-items:center; justify-content:center; padding: 24px 18px; text-align:center; padding-top: calc(72px + 18px); box-sizing: border-box; }
.jhh-single-angebot .jhh-hero-title{ margin:0; color:#fff; font-size: clamp(3rem, 9vw, 6rem); line-height:1.05; margin-top: clamp(8px, 8vh, 120px); }

@media (max-width: 900px) {
  .jhh-single-angebot .jhh-hero-overlay{ padding-top: calc(56px + 12px); padding-left: 14px; padding-right:14px; }
  .jhh-single-angebot .jhh-hero-title{ font-size: clamp(2.4rem, 9.5vw, 3.6rem); margin-top: clamp(8px, 6vh, 80px); }
}

.jhh-single-wrap{ max-width: 1100px; margin: 24px auto; padding: 0 16px; }
.jhh-back-link{ display:inline-block; margin-bottom: 16px; text-decoration:none; background:#fff; color:#111; padding:6px 12px; border-radius:999px; font-weight:700; }
@media (prefers-color-scheme: dark){
  .jhh-back-link{ background:#2b2727; color:#fff; }
}
html[data-neve-theme="dark"] .jhh-back-link{ background:#2b2727; color:#fff; }

.jhh-staff{ display:grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin: 28px 0; align-items: stretch; }
.jhh-staff-card{
  position:relative;
  background: #2b2727;
  color:#fff;
  border-radius: 16px;
  overflow:hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-align: left;
  width: 100%;
  min-width: 0;
}
.jhh-staff-topline{ display: none; }
.jhh-staff-inner{
  flex: 0 0 140px;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: rgba(0,0,0,.15);
}
.jhh-staff-avatar{
  border-radius: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
}
.jhh-staff-content{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.jhh-staff-meta{
  padding: 18px 20px 8px;
  flex: 1 1 auto;
}
.jhh-staff-name{
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
}
.jhh-staff-role{
  opacity: .85;
  margin-top: 4px;
  font-weight: 600;
  font-size: 0.95rem;
}
.jhh-staff-contact{
  color: #b9aaff;
  margin-top: 6px;
  font-weight: 600;
  display: block;
  font-size: 0.9rem;
  text-decoration: none;
}
.jhh-staff-contact:hover{ text-decoration: underline; }
.jhh-staff-bio{
  padding: 0 20px 18px;
  opacity: .92;
  font-size: 0.92rem;
  line-height: 1.5;
}
.jhh-staff-bio p{ margin: 0 0 8px; }
.jhh-staff-bio p:last-child{ margin-bottom: 0; }

@media (max-width: 480px){
  .jhh-staff-card,
  .jhh-staff-card.bg-simple,
  .jhh-staff-card.bg-notebook,
  .jhh-staff-card.bg-aurora,
  .jhh-staff-card.bg-grainy-1,
  .jhh-staff-card.bg-grainy-2,
  .jhh-staff-card.bg-grainy-3,
  .jhh-staff-card.bg-custom{
    flex-direction: column !important;
    text-align: center !important;
    padding-top: 58px !important;
    margin-top: 50px !important;
    overflow: visible !important;
    position: relative !important;
  }
  .jhh-staff-inner,
  .jhh-staff-card.bg-notebook .jhh-staff-inner,
  .jhh-staff-card.bg-aurora .jhh-staff-inner{
    position: absolute !important;
    top: -50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    flex: 0 0 auto !important;
    width: 100px !important;
    height: 100px !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #1a1a1a !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 0 0 3px rgba(255,255,255,.15), 0 6px 22px rgba(0,0,0,.35) !important;
  }
  .jhh-staff-avatar,
  .jhh-staff-card.bg-notebook .jhh-staff-avatar{
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center 20% !important;
    border-radius: 50% !important;
    padding: 0 !important;
    background: none !important;
    transform: none !important;
    margin-top: 0 !important;
    box-shadow: none !important;
  }
  .jhh-staff-card.bg-notebook .jhh-staff-inner::before{
    display: none !important;
  }
  .jhh-staff-meta{ padding: 2px 16px 8px; }
  .jhh-staff-bio{ padding: 0 16px 16px; text-align: left; }
}

/* ==========================================
   Related Offers
   ========================================== */
.jhh-related{ margin: 36px 0 20px; }
.jhh-related h3{ margin: 0 0 12px; }
.jhh-related-grid{ display:grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 12px; }
.jhh-related-item{
  display:block;
  text-decoration:none;
  background:#1e1b1b;
  border-radius:10px;
  overflow:hidden;
  position: relative;
}
.jhh-related-thumb{ width:100%; height: 120px; object-fit: cover; display:block; transition: transform 0.3s ease; }
.jhh-related-content{ position: relative; }
.jhh-related-title{ display:block; padding:8px 10px; color: var(--nv-text-color, #eee); font-weight:700; transition: padding-bottom 0.3s ease; }
.jhh-single-angebot .jhh-related-title{ color:#fff !important; }

.jhh-related-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(30,27,27,0.95) 0%, rgba(20,18,18,0.98) 100%);
  padding: 10px 10px 12px;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #ff6a00, #ee0979, #8a2be2, #00c6ff) 1;
}

.jhh-related-item.has-hover:hover .jhh-related-hover {
  transform: translateY(0);
  opacity: 1;
}

.jhh-related-item.has-hover:hover .jhh-related-thumb {
  transform: scale(1.05);
}

.jhh-related-staff,
.jhh-related-schedule {
  font-size: 0.8rem;
  color: #e0e0e0;
  line-height: 1.4;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.jhh-related-staff:last-child,
.jhh-related-schedule:last-child {
  margin-bottom: 0;
}

.jhh-related-icon {
  flex-shrink: 0;
  font-size: 0.9rem;
}

.jhh-related-avatars {
  display: flex;
  flex-shrink: 0;
}

.jhh-related-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1e1b1b;
  margin-right: -8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.jhh-related-avatar:last-child {
  margin-right: 0;
}

.jhh-related-names {
  color: #b9aaff;
  font-weight: 600;
}

.jhh-related-staff {
  color: #b9aaff;
  font-weight: 600;
}

.jhh-related-schedule {
  color: #a0d8ef;
  font-weight: 500;
}

@media (max-width: 780px) {
  .jhh-related-grid .jhh-related-item:nth-child(5) {
    display: none;
  }
}