/**
 * Ergänzungen zur statischen Homepage-SPA (webpage/assets/index-*.js).
 * Nur Markenfarben: #ec6408 (Orange), #2ba2d7 (Blau), #0f172a (Schrift auf hell).
 */

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 5.5rem;
}

html,
body {
  overflow-x: clip;
}
#ak24-cookie-fab-wrap a,
#ak24-cookie-fab-wrap button {
  border-radius: 999px !important;
  border: 2px solid rgba(43, 162, 215, 0.55) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(236, 100, 8, 0.12) !important;
  padding: 0.55rem 1.1rem !important;
  color: #0f172a !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

#ak24-cookie-fab-wrap a:hover,
#ak24-cookie-fab-wrap button:hover {
  border-color: #ec6408 !important;
  box-shadow: 0 12px 36px rgba(236, 100, 8, 0.18) !important;
}

@media (max-width: 639px) {
  #ak24-cookie-fab-wrap {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    bottom: max(1.1rem, env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* —— Next.js: MarketingCookieClient + MarketingBookingFab —— */
.ak24-cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.65rem 0.85rem;
  padding-bottom: max(0.65rem, env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(43, 162, 215, 0.28);
  box-shadow: 0 -6px 28px rgba(15, 23, 42, 0.08);
}

.ak24-cc-banner-inner {
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
}

.ak24-cc-banner-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 0.85rem;
  padding: 0.95rem 1.05rem 1.05rem;
  background: #fff;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.05);
}

.ak24-cc-banner-layout {
  display: grid;
  gap: 0.85rem 1.25rem;
  align-items: start;
}

@media (min-width: 900px) {
  .ak24-cc-banner-layout {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .ak24-cc-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 0;
  }
}

.ak24-cc-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  background: rgba(43, 162, 215, 0.1);
  flex-shrink: 0;
  color: #1e8ab8;
}

.ak24-cc-banner-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.ak24-cc-banner-copy {
  min-width: 0;
}

.ak24-cc-banner-title {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ak24-cc-banner-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.ak24-cc-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.ak24-cc-btn {
  font: inherit;
  cursor: pointer;
  border-radius: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease;
}

.ak24-cc-btn:active {
  transform: scale(0.98);
}

.ak24-cc-btn--primary {
  background: linear-gradient(135deg, #ec6408, #d55806);
  color: #fff;
  border-color: transparent;
}

.ak24-cc-btn--primary:hover {
  filter: brightness(1.05);
}

.ak24-cc-btn--outline {
  background: #fff;
  color: #0f172a;
  border-color: rgba(43, 162, 215, 0.55);
}

.ak24-cc-btn--outline:hover {
  border-color: #ec6408;
}

.ak24-cc-btn--ghost {
  background: transparent;
  color: #0f172a;
  border-color: transparent;
}

.ak24-cc-btn--ghost:hover {
  background: rgba(43, 162, 215, 0.08);
}

.ak24-cc-btn--muted {
  color: #64748b;
  font-size: 0.75rem;
}

.ak24-cc-link {
  color: #ec6408;
  font-weight: 600;
  text-decoration: none;
}

.ak24-cc-link:hover {
  text-decoration: underline;
}

.ak24-cc-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top, 0px)) max(0.75rem, env(safe-area-inset-right, 0px))
    max(0.75rem, env(safe-area-inset-bottom, 0px)) max(0.75rem, env(safe-area-inset-left, 0px));
}

@media (min-width: 640px) {
  .ak24-cc-overlay {
    align-items: center;
    padding: 1.25rem;
  }
}

.ak24-cc-modal {
  width: 100%;
  max-width: 36rem;
  max-height: min(88vh, 720px);
  overflow: auto;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  border-radius: 1.125rem;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(43, 162, 215, 0.2);
  padding: 0;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 639px) {
  .ak24-cc-modal {
    max-width: none;
    max-height: min(92vh, 720px);
    border-radius: 1.25rem 1.25rem 0 0;
    margin: 0;
  }
}

.ak24-cc-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem 1.35rem 1rem;
  border-bottom: 3px solid #2ba2d7;
  background: #fff;
  border-radius: 1.125rem 1.125rem 0 0;
}

.ak24-cc-modal-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.ak24-cc-modal-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin: -0.35rem -0.25rem -0.35rem 0;
  padding: 0;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  color: #64748b;
}

.ak24-cc-modal-close-icon {
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 300;
}

.ak24-cc-modal-close:hover {
  background: rgba(43, 162, 215, 0.12);
  color: #0f172a;
}

.ak24-cc-modal-close:focus-visible {
  outline: 2px solid #2ba2d7;
  outline-offset: 2px;
}

