/* VIRAL HOOK SECTION */
.viral-hook-section {
  padding: 80px 20px;
  background: var(--color-white);
}

.viral-hook-section .container {
  max-width: 1100px;
  margin: 0 auto;
  background: #f9fafb;
  padding: 60px 80px;
  border-radius: 16px;
  border: 1px solid var(--color-grey-border);
}

/* GRID LAYOUT */
.vh-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: center;
}

.vh-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  min-width: 0; /* verhindert Blowout durch .vh-slider-track width:max-content */
}

.vh-content h2 {
  margin: 0;
}

.vh-description {
  color: var(--color-grey-text);
  line-height: 1.5;
  font-size: var(--size-p-large);
}

.vh-slider-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-grey-text);
  margin-top: 8px;
}

/* ===========================
   INFINITE AUTO-SCROLL SLIDER
=========================== */

.vh-slider {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.vh-slider-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: vh-scroll 20s linear infinite;
}

.vh-slider:hover .vh-slider-track {
  animation-play-state: paused;
}

@keyframes vh-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===========================
   PROFIL-CARDS
=========================== */

.vh-profile-card {
  flex-shrink: 0;
  min-width: 160px;
  padding: 12px;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vh-profile-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold-border);
  box-shadow: 0 6px 16px rgba(215, 173, 95, 0.18);
}

.vh-profile-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vh-profile-info {
  flex: 1;
  min-width: 0;
}

/* Instagram Story Border um Avatar */
.vh-profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  flex-shrink: 0;
}

.vh-profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--color-white);
}

.vh-profile-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
}

.vh-profile-branche {
  font-size: 11px;
  color: var(--color-grey-text);
}

.vh-profile-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
}

.vh-profile-stat-value {
  font-size: 16px;
  font-weight: 700;
  background: radial-gradient(50% 50% at 50% 50%, var(--color-dark-gold) 0%, var(--color-dark-gold-text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.vh-profile-stat-label {
  font-size: 11px;
  color: var(--color-grey-text);
}

/* ===========================
   CTA BLOCK
=========================== */

.vh-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

/* ===========================
   TRUST-TEXT
=========================== */

.vh-trust {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
  line-height: 1.5;
  margin-top: 4px;
}

.vh-trust strong {
  font-weight: 700;
  font-style: italic;
}

/* ===========================
   VISUAL (RECHTES BILD)
=========================== */

.vh-image {
  max-width: 450px;
  justify-self: center;
  min-width: 0;
}

.vh-image img {
  width: 300px;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
  .viral-hook-section {
    padding: 60px 20px;
  }

  .viral-hook-section .container {
    padding: 40px 30px;
  }

  .vh-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vh-content {
    order: 1;
  }

  .vh-image {
    order: 2;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .viral-hook-section .container {
    padding: 30px 20px;
  }
}

@media (max-width: 600px) {
  .vh-cta {
    width: 100%;
  }

  .vh-cta .btn-gold,
  .vh-cta .btn-transparent {
    flex: 1 1 auto;
    justify-content: center;
  }
}
