/* ───────────────────────────────────────────────────────────────────
   SGFilm — Мобильная версия (≤ 767px)
   Подключать в base.html ПОСЛЕ всех файлов design-system/*.
   Все правила обёрнуты в @media — на десктопе НИЧЕГО не меняется.
   ─────────────────────────────────────────────────────────────────── */

@media (max-width: 767px) {

  /* ════════ ТИПОГРАФИКА ════════ */
  h1, .sg-h1 {
    font-size: 28px !important;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
  }
  h2, .sg-h2 {
    font-size: 24px !important;
    line-height: 1.15;
    text-wrap: balance;
  }
  h3, .sg-h3, .sg-h4 {
    font-size: 17px !important;
    line-height: 1.2;
  }
  .sg-body-lg { font-size: 15px; line-height: 1.55; }
  .sg-meta { font-size: 11px; letter-spacing: 0.08em; }

  /* ════════ КОНТЕЙНЕРЫ ════════ */
  .sg-container { padding-left: 20px; padding-right: 20px; }
  .sg-section { padding-top: 56px; padding-bottom: 56px; }
  .sg-grid-2, .sg-grid-3, .sg-grid-4 { grid-template-columns: 1fr; gap: 16px; }

  /* ════════ ШАПКА ════════ */
  .sg-site-header { padding-top: 0; padding-bottom: 0; }
  .sg-nav {
    grid-template-columns: auto minmax(0, 1fr) auto;
    column-gap: 12px;
    height: 58px;
    min-height: 58px !important;
    align-items: center;
    justify-content: space-between;
    padding: 0;
  }
  .sg-nav__logo-image { height: 32px; }
  .sg-hidden-mobile { display: none !important; }
  .sg-hidden-desktop { display: flex; }
  .sg-nav__mobile-title {
    min-width: 0;
    font-family: "Ubuntu", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255,255,255,0.74);
    text-align: center;
    text-wrap: balance;
  }

  .sg-nav__mobile-actions {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .sg-icon-btn {
    width: 48px; height: 48px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.06);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: background 160ms ease;
    flex: 0 0 auto;
    overflow: visible;
  }
  .sg-icon-btn svg {
    width: 28px;
    height: 28px;
    display: block;
    flex: 0 0 auto;
  }
  .sg-icon-btn_phone svg {
    width: 18px;
    height: 18px;
    margin: 0 auto;
    transform: none;
    overflow: visible;
  }
  .sg-icon-btn_phone svg path {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
  }
  .sg-icon-btn:active { background: rgba(255,255,255,0.16); }

  /* ════════ DRAWER (мобильная навигация) ════════ */
  .sg-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
  }
  .sg-drawer-overlay.is-open { pointer-events: auto; }

  .sg-drawer-backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 240ms ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
  }
  .sg-drawer-overlay.is-open .sg-drawer-backdrop { opacity: 1; }

  .sg-drawer {
    position: absolute;
    top: 0; bottom: 0; right: 0;
    width: 86%;
    max-width: 380px;
    background: #0e0e0e;
    color: #fff;
    transform: translateX(102%);
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
    display: flex; flex-direction: column;
    box-shadow: -20px 0 50px rgba(0,0,0,0.35);
  }
  .sg-drawer-overlay.is-open .sg-drawer { transform: translateX(0); }

  .sg-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .sg-drawer-head img { height: 28px; }

  .sg-drawer-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
  }
  .sg-drawer-link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 22px;
    font-family: "Ubuntu", sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
  }
  .sg-drawer-link:active { background: rgba(255,255,255,0.05); }
  .sg-drawer-link.is-active { color: #ffdd2d; position: relative; }
  .sg-drawer-link.is-active::before {
    content: "";
    position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    width: 3px; height: 18px;
    background: #e97207;
    border-radius: 0 3px 3px 0;
  }
  .sg-drawer-link-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
    font-family: "Open Sans", sans-serif;
  }
  .sg-drawer-link_sub {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 42px;
    font-size: 15px;
    color: rgba(255,255,255,0.82);
  }
  .sg-drawer-foot {
    padding: 22px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.25);
  }
  .sg-drawer-contact {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
  }
  .sg-drawer-contact strong {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: "Ubuntu", sans-serif;
    margin-top: 2px;
  }
  .sg-drawer-foot .sg-button {
    width: 100%;
    margin-top: 12px;
  }

  /* ════════ HERO ════════ */
  .sg-hero,
  .sg-home-hero,
  .sg-section-hero,
  .sg-service-hero {
    min-height: 420px;
    padding: 56px 0 30px;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .sg-home-hero {
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.88) 50%, rgba(14,14,14,0.98) 100%),
      url("/static/img/hero-equipment-banner.png");
  }
  .sg-home-hero__layout,
  .sg-service-hero__layout {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    gap: 20px !important;
    min-height: 420px !important;
  }
  .sg-service-hero__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .sg-service-hero__body .sg-stack-12 {
    gap: 12px !important;
  }
  /* убрать боковой visual если был */
  .sg-service-hero__visual { display: none !important; }

  .sg-news-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
    gap: 12px !important;
    margin-top: 4px;
  }
  .sg-news-hero-actions .sg-button { width: 100%; }
  .sg-news-hero-actions .sg-button + .sg-button {
    margin-top: 12px;
  }
  .sg-news-top-actions {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 12px;
  }
  .sg-news-top-actions > .sg-button,
  .sg-news-top-actions > .sg-news-compose {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: 0;
  }
  .sg-news-compose {
    position: relative;
    display: block;
  }
  .sg-news-compose[open] {
    z-index: 16;
  }
  .sg-news-compose summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    white-space: nowrap;
  }
  .sg-news-compose__panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: calc(100vw - 40px);
    max-width: none;
    margin-top: 0;
    z-index: 15;
  }

  /* ════════ КНОПКИ ════════ */
  .sg-button {
    height: 50px;
    padding: 0 20px;
    font-size: 15px;
    border-radius: 999px;
  }
  .sg-button-sm { height: 38px; font-size: 13px; padding: 0 14px; }
  .sg-button:active { transform: scale(0.98); }

  /* ════════ КАРТОЧКИ ════════ */
  .sg-card { padding: 20px; border-radius: 20px; }
  .sg-card-dark { padding: 20px; border-radius: 20px; border-color: rgba(255,255,255,0.14); }

  /* ════════ ПРЕИМУЩЕСТВА (главная) ════════ */
  .benefits-section__grid,
  .benefits-section__grid--wide {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .benefits-card-shell--wide { grid-column: auto !important; }
  .benefits-card,
  .benefits-card--wide {
    min-height: 220px;
  }
  .benefits-card:active,
  .benefits-card--wide:active {
    transform: translateY(-2px) scale(0.995);
    box-shadow: var(--sg-card-hover-glow) !important;
  }
  .benefits-modal {
    padding: 16px;
  }
  .benefits-modal__dialog {
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    padding: 18px;
    border-radius: 24px;
  }
  .benefits-modal__content {
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
    padding-bottom: 18px;
  }
  .benefits-popup-copy {
    min-height: auto;
    padding-bottom: 10px;
  }
  .benefits-popup-copy__cta {
    width: 100%;
    justify-content: center;
  }

  /* ════════ TRUST (Почему нам доверяют) ════════ */
  .trust-section__grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .trust-section__card {
    grid-template-columns: 86px 1fr;
    gap: 16px;
    padding: 20px;
    align-items: start;
    border: 1px solid rgba(233,114,7,0.25);
  }
  .trust-section__card-graphic {
    width: 86px; height: 86px;
    border-radius: 18px;
    background: rgba(255,236,220,0.5);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(233,114,7,0.15);
  }
  .trust-section__card-graphic img {
    width: 70px; height: 70px;
    object-fit: contain;
  }
  .trust-section__card-divider { display: none; }

  /* ════════ КОМАНДА (горизонтальный скроллер) ════════ */
  .sg-home-team-grid {
    display: flex !important;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 10px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .sg-home-team-grid::-webkit-scrollbar { display: none; }
  .sg-home-team-card {
    flex: 0 0 calc(100vw - 56px);
    max-width: 336px;
    scroll-snap-align: start;
    min-height: 0;
  }
  .sg-home-team-media {
    min-height: 238px;
  }
  .sg-home-team-body {
    padding: 24px 22px 26px;
    gap: 12px;
  }
  .sg-home-team-role {
    font-size: 12px;
    line-height: 1.35;
  }
  .sg-home-team-name {
    font-size: 24px;
    line-height: 1.08;
  }
  .sg-home-team-body p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ════════ ПРОЦЕСС РАБОТЫ (5 шагов) ════════ */
  .work-process {
    padding-top: 36px;
    padding-bottom: 44px;
  }
  .work-process__container {
    gap: 22px;
  }
  .work-process__intro {
    gap: 14px;
    margin-bottom: 4px;
  }
  .work-process__title {
    font-size: 40px !important;
    line-height: 1.04;
    letter-spacing: -0.03em;
  }
  .work-process__subtitle {
    font-size: 15px;
    line-height: 1.55;
  }
  .work-process__badge {
    margin-bottom: 2px;
  }
  .work-process__accent {
    margin: 4px 0 6px;
  }
  .work-process__timeline { display: flex; flex-direction: column; gap: 14px; }
  .work-process__item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }

  /* ════════ КЛИЕНТЫ (4 карточки 2×2) ════════ */
  .clients-section__grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* ════════ НОВОСТИ (горизонтальный скроллер на главной) ════════ */
  .sg-home-news-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 34px);
    gap: 14px;
    overflow-x: auto;
    padding: 0 20px 10px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .sg-home-news-track::-webkit-scrollbar { display: none; }
  .sg-home-news-slide {
    min-width: 0;
    padding: 0;
    margin: 0;
    scroll-snap-align: start;
  }
  .sg-home-news-card {
    padding: 0 0 22px;
    overflow: hidden;
    border-radius: 32px;
  }
  .sg-home-news-cover {
    min-height: 228px;
    border-radius: 28px 28px 0 0;
  }
  .sg-home-news-cover::after {
    inset: auto 12px 12px auto;
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
  .sg-home-news-card > .sg-meta,
  .sg-home-news-card > .sg-h4,
  .sg-home-news-card > p,
  .sg-home-news-card > .sg-button {
    margin-left: 20px;
    margin-right: 20px;
  }
  .sg-home-news-card > .sg-h4 {
    font-size: 20px !important;
    line-height: 1.14;
  }
  .sg-home-news-card > p {
    font-size: 15px;
    line-height: 1.55;
  }

  /* ════════ ЛИСТИНГ НОВОСТЕЙ ════════ */
  .sg-news-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
  }
  .sg-news-card__content {
    max-width: none;
    padding: 0;
  }
  .sg-news-card__image {
    order: -1;
    display: block;
    width: 100%;
    flex: 0 0 auto;
    align-self: stretch;
    min-height: 0;
    aspect-ratio: 1.18 / 1;
    border-radius: 22px;
  }
  .sg-news-card__title {
    font-size: 24px !important;
    line-height: 1.14;
  }
  .sg-news-card__excerpt {
    font-size: 15px;
    line-height: 1.58;
  }
  .sg-news-page__search-input {
    min-height: 58px;
    background: #ffffff;
    color: #181818;
    border: 1px solid rgba(24,24,24,0.12);
  }

  /* ════════ ПЛАТФОРМЫ (Online) ════════ */
  .sg-online-platforms-track {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 20px 4px;
    margin: 0 -20px;
  }
  .sg-online-platforms-slide {
    flex: 0 0 130px;
    scroll-snap-align: start;
  }
  .sg-online-platforms-card {
    aspect-ratio: 1 / 1;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.12);
    border-radius: 16px;
    padding: 18px;
    display: flex; align-items: center; justify-content: center;
  }
  .sg-online-platforms-nav { display: none; }

  /* ════════ БАННЕРЫ ════════ */
  .banners-page .hero {
    min-height: 420px;
    padding: 56px 0 30px;
  }
  .banners-page .hero-copy { max-width: 100% !important; }
  .banners-page .btn-row { flex-direction: column; gap: 10px; }
  .banners-page .btn-row .btn { width: 100%; }
  .banners-page .section { padding: 56px 0 !important; }
  .banners-page .container { padding: 0 20px; }
  .banners-page .split,
  .banners-page .split-il,
  .banners-page .split-ir {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .banners-page .tt-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 20px 4px;
    margin: 0 -20px 16px;
    scrollbar-width: none;
  }
  .banners-page .tt-tab { flex-shrink: 0; white-space: nowrap; }
  .banners-page .tt-body { display: flex !important; flex-direction: column !important; }
  .banners-page .dg,
  .banners-page .fg {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .banners-page .steps2 {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
  .banners-page .atm-features {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
  .banners-page .atm-feat {
    background: #fef7ee !important;
    border: 1px solid rgba(233,114,7,0.18);
  }
  .banners-page .gal-slide { width: 240px; }

  /* ════════ КОНТАКТЫ ════════ */
  .sg-contact-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .sg-contact-map-card { min-height: 280px; }

  /* ════════ БИБЛИОТЕКА ════════ */
  .sg-library-hero h1 { font-size: 28px; }
  .sg-library-layout {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }
  .sg-library-sidebar {
    background: #111111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
  }
  .sg-library-mobile-toggle {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 16px;
    font-family: "Ubuntu", sans-serif;
    font-size: 15px;
    font-weight: 700;
  }
  .sg-library-mobile-toggle > span:first-child {
    flex: 1;
    min-width: 0;
    text-align: left;
  }
  .sg-library-mobile-toggle__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffdd2d;
    font-size: 13px;
    flex: 0 0 auto;
  }
  .sg-library-mobile-toggle__meta [data-library-active-count] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 221, 45, 0.14);
    color: #ffdd2d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
  }
  .sg-library-mobile-toggle__meta svg {
    width: 18px;
    height: 18px;
    transition: transform 200ms ease;
  }
  .sg-library-mobile-toggle[aria-expanded="true"] .sg-library-mobile-toggle__meta svg {
    transform: rotate(180deg);
  }
  .sg-library-sidebar__inner {
    display: none;
    padding-top: 14px;
  }
  .sg-library-sidebar__inner.is-open {
    display: block;
  }
  .sg-library-filter-group { margin-bottom: 18px; }
  .sg-library-filter-title {
    color: #fff;
    margin-bottom: 10px;
  }
  .sg-library-filter-list {
    display: flex !important;
    flex-wrap: wrap;
    gap: 6px;
  }
  .sg-library-filter-button {
    padding: 8px 14px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
  }
  .sg-library-filter-button.is-active {
    background: rgba(233,114,7,0.18);
    color: #ffdd2d;
    border-color: rgba(233,114,7,0.4);
  }
  .sg-library-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }
  .sg-library-card { padding: 0; }
  .sg-library-reset {
    width: 100%;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(233,114,7,0.35);
    background: rgba(233,114,7,0.1);
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
  }

  /* ════════ FOOTER ════════ */
  .sg-footer-grid {
    display: flex !important;
    flex-direction: column;
    gap: 22px;
  }
  .sg-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .sg-footer-nav__col {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
  }
  .sg-footer-nav a {
    font-size: 17px;
    line-height: 1.35;
  }
  .sg-footer-brand .sg-nav__logo-image { height: 30px; }
  .sg-footer-brand p {
    margin-top: 4px;
  }
  .sg-footer-contacts {
    gap: 6px;
  }
  .sg-footer-contacts p {
    margin: 0;
  }
  .sg-footer-legal-links--aside {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  /* ════════ LEAD FORM ════════ */
  .sg-form-card,
  .sg-card.sg-stack-12 {
    padding: 22px 20px;
  }
  .sg-field, .sg-textarea {
    height: 48px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 15px;
  }
  .sg-textarea { height: 110px; padding: 14px 16px; }
  .sg-lead-band .sg-grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sg-lead-band .sg-card.sg-lead-form {
    padding: 24px 20px 26px;
  }
  .sg-lead-band .sg-lead-form__submit {
    min-width: 194px;
    min-height: 50px;
  }

  /* ════════ COMPARE (Online-тесты До/После) ════════ */
  .sg-compare-stage_lectors-rebuild {
    flex-direction: column !important;
    gap: 16px;
  }
  .sg-lectors-compare-card { width: 100% !important; }
  .sg-lectors-compare-arrow {
    align-self: center;
    width: 36px; height: 36px;
    background: #e97207;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(233,114,7,0.35);
  }

  /* ════════ PROMO RIBBON ════════ */
  .sg-service-ribbon {
    background: #ffdd2d;
    color: #171717;
    padding: 12px 20px;
    text-align: center;
  }
  .sg-service-ribbon__track {
    animation: sg-service-ribbon-marquee 12s linear infinite;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
  }
  .sg-service-ribbon__track span:last-child { display: inline; }

  /* ════════ STICKY-CTA (опционально) ════════ */
  .sg-sticky-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    padding: 12px 16px calc(14px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.96) 38%, #fff 100%);
    z-index: 35;
    pointer-events: none;
  }
  .sg-sticky-cta-inner {
    display: flex;
    gap: 12px;
    width: 100%;
    background: #fff;
    border: 1px solid rgba(17,17,17,0.12);
    border-radius: 999px;
    padding: 10px 10px 10px 20px;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(17,17,17,0.12);
    pointer-events: auto;
    text-decoration: none;
    color: inherit;
  }
  .sg-sticky-cta-text {
    min-width: 0;
    font-size: 15px;
    font-weight: 600;
    flex: 1;
    line-height: 1.2;
  }
  .sg-sticky-cta-text small {
    display: block;
    font-weight: 400;
    color: #5c5c5c;
    font-size: 12px;
    margin-top: 4px;
  }
  .sg-sticky-cta .sg-button {
    flex: 0 0 auto;
    min-width: 154px;
    height: 54px;
    padding: 0 24px;
    font-size: 15px;
  }

  /* Добавляем пустое пространство снизу, чтобы sticky-CTA не перекрывал контент */
  body.has-sticky-cta { padding-bottom: 122px; }

}  /* ─── end @media (max-width: 767px) ─── */

/* ════════ ВИДИМОСТЬ-УТИЛИТЫ ════════ */
@media (min-width: 768px) {
  .sg-hidden-desktop { display: none !important; }
}