.ak24-cc-modal-intro {
  margin: 0;
  padding: 1rem 1.35rem 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.ak24-cc-cat-list {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1.35rem 0.5rem;
}

.ak24-cc-cat {
  padding: 0.4rem 0;
}

.ak24-cc-cat:first-child {
  padding-top: 0;
}

.ak24-cc-option {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.ak24-cc-cat-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ak24-cc-cat-name {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.ak24-cc-cat-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #64748b;
}

.ak24-cc-always {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}

.ak24-cc-switch {
  position: relative;
  flex-shrink: 0;
  width: 2.75rem;
  height: 1.5rem;
  cursor: pointer;
}

.ak24-cc-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.ak24-cc-switch-ui {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.2s ease;
}

.ak24-cc-switch-ui::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
}

.ak24-cc-switch input:checked + .ak24-cc-switch-ui {
  background: #2ba2d7;
}

.ak24-cc-switch input:checked + .ak24-cc-switch-ui::after {
  transform: translateX(1.25rem);
}

.ak24-cc-switch input:focus-visible + .ak24-cc-switch-ui {
  outline: 2px solid #2ba2d7;
  outline-offset: 2px;
}

.ak24-cc-modal-reset {
  padding: 0 1.35rem 0.75rem;
  border-top: 1px dashed #e2e8f0;
  margin-top: 0.25rem;
  padding-top: 0.85rem;
}

.ak24-cc-modal-reset-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ak24-cc-modal-reset-btn:hover {
  color: #64748b;
}

.ak24-cc-modal-reset-btn:focus-visible {
  outline: 2px solid #2ba2d7;
  outline-offset: 3px;
  border-radius: 4px;
}

.ak24-cc-modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem 1.35rem 1.35rem;
  border-top: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 0 0 1.125rem 1.125rem;
}

/* WhatsApp-FAB auf der Homepage ausblenden */
.site-home-webpage .hm-wa-fab {
  display: none !important;
}

/* Schwebender Buchungs-FAB (webpage data-booking-fab) */
.ak24-booking-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  /* über normalem Seiteninhalt/Footer, unter Cookie-Modal (.ak24-cc-overlay: 60) */
  z-index: 55;
  transition: bottom 0.25s ease;
  /* Kind-Element „Ping“ orientiert sich an der Kachelgröße des Links */
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}

/* webpage: dezenter Puls auf dem Button + Ping-Ring (data-booking-fab) */
@keyframes ak24-booking-fab-cta-breathe {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35);
  }
  50% {
    box-shadow:
      0 12px 34px rgba(220, 38, 38, 0.48),
      0 0 0 4px rgba(220, 38, 38, 0.14);
  }
}

.ak24-booking-fab__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 3.5rem;
  min-width: 3.5rem;
  padding: 0.65rem;
  border-radius: 999px;
  border: 2px solid #dc2626;
  background: linear-gradient(180deg, #fb7185 0%, #ef4444 38%, #dc2626 100%);
  color: #fff;
  text-decoration: none;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(220, 38, 38, 0.35);
  animation: ak24-booking-fab-cta-breathe 2.4s ease-in-out infinite;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

@media (min-width: 768px) {
  .ak24-booking-fab__link {
    gap: 0.65rem;
    padding: 0.65rem 1.1rem 0.65rem 0.85rem;
    min-width: unset;
  }
}

.ak24-booking-fab__link:hover {
  background: linear-gradient(180deg, #fda4af 0%, #f87171 38%, #ef4444 100%);
  transform: translateY(-2px) scale(1.04);
  filter: brightness(1.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 16px 40px rgba(220, 38, 38, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.2);
  animation: none;
}

.ak24-booking-fab__link:active {
  transform: translateY(2px) scale(0.97);
  filter: brightness(0.96);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.28) inset,
    0 4px 12px rgba(185, 28, 28, 0.35);
}

@keyframes ak24-booking-fab-icon-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.09);
  }
}

.ak24-booking-fab__link:hover .ak24-booking-fab__icon {
  animation: ak24-booking-fab-icon-pulse 1s ease-in-out infinite;
}

.ak24-booking-fab__icon {
  flex-shrink: 0;
}

.ak24-booking-fab__text {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .ak24-booking-fab__text {
    display: flex;
  }
}

.ak24-booking-fab__line1 {
  font-size: 0.875rem;
  font-weight: 700;
}

.ak24-booking-fab__line2 {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.92;
}

.ak24-booking-fab__ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  border: 2px solid rgba(220, 38, 38, 0.45);
  pointer-events: none;
  z-index: 0;
  animation: ak24-booking-fab-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@media (min-width: 768px) {
  .ak24-booking-fab__ping {
    inset: 0;
    width: auto;
    height: auto;
  }
}

