/* =========================================================
   Fiche établissement — refonte v2 (maquette Figma Make)
   ========================================================= */

.nq-c-Place {
  --place-ink: #0D1B2A;
  --place-muted: #6B7280;
  --place-soft: #F3F4F6;
  --place-primary: #E8203A;
  --place-font: 'DM Sans', Helvetica, Arial, sans-serif;
  --place-display: 'Poppins', 'DM Sans', Helvetica, Arial, sans-serif;
  font-family: var(--place-font);
  color: var(--place-ink);
  background: #fff;
}

.nq-c-Place-backMobile {
  display: none;
  padding: 16px 16px 8px;
  background: #fff;
}
.nq-c-Place-backBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 8px 12px;
  transition: background .15s ease, transform .1s ease;
}
.nq-c-Place-backBtn--light {
  background: var(--place-soft);
  color: var(--place-ink);
}
.nq-c-Place-backBtn--dark {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}
.nq-c-Place-backBtn--desktop {
  display: inline-flex;
}
.nq-c-Place-noGallery {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

/* ---- Gallery ---- */
.nq-c-PlaceGallery {
  background: #fff;
  overflow: hidden;
}
.nq-c-PlaceGallery-inner {
  position: relative;
  padding: 6px;
}
.nq-c-PlaceGallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  pointer-events: none;
}
.nq-c-PlaceGallery-overlay .nq-c-Place-backBtn {
  pointer-events: auto;
}

.nq-c-PlaceGallery-mobile {
  display: none;
}
.nq-c-PlaceGallery-mobileTrack {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  height: clamp(240px, 62vw, 400px);
}
.nq-c-PlaceGallery-mobileTrack::-webkit-scrollbar {
  display: none;
}
.nq-c-PlaceGallery-mobileSlide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  border: 0;
  padding: 0;
  margin: 0;
  background: #111;
  cursor: pointer;
  overflow: hidden;
}
.nq-c-PlaceGallery-mobileSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nq-c-PlaceGallery-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.nq-c-PlaceGallery-desktop {
  display: flex;
  gap: 6px;
}
.nq-c-PlaceGallery-main {
  position: relative;
  width: 50%;
  flex-shrink: 0;
  height: clamp(220px, 34vw, 480px);
  border: 0;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}
.nq-c-PlaceGallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.nq-c-PlaceGallery-main:hover img {
  transform: scale(1.02);
}
.nq-c-PlaceGallery-grid {
  width: 50%;
  display: grid;
  gap: 6px;
  height: clamp(220px, 34vw, 480px);
  min-width: 0;
}
.nq-c-PlaceGallery-thumb {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  min-height: 0;
}
.nq-c-PlaceGallery-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.nq-c-PlaceGallery-thumb:hover img {
  transform: scale(1.04);
}
.nq-c-PlaceGallery-allBtn {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 12px;
  background: #fff;
  color: var(--place-ink);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

/* 1 photo : pleine largeur */
.nq-c-PlaceGallery-desktop--count1 .nq-c-PlaceGallery-main {
  width: 100%;
}

/* 2 photos : 50 / 50 */
.nq-c-PlaceGallery-desktop--count2 .nq-c-PlaceGallery-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* 3 photos : principale + 2 empilées */
.nq-c-PlaceGallery-desktop--count3 .nq-c-PlaceGallery-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
}

/* 4 photos : principale + 3 empilées */
.nq-c-PlaceGallery-desktop--count4 .nq-c-PlaceGallery-grid {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

/* 5+ photos : principale + grille 2×2 */
.nq-c-PlaceGallery-desktop--count5 .nq-c-PlaceGallery-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* ---- Body grid ---- */
.nq-c-Place-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nq-c-Place-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 48px 0;
}
@media (min-width: 1024px) {
  .nq-c-Place-grid {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
  }
}

.nq-c-Place-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.nq-c-Place-catBadge {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  overflow: hidden;
}
.nq-c-Place-catBadge svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
.nq-c-Place-catBadge svg path,
.nq-c-Place-catBadge svg circle {
  fill: #fff !important;
  stroke: #fff !important;
}
.nq-c-Place-catLabel {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--place-primary);
}
.nq-c-Place-title {
  font-family: var(--place-display);
  font-weight: 900;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
  color: var(--place-ink);
  margin: 0 0 8px;
}
.nq-c-Place-meta {
  font-size: 16px;
  color: var(--place-muted);
  margin: 0 0 40px;
}
.nq-c-Place-meta a {
  color: inherit;
  text-decoration: none;
}
.nq-c-Place-meta a:hover {
  color: var(--place-primary);
  text-decoration: underline;
}
.nq-c-Place-sectionTitle {
  font-family: var(--place-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--place-ink);
  margin: 0 0 16px;
}
.nq-c-Place-about {
  font-size: 16px;
  line-height: 1.85;
  color: #4B5563;
}
.nq-c-Place-about p {
  margin: 0 0 1em;
}
.nq-c-Place-about p:last-child {
  margin-bottom: 0;
}

