/* v21 mobile cases toggle: pill + arrow */
@media (max-width: 768px) {
  .cloudcrewCasesToggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 14px auto 30px !important;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(17,17,17,.08);
    background: rgba(255,255,255,.92);
    color: #111;
    font-family: Hauora, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
  }

  .cloudcrewCasesToggle:hover,
  .cloudcrewCasesToggle:active {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
  }

  .cloudcrewCasesToggle:focus-visible {
    outline: 2px solid #ffb400;
    outline-offset: 2px;
  }

  .cloudcrewCasesToggle__label {
    display: inline-block;
  }

  .cloudcrewCasesToggle__count {
    font-size: 0.88em;
    opacity: .32;
    position: relative;
    top: -0.32em;
  }

  .cloudcrewCasesToggle__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #ffb400;
    color: #111;
    flex: 0 0 26px;
    transition: transform .22s ease;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(255,180,0,.28);
  }

  .cloudcrewCasesToggle[aria-expanded="true"] .cloudcrewCasesToggle__icon {
    transform: rotate(180deg);
  }

  .cloudcrewCasesToggle[hidden] {
    display: none !important;
  }

  .cloudcrewCasesCollapsed .latestWorksMobileBlock:nth-of-type(n+2) {
    display: none !important;
  }

  .cloudcrewCasesCollapsed .latestWorksMobileBlock:first-of-type {
    display: block !important;
  }

  html[data-theme="dark"] .cloudcrewCasesToggle,
  body.theme-dark .cloudcrewCasesToggle {
    background: rgba(11,17,24,.92);
    color: #fff;
    border-color: rgba(255,255,255,.10);
    box-shadow: 0 12px 30px rgba(0,0,0,.24);
  }

  html[data-theme="dark"] .cloudcrewCasesToggle__count,
  body.theme-dark .cloudcrewCasesToggle__count {
    color: rgba(255,255,255,.7);
  }

  html[data-theme="dark"] .cloudcrewCasesToggle__icon,
  body.theme-dark .cloudcrewCasesToggle__icon {
    background: #ffb400;
    color: #111;
  }
}


/* v24: remove duplicate native cases text on mobile */
@media (max-width: 768px) {
  .latestWorksMore[data-v-170a754a] {
    display: none !important;
  }

  .cloudcrewCasesToggle__count {
    display: none !important;
  }
}