/* Tailwind „animate-ping“-Näherung (webpage data-booking-fab) */
@keyframes ak24-booking-fab-ping {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ak24-booking-fab__link {
    animation: none;
  }

  .ak24-booking-fab__ping {
    animation: none;
    opacity: 0;
  }

  .ak24-booking-fab__link:hover .ak24-booking-fab__icon {
    animation: none;
  }

  .ak24-cc-btn:active {
    transform: none;
  }
}

@media (max-width: 639px) {
  .ak24-cc-banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ak24-cc-btn {
    width: 100%;
    text-align: center;
  }

  .ak24-booking-fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
  }
}

/* Partner: Kreise nebeneinander, Logos vergoldet; Hover → Originalfarben + blauer Ring */
#ak24-home-partners .ak24-partner-card__logo {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  filter: grayscale(1) brightness(1.06) sepia(0.58) saturate(1.9) hue-rotate(352deg) contrast(1.06);
  transition:
    filter 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Geräte mit echtem Hover (Maus): Farbe beim Überfahren */
@media (hover: hover) {
  #ak24-home-partners .ak24-partner-card:hover .ak24-partner-card__logo {
    filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg) contrast(1);
    transform: scale(1.07);
  }
}

#ak24-home-partners .ak24-partner-card--linked:focus-visible .ak24-partner-card__logo {
  filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg) contrast(1);
  transform: scale(1.07);
}

/* Touch: vergoldet bis Nutzung tippt (/js/partners-logo-touch.js setzt --reveal-colors) */
@media (hover: none) {
  #ak24-home-partners .ak24-partner-card--reveal-colors .ak24-partner-card__logo {
    filter: grayscale(0) brightness(1) sepia(0) saturate(1) hue-rotate(0deg) contrast(1);
    transform: scale(1.07);
  }
}

/* --- Startseite: Vertrauens-Sektion (IDs aus webpage/assets/index-DQCoKRUe.js) --- */
#ak24-home-trust-band {
  position: relative;
  isolation: isolate;
}

#ak24-home-trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
      120% 80% at 50% 0%,
      rgba(43, 162, 215, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(90% 60% at 100% 100%, rgba(236, 100, 8, 0.08) 0%, transparent 50%);
}

#ak24-home-trust-band .container > div.grid > div {
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(43, 162, 215, 0.12) !important;
}

#ak24-home-trust-band .container > div.grid > div:hover {
  box-shadow: 0 22px 50px rgba(236, 100, 8, 0.12), 0 0 0 1px rgba(236, 100, 8, 0.22) !important;
}

/* Partner-Band: mehr Weißraum, responsives Raster (2/3/4/7 – keine „6+1“-Optik) */
#ak24-home-partners {
  position: relative;
  isolation: isolate;
  padding-top: 3rem !important;
  padding-bottom: 0.5rem;
  margin-top: 0.75rem;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 252, 0.92) 0%,
    #ffffff 42%,
    #ffffff 100%
  );
}

#ak24-home-partners::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(90% 55% at 50% 0%, rgba(43, 162, 215, 0.1) 0%, transparent 58%),
    radial-gradient(70% 45% at 100% 100%, rgba(236, 100, 8, 0.06) 0%, transparent 50%);
}

@media (min-width: 768px) {
  #ak24-home-partners {
    padding-top: 4rem !important;
  }
}

#ak24-home-partners #ak24-home-partners-head {
  margin-bottom: 2.5rem !important;
}

@media (min-width: 768px) {
  #ak24-home-partners #ak24-home-partners-head {
    margin-bottom: 3.25rem !important;
  }
}

#ak24-home-partners .ak24-home-partners-grid {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  gap: 1.35rem 1.5rem;
}

@media (min-width: 640px) {
  #ak24-home-partners .ak24-home-partners-grid {
    gap: 1.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  #ak24-home-partners .ak24-home-partners-grid {
    gap: 1.65rem 2.5rem;
  }
}

#ak24-home-partners .ak24-partner-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 7.35rem;
  min-height: unset !important;
  padding: 0 !important;
  margin: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
  #ak24-home-partners .ak24-partner-card {
    width: 8.15rem;
  }
}

@media (min-width: 1024px) {
  #ak24-home-partners .ak24-partner-card {
    width: 8.85rem;
  }
}

#ak24-home-partners div.ak24-partner-card {
  cursor: default;
}

#ak24-home-partners .ak24-partner-card--linked {
  cursor: pointer;
}

@media (hover: hover) {
  #ak24-home-partners .ak24-partner-card:hover,
  #ak24-home-partners .ak24-partner-card--linked:focus-visible {
    transform: translateY(-5px);
  }
}

