/*
 * Naše cesty – mobilní rozložení Kosmologie
 * Desktopová podoba stránky zůstává beze změny.
 */

.cosmo-mobile-labels {
  display: none;
}

@media (max-width: 768px) {
  .kosmologie-page {
    overflow-x: hidden;
  }

  .kosmologie-page .cosmo-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-right: 4px;
    padding-left: 4px;
  }

  /* Celá grafická plocha idolu. */
  .kosmologie-page .cosmo-idol-area {
    position: relative;
    width: min(100%, 760px);
    max-width: none;
    margin: 4px auto 0;
  }

  /* Mobilní SVG se chová stejně jako původní obrázek čar. */
  .kosmologie-page .cosmo-idol-lines.nc-cosmo-mobile-image,
  .kosmologie-page img.nc-cosmo-mobile-image {
    width: 100%;
    height: auto;
  }

  .kosmologie-page .cosmo-mobile-labels {
    position: absolute;
    inset: 0;
    z-index: 50;
    display: block;
    pointer-events: none;
  }

  .kosmologie-page .cosmo-mobile-label {
    position: absolute;
    right: 1.5%;
    z-index: 51;
    min-width: 66px;
    padding: 6px 10px;
    transform: translateY(-50%);
    border: 1px solid rgba(156, 31, 31, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 3px 12px rgba(70, 20, 20, 0.12);
    color: #9c1f1f;
    font: inherit;
    font-size: clamp(0.88rem, 3.8vw, 1.05rem);
    line-height: 1.1;
    text-align: center;
    cursor: pointer;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .kosmologie-page .cosmo-mobile-label:hover,
  .kosmologie-page .cosmo-mobile-label:focus-visible {
    border-color: #9c1f1f;
    outline: 2px solid rgba(156, 31, 31, 0.2);
    outline-offset: 2px;
  }

  .kosmologie-page .cosmo-mobile-label:active {
    transform: translateY(-50%) scale(0.96);
  }

  .kosmologie-page .cosmo-mobile-label.active {
    border-color: #9c1f1f;
    background: #9c1f1f;
    color: #fff;
    font-weight: 600;
  }

  /* Pozice odpovídají čtyřem liniím v mobilním SVG. */
  .kosmologie-page .cosmo-mobile-label.label-rod {
    top: 18.5%;
  }

  .kosmologie-page .cosmo-mobile-label.label-prav {
    top: 38.2%;
  }

  .kosmologie-page .cosmo-mobile-label.label-jav {
    top: 61.8%;
  }

  .kosmologie-page .cosmo-mobile-label.label-nav {
    top: 76.2%;
  }

  /* Textová část se na mobilu přesune pod grafiku. */
  .kosmologie-page .cosmo-info {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 12px auto 0 !important;
    padding: 0 10px 34px !important;
    transform: none !important;
  }

  /* Výchozí stav: žádný popis není otevřený. */
  .kosmologie-page .cosmo-text,
  .kosmologie-page .cosmo-text[data-text] {
    display: none !important;
    position: static !important;
    inset: auto !important;
    width: min(100%, 560px) !important;
    max-width: 560px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 19px 17px 21px !important;
    transform: none !important;
    visibility: visible !important;
    border: 1px solid rgba(156, 31, 31, 0.18);
    border-radius: 14px;
    background: rgba(156, 31, 31, 0.035);
    box-shadow: 0 6px 22px rgba(60, 20, 20, 0.06);
    opacity: 1 !important;
    text-align: left !important;
  }

  .kosmologie-page .cosmo-text.active,
  .kosmologie-page .cosmo-text[data-text].active {
    display: block !important;
    animation: nc-cosmo-mobile-text-in 260ms ease both;
  }

  .kosmologie-page .cosmo-text h1,
  .kosmologie-page .cosmo-text h2,
  .kosmologie-page .cosmo-text h3 {
    margin: 0 0 11px !important;
    line-height: 1.2;
    text-align: center !important;
  }

  .kosmologie-page .cosmo-text p {
    margin: 0 !important;
    font-size: clamp(1rem, 4.2vw, 1.08rem);
    line-height: 1.58;
    text-align: left !important;
  }
}

@media (max-width: 430px) {
  .kosmologie-page .cosmo-mobile-label {
    right: 0.8%;
    min-width: 60px;
    padding: 5px 8px;
  }

  .kosmologie-page .cosmo-info {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }

  .kosmologie-page .cosmo-text,
  .kosmologie-page .cosmo-text[data-text] {
    padding: 17px 15px 19px !important;
  }
}

@keyframes nc-cosmo-mobile-text-in {
  from {
    transform: translateY(8px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kosmologie-page .cosmo-mobile-label {
    transition: none;
  }

  .kosmologie-page .cosmo-text.active,
  .kosmologie-page .cosmo-text[data-text].active {
    animation: none;
  }
}