/* ---- Aside cards ---- */
.nq-c-Place-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nq-c-PlaceCardInfo {
  padding: 24px;
  border-radius: 24px;
  background: #F8F9FA;
  border: 1px solid #F3F4F6;
}
.nq-c-PlaceCardInfo-label {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.nq-c-PlaceCardInfo-sub {
  margin: 16px 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--place-ink);
}
.nq-c-PlaceCardInfo-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nq-c-PlaceCardInfo-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.nq-c-PlaceCardInfo-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.nq-c-PlaceCardInfo-k {
  margin: 0 0 2px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.nq-c-PlaceCardInfo-v {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--place-ink);
}
.nq-c-PlaceCardInfo-vLink {
  font-size: 14px;
  font-weight: 600;
  color: var(--place-ink);
  word-break: break-all;
}
.nq-c-PlaceCardInfo-phoneBtn {
  border: 0;
  background: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--place-primary);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.nq-c-PlaceCardInfo-phoneBtn:hover {
  text-decoration: underline;
}

.nq-c-Place-dirBtns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nq-c-Place-dirBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: filter .15s ease, box-shadow .15s ease;
}
.nq-c-Place-dirBtn:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  color: #fff;
}
.nq-c-Place-dirBtn--gmaps {
  background: #4285F4;
}
.nq-c-Place-dirBtn--waze {
  background: #06C8EB;
}

.nq-c-Place-hoursStatus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--place-soft);
  color: var(--place-ink);
}
.nq-c-Place-hoursStatus.hour-is-open {
  background: #ECFDF5;
  color: #059669;
}
.nq-c-Place-hoursStatus.hour-is-closed {
  background: #FEF2F2;
  color: #DC2626;
}
.nq-c-Place-hoursStatus:empty {
  display: none;
}
.nq-c-Place-hoursList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nq-c-Place-hoursItem {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.nq-c-Place-hoursItem:last-child {
  border-bottom: 0;
}
.nq-c-Place-hoursList--grouped .nq-c-Place-hoursDay {
  text-transform: none;
  font-weight: 700;
  min-width: 7.5em;
}
.nq-c-Place-hoursList--grouped .nq-c-Place-hoursVal {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: normal;
}
.nq-c-Place-hoursDay {
  color: var(--place-muted);
  font-weight: 500;
}
.nq-c-Place-hoursVal {
  color: var(--place-ink);
  font-weight: 600;
  text-align: right;
}
.nq-c-Place-hoursText {
  font-size: 14px;
  color: #4B5563;
  line-height: 1.7;
}

.nq-c-Place-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nq-c-Place-socialBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid #fff;
}
.nq-c-Place-socialBtn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.nq-c-Place-socialBtn svg,
.nq-c-Place-socialBtn svg path,
.nq-c-Place-socialBtn svg .cls-1 {
  fill: currentColor !important;
}
.nq-c-Place-socialBtn--fb {
  background: #E8F0FE;
  color: #0D1B2A;
}
.nq-c-Place-socialBtn--ig {
  background: #FCE4EC;
  color: #0D1B2A;
}
.nq-c-Place-socialBtn--web {
  background: #F0FDF4;
  color: #0D1B2A;
}

.nq-c-Place-files {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nq-c-Place-fileLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #E5E7EB;
  color: var(--place-ink);
  text-decoration: none;
  font-size: 14px;
}
.nq-c-Place-fileLink:hover {
  border-color: var(--place-primary);
}
.nq-c-Place-fileLink svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- Localisation ---- */
.nq-c-PlaceLoc {
  position: relative;
  margin: 48px 0;
  padding: 64px 24px;
  background: #0D1B2A;
  color: #fff;
  /* pas d'overflow:hidden ici : peut gêner les contrôles Maps */
  overflow: visible;
}
.nq-c-PlaceLoc-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 1024px) {
  .nq-c-PlaceLoc-inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
  }
}
.nq-c-PlaceLoc-eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.nq-c-PlaceLoc-title {
  font-family: var(--place-display);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 12px;
  color: #fff;
}
.nq-c-PlaceLoc-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 28px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}
.nq-c-PlaceLoc-address svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.nq-c-PlaceLoc-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.nq-c-PlaceLoc-extra {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nq-c-PlaceLoc-extraTitle {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}
.nq-c-PlaceLoc-extraBody {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}
.nq-c-PlaceLoc-mapWrap {
  position: relative;
  z-index: 3;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  background: #F3F4F6;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  isolation: isolate;
}
.nq-c-PlaceLoc-map,
.nq-c-Place #single-place-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  min-height: 300px;
}
/* Canvas Maps : pas de pointer-events forcés sur .gm-style
   (ça casse le drag/zoom interne de Google Maps) */