@media (hover: none) {
  #ak24-home-partners .ak24-partner-card--reveal-colors,
  #ak24-home-partners .ak24-partner-card--linked:focus-visible {
    transform: translateY(-5px);
  }
}

#ak24-home-partners .ak24-partner-card--linked:focus-visible {
  outline: 2px solid #2ba2d7 !important;
  outline-offset: 4px !important;
  border-radius: 0.75rem !important;
}

#ak24-home-partners .ak24-partner-card__logo-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  width: 5.85rem !important;
  height: 5.85rem !important;
  min-height: unset !important;
  margin-bottom: 0.6rem !important;
  border-radius: 50% !important;
  background: linear-gradient(165deg, #fffefb 0%, #f5ebd8 38%, #e9dcc0 100%) !important;
  box-shadow:
    0 0 0 2px rgba(201, 162, 72, 0.5),
    0 0 0 6px rgba(255, 252, 246, 0.95),
    0 12px 32px rgba(15, 23, 42, 0.09),
    inset 0 2px 3px rgba(255, 255, 255, 0.75) !important;
  transition:
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
  #ak24-home-partners .ak24-partner-card__logo-wrap {
    width: 6.6rem !important;
    height: 6.6rem !important;
    margin-bottom: 0.7rem !important;
  }
}

@media (min-width: 1024px) {
  #ak24-home-partners .ak24-partner-card__logo-wrap {
    width: 7.1rem !important;
    height: 7.1rem !important;
  }
}

@media (hover: hover) {
  #ak24-home-partners .ak24-partner-card:hover .ak24-partner-card__logo-wrap,
  #ak24-home-partners .ak24-partner-card--linked:focus-visible .ak24-partner-card__logo-wrap {
    box-shadow:
      0 0 0 2px rgba(43, 162, 215, 0.55),
      0 0 0 6px rgba(255, 255, 255, 0.98),
      0 18px 40px rgba(43, 162, 215, 0.16),
      inset 0 2px 3px rgba(255, 255, 255, 0.85) !important;
  }
}

@media (hover: none) {
  #ak24-home-partners .ak24-partner-card--reveal-colors .ak24-partner-card__logo-wrap,
  #ak24-home-partners .ak24-partner-card--linked:focus-visible .ak24-partner-card__logo-wrap {
    box-shadow:
      0 0 0 2px rgba(43, 162, 215, 0.55),
      0 0 0 6px rgba(255, 255, 255, 0.98),
      0 18px 40px rgba(43, 162, 215, 0.16),
      inset 0 2px 3px rgba(255, 255, 255, 0.85) !important;
  }
}

#ak24-home-partners .ak24-partner-card__desc {
  max-width: 10.5rem;
  margin: 0 auto;
  padding: 0 0.15rem;
  font-size: 0.7rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.01em;
  color: #64748b !important;
  text-align: center;
}

@media (min-width: 640px) {
  #ak24-home-partners .ak24-partner-card__desc {
    max-width: 11.5rem;
    font-size: 0.75rem !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #ak24-home-partners .ak24-partner-card__logo {
    transition: filter 0.2s ease;
  }

  #ak24-home-partners .ak24-partner-card:hover .ak24-partner-card__logo,
  #ak24-home-partners .ak24-partner-card--reveal-colors .ak24-partner-card__logo,
  #ak24-home-partners .ak24-partner-card--linked:focus-visible .ak24-partner-card__logo {
    transform: none;
  }

  #ak24-home-partners .ak24-partner-card,
  #ak24-home-partners .ak24-partner-card:hover,
  #ak24-home-partners .ak24-partner-card--reveal-colors,
  #ak24-home-partners .ak24-partner-card--linked:focus-visible {
    transform: none !important;
    transition: none !important;
  }

  #ak24-home-partners .ak24-partner-card__logo-wrap {
    transition: box-shadow 0.2s ease;
  }
}

/* Vier Highlights unter dem Video */
#ak24-home-post-video-highlights {
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(236, 100, 8, 0.15) !important;
}

#ak24-home-post-video-highlights .grid > div,
#ak24-home-post-video-highlights .hm-post-video-highlights__grid .hm-post-video-highlights__cell {
  min-height: 7.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#ak24-home-post-video-highlights .grid > div:hover,
#ak24-home-post-video-highlights .hm-post-video-highlights__grid .hm-post-video-highlights__cell.hm-scroll-reveal--visible:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(43, 162, 215, 0.12) !important;
  border-color: rgba(236, 100, 8, 0.45) !important;
}

#ak24-home-post-video-highlights .icon-primary {
  color: #2ba2d7 !important;
}

#ak24-home-post-video-highlights .icon-accent {
  color: #ec6408 !important;
}