.nq-c-PlaceLoc-mapCanvas {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  position: relative;
  z-index: 1;
}
.nq-c-PlaceLoc-map .nq-c-MapSingle-map-loading,
.nq-c-PlaceLoc-map [data-place-map-loading] {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  animation: none;
  background: #0D1B2A;
  pointer-events: none !important;
}
.nq-c-PlaceLoc-map.is-ready .nq-c-MapSingle-map-loading,
.nq-c-PlaceLoc-map.is-ready [data-place-map-loading],
.nq-c-PlaceLoc-map.is-ready .nq-c-MapSingle-map-loading::after,
.nq-c-PlaceLoc-map.is-ready [data-place-map-loading]::after {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.nq-c-PlaceLoc-map .nq-c-MapSingle-map-loading::after,
.nq-c-PlaceLoc-map [data-place-map-loading]::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #E8203A;
  border-radius: 50%;
  animation: place-map-spin 0.8s linear infinite;
  pointer-events: none !important;
}
@keyframes place-map-spin {
  to { transform: rotate(360deg); }
}

/* ---- Nearby — réutilise le carrousel listingPosts home ---- */
.nq-c-PlaceNearby {
  margin-top: 8px;
  padding: 0 0 48px;
  border-top: 1px solid #F3F4F6;
}
.nq-c-PlaceNearby .nq-c-listingPosts--home {
  width: 100% !important;
}
.nq-c-PlaceNearby .nq-c-listingPosts--home .nq-c-listingPosts-line {
  padding-top: 40px !important;
  padding-bottom: 8px !important;
  background: transparent !important;
}
.nq-c-PlaceNearby .nq-c-listingPosts--home .nq-c-listingPosts-header {
  margin-bottom: 24px;
  min-height: 0;
}

/* ---- Phone popup ---- */
.nq-c-PlacePhone {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 16px 24px;
}
@media (min-width: 640px) {
  .nq-c-PlacePhone {
    align-items: center;
    padding: 24px;
  }
}
.nq-c-PlacePhone[hidden] {
  display: none !important;
}
.nq-c-PlacePhone-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
}
.nq-c-PlacePhone-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}
.nq-c-PlacePhone-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #F3F4F6;
}
.nq-c-PlacePhone-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.nq-c-PlacePhone-title {
  margin: 0;
  font-family: var(--place-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--place-ink);
}
.nq-c-PlacePhone-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--place-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nq-c-PlacePhone-close:hover {
  background: var(--place-soft);
}
.nq-c-PlacePhone-hours {
  padding: 16px 24px;
  border-bottom: 1px solid #F3F4F6;
}
.nq-c-PlacePhone-body {
  padding: 20px 24px 24px;
}
.nq-c-PlacePhone-k {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
}
.nq-c-PlacePhone-num {
  margin: 0;
  font-family: var(--place-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--place-ink);
  user-select: all;
}
.nq-c-PlacePhone-call {
  display: none;
  margin-top: 16px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 16px;
  border-radius: 16px;
  background: var(--place-primary);
  color: #fff;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
}
@media (max-width: 639px) {
  .nq-c-PlacePhone-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}

/* ---- Lightbox ---- */
.nq-c-PlaceLightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nq-c-PlaceLightbox[hidden] {
  display: none !important;
}
.nq-c-PlaceLightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nq-c-PlaceLightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.nq-c-PlaceLightbox-prev,
.nq-c-PlaceLightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 80px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
@media (min-width: 640px) {
  .nq-c-PlaceLightbox-prev,
  .nq-c-PlaceLightbox-next {
    display: inline-flex;
  }
}
.nq-c-PlaceLightbox-prev {
  left: 20px;
}
.nq-c-PlaceLightbox-next {
  right: 20px;
}
.nq-c-PlaceLightbox-stage {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nq-c-PlaceLightbox-stage img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.nq-c-PlaceLightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
  .nq-c-Place-backMobile {
    display: block;
  }
  .nq-c-Place-backBtn--desktop {
    display: none !important;
  }
  .nq-c-PlaceGallery-desktop {
    display: none;
  }
  .nq-c-PlaceGallery-mobile {
    display: block;
    position: relative;
  }
  .nq-c-PlaceGallery-overlay {
    display: none;
  }
  .nq-c-Place-body {
    padding: 0 16px;
  }
  .nq-c-Place-grid {
    padding: 32px 0;
    gap: 32px;
  }
  .nq-c-PlaceLoc {
    margin: 32px 0;
    padding: 40px 16px;
  }
}

body.nq-c-Place-lock {
  overflow: hidden;
}
