@charset "UTF-8";
/* ============================================================
   VIVANT × ENA 岐阜県恵那市ロケ地情報 特設サイト
   共通スタイル（静的第1パス／後工程でWPテーマ style.css へ移植）
   ------------------------------------------------------------
   配色（デザインPNG実測値）
     メイン赤        : #d61518
     ベース背景      : #1c1e20
     セクション明背景 : #2a2c2d（TEASER）
     フッター背景    : #333333
     本文白          : #ffffff / 補助グレー #9a9a9a
============================================================ */

:root {
  --color-red: #d61518;
  --color-bg: #1c1e20;
  --color-bg-light: #2a2c2d;
  --color-bg-footer: #333333;
  --color-white: #ffffff;
  --color-gray: #9a9a9a;
  --color-placeholder: #8c8c8c;
  --font-jp: "Noto Sans JP", sans-serif;
  /* 英字見出しの正フォントは Proxima Nova Extra Condensed（Adobe Fonts・kitコード未支給のため読み込みは未追加／Oswaldフォールバック維持） */
  --font-en: "proxima-nova-extra-condensed", "Oswald", "Noto Sans JP", sans-serif;
  --inner-width: 1080px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, li, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
a { color: inherit; text-decoration: none; }
button { appearance: none; border: none; background: none; padding: 0; font: inherit; cursor: pointer; }

body {
  font-family: var(--font-jp);
  font-weight: 400;
  line-height: 1.9;
  color: var(--color-white);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* ---------- layout ---------- */
.inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- utility ---------- */
.u-red { color: var(--color-red); }

/* ---------- 共通ボタン（白ピル・赤文字） ---------- */
.btn {
  display: inline-block;
  min-width: 220px;
  padding: 14px 40px;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
.btn:hover { opacity: 0.75; }
.btn--white {
  background: var(--color-white);
  color: var(--color-red);
}

/* ---------- 見出し（NEWS／お知らせ 型） ---------- */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 48px;
}
.section-head__title {
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--color-red);
}
.section-head__slash {
  margin: 0 6px 0 10px;
  font-weight: 400;
  color: var(--color-red);
}
.section-head__sub {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-gray);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.section-head__more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-white);
  transition: opacity 0.3s;
}
.section-head__more:hover { opacity: 0.7; }
.section-head__more-line {
  display: inline-block;
  width: 64px;
  height: 1px;
  background: var(--color-white);
}

/* ============================================================
   header / hamburger / drawer（WP化: header.php）
============================================================ */
.site-header {
  position: relative;
  z-index: 100;
}
.hamburger {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-red);
  transition: opacity 0.3s;
}
.hamburger:hover { opacity: 0.85; }
.hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
}
/* ドロワー展開中はハンバーガーを隠す（パネル内の×で閉じる） */
body.is-drawer-open .hamburger { opacity: 0; pointer-events: none; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  width: min(320px, 84vw);
  height: 100dvh;
  padding: 40px 36px;
  background: var(--color-red);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
body.is-drawer-open .drawer { transform: translateX(0); }
.drawer__title {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-white);
  margin-bottom: 20px;
}
.drawer__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.drawer__link {
  display: block;
  padding: 14px 4px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  transition: opacity 0.3s;
}
.drawer__link:hover { opacity: 0.7; }
.drawer__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
}
.drawer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--color-white);
}
.drawer__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.drawer__close span:last-child { transform: translate(-50%, -50%) rotate(-45deg); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
body.is-drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   ① KV
============================================================ */
.kv {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 72px 24px 96px;
  /* 背景はデザイン注記「公式ロゴに合わせたグラデーション」に基づくCSSグラデーション（地図は支給素材 ena-map.png を .kv__map で重ねる） */
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, #26282a 0%, var(--color-bg) 100%);
  text-align: center;
  overflow: hidden;
}
/* 地図グラフィック（支給素材 ena-map.png）:
   ピクセル実測でデザイン＝画像を「画面幅100%・右端/下端合わせ」で敷く構成
   （左側の薄い県境ラインがKV背景テクスチャを兼ねる） */
.kv__map {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  opacity: 0.95;
  pointer-events: none;
}
.kv__map-img { width: 100%; height: auto; }
.kv__inner {
  position: relative;
  z-index: 1;
  max-width: var(--inner-width);
  margin: 0 auto;
}

/* 正式ロゴ（支給素材 logo.png・中央上配置）: デザインPNGピクセル実測でVIVANT横幅=45.8% */
.kv__logo {
  display: flex;
  justify-content: center;
  line-height: 0;
}
.kv__logo-img {
  width: min(660px, 46vw);
  height: auto;
}
.kv__catch {
  margin-top: 36px;
  font-size: clamp(22px, 3.4vw, 38px);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-white);
}
.kv__catch-slash { font-weight: 400; margin: 0 0.05em; }

.kv__access {
  margin-top: clamp(48px, 10vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.kv__pin { line-height: 0; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)); }
.kv__access-btn { font-size: 14px; }

/* ============================================================
   ② STORY
============================================================ */
.story {
  padding: 96px 0 110px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 38%, transparent 38.2%),
    var(--color-bg);
}
.story__heading {
  font-family: var(--font-en);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--color-red);
  line-height: 1.2;
}
.story__slash { font-weight: 400; margin: 0 0.15em; }
.story__subtitle {
  margin-top: 8px;
  text-align: center;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-white);
}
.story__body {
  max-width: 880px;
  margin: 56px auto 0;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.04em;
}
.story__body p + p { margin-top: 2em; }
.story__body .u-red { font-weight: 500; }

/* ============================================================
   ③ NEWS（スライダー）
============================================================ */
.news {
  position: relative;
  padding: 90px 0 120px;
  background-color: var(--color-bg);
  overflow: hidden;
}
/* 背景の下向きV字（支給素材 to-background-v.png・セクション下端は overflow で自然にクリップ） */
.news::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  width: min(1440px, 100vw);
  aspect-ratio: 1600 / 1513;
  background: url(../img/to-background-v.png) center top / contain no-repeat;
  pointer-events: none;
}
.news .inner { position: relative; }

.news-slider {
  position: relative;
  padding: 0 56px;
}
.news-slider__frame {
  border: 1px solid var(--color-red);
  padding: 48px 0 40px;
  overflow: hidden;
}
.news-slider__track {
  display: flex;
  align-items: flex-end;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.news-slider__slide {
  flex: 0 0 33.3333%;
  padding: 0 20px;
}
/* 中央スライドはサムネイルを大きく（デザイン準拠の中央強調） */
.news-slider__slide .news-card__thumb { height: 220px; transition: height 0.4s; }
.news-slider__slide.is-center .news-card__thumb { height: 300px; }

.news-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--color-red);
  padding: 8px;
  transition: opacity 0.3s;
}
.news-slider__arrow:hover { opacity: 0.7; }
.news-slider__arrow--prev { left: 0; }
.news-slider__arrow--next { right: 0; }

/* ---------- お知らせカード（一覧・スライダー共通） ---------- */
.news-card__link {
  display: block;
  transition: opacity 0.3s;
}
.news-card__link:hover { opacity: 0.75; }
.news-card__thumb {
  height: 220px;
  overflow: hidden;
}
.news-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* サムネイル未支給時のプレースホルダ */
.news-card__noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9a9a9a 0%, #7d7d7d 100%);
}
.news-card__date {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-gray);
}
.news-card__title {
  margin-top: 2px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-red);
  line-height: 1.6;
}

/* ============================================================
   ④ Instagram（OFFICIAL SNSフィード）
============================================================ */
.instagram {
  padding: 0 0 110px;
  background-color: var(--color-bg);
}
.instagram__heading {
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-red);
  margin-bottom: 28px;
}
.ig-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.ig-feed__item {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #8f8f8f 0%, #6f6f6f 100%);
}
.ig-feed__item:nth-child(even) {
  background: linear-gradient(135deg, #6f6f6f 0%, #8f8f8f 100%);
}

/* ============================================================
   ⑤ MAP
============================================================ */
.map {
  padding: 40px 0 140px;
  background-color: var(--color-bg);
}
.map .section-head { margin-bottom: 24px; }
.map__comingsoon {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-red);
}

/* ============================================================
   ⑥ TEASER MOVIE
============================================================ */
.teaser {
  padding: 100px 0 110px;
  background-color: var(--color-bg-light);
}
.teaser__movie {
  max-width: 640px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
}
.teaser__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.teaser__links {
  max-width: 640px;
  margin: 56px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
/* VIVANT公式バナー（支給素材 logo_official.png） */
.teaser__banner {
  display: block;
  width: min(290px, 70vw);
  line-height: 0;
  transition: opacity 0.3s;
}
.teaser__banner:hover { opacity: 0.8; }
.teaser__banner-img {
  width: 100%;
  height: auto;
}
.official-sns { text-align: center; }
.official-sns__title {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-red);
  margin-bottom: 14px;
}
.official-sns__list {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.official-sns__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  transition: opacity 0.3s;
}
.official-sns__link:hover { opacity: 0.7; }

/* ============================================================
   footer（WP化: footer.php）
============================================================ */
.site-footer {
  padding: 64px 0 56px;
  background-color: var(--color-bg-footer);
  text-align: center;
}
.site-footer__note {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.site-footer__vivant {
  font-family: var(--font-en);
  font-weight: 700;
}
.site-footer__org {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.site-footer__office {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.site-footer__contact {
  margin-top: 28px;
  font-family: var(--font-en);
  font-size: 20px;
  min-width: 300px;
}
.site-footer__caution {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ============================================================
   サブページ共通（news.html / news-detail.html）
============================================================ */
.sub-hero {
  padding: 32px 24px 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 100%),
    var(--color-bg);
}
.sub-hero__logo-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: var(--color-red);
  transition: opacity 0.3s;
}
.sub-hero__logo-link:hover { opacity: 0.8; }
.sub-hero__logo-img {
  width: min(270px, 56vw);
  height: auto;
}
.sub-hero__catch {
  margin-top: 24px;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--color-white);
}

/* ---------- お知らせ一覧（archive） ---------- */
.news-archive {
  padding: 56px 0 110px;
}
.news-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
.news-archive__grid .news-card__thumb { height: 200px; }

/* ---------- お知らせ詳細（single） ---------- */
.news-single {
  padding: 56px 0 110px;
}
.news-single__article {
  max-width: 880px;
  margin: 0 auto;
}
.news-single__date {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-gray);
}
.news-single__title {
  margin-top: 6px;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-red);
  line-height: 1.6;
}
.news-single__content {
  margin-top: 32px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.04em;
}
.news-single__content p + p { margin-top: 1.8em; }
.news-single__figure {
  max-width: 720px;
  margin: 48px auto 0;
}
.news-single__noimg {
  height: 480px;
  background: linear-gradient(135deg, #9a9a9a 0%, #808080 100%);
}
.news-single__back {
  margin-top: 72px;
  text-align: center;
}

/* ============================================================
   レスポンシブ（SP: デザイン支給なし→自然な縦積み）
============================================================ */
@media (max-width: 900px) {
  .news-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 768px) {
  body { line-height: 1.8; }

  .section-head { margin-bottom: 32px; }
  .section-head__title { font-size: 40px; }
  .section-head__sub { font-size: 20px; }

  .btn { min-width: 200px; padding: 12px 32px; }

  /* KV */
  .kv { padding: 64px 20px 72px; }
  .kv__logo-img { width: min(420px, 84vw); }
  .kv__catch { margin-top: 24px; }
  .kv__map {
    position: static;
    width: min(300px, 70vw);
    margin: 40px auto 0;
  }

  /* STORY */
  .story { padding: 72px 0 80px; }
  .story__body { margin-top: 40px; font-size: 14px; }

  /* NEWS スライダー: 1枚表示 */
  .news { padding: 72px 0 88px; }
  .news-slider { padding: 0 40px; }
  .news-slider__frame { padding: 32px 0 28px; }
  .news-slider__slide { flex: 0 0 100%; padding: 0 16px; }
  .news-slider__slide .news-card__thumb,
  .news-slider__slide.is-center .news-card__thumb { height: 220px; }
  .news-slider__arrow svg { width: 16px; height: 30px; }

  /* Instagram: 2列 */
  .instagram { padding-bottom: 80px; }
  .instagram__heading { font-size: 32px; }
  .ig-feed { grid-template-columns: repeat(2, 1fr); }

  /* MAP */
  .map { padding: 24px 0 96px; }
  .map__comingsoon { font-size: 24px; }

  /* TEASER */
  .teaser { padding: 72px 0 80px; }
  .teaser__links {
    margin-top: 40px;
    flex-direction: column;
    justify-content: center;
  }

  /* footer */
  .site-footer { padding: 48px 0 44px; }
  .site-footer__contact { min-width: 240px; }

  /* archive / single */
  .news-archive { padding: 40px 0 80px; }
  .news-archive__grid .news-card__thumb { height: 180px; }
  .news-single { padding: 40px 0 80px; }
  .news-single__noimg { height: 260px; }
  .news-single__back { margin-top: 48px; }
}

@media (max-width: 520px) {
  .news-archive__grid { grid-template-columns: 1fr; }
  .news-archive__grid .news-card__thumb { height: 200px; }
}

/* ============================================================
   WPテーマ化 追加分（既存デザインは無改変・以下は新規UIのみ）
   - ページネーション（the_posts_pagination）
   - お知らせ空状態
   - 投稿本文（the_content）内の画像・スクリーンリーダー用テキスト
   - 本文へスキップリンク・:focus-visible フォーカスリング
============================================================ */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.news-empty {
  padding: 48px 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-gray);
}

.pagination {
  margin-top: 64px;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-gray);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: opacity 0.3s;
}
.pagination a.page-numbers:hover { opacity: 0.75; }
.pagination .page-numbers.current {
  border-color: var(--color-red);
  background: var(--color-red);
}
.pagination .page-numbers.dots {
  border: none;
  min-width: auto;
  padding: 0 2px;
}

/* the_content 内の画像（静的 .news-single__figure 相当の見せ方） */
.news-single__content img {
  display: block;
  max-width: 720px;
  width: 100%;
  height: auto;
  margin: 48px auto 0;
}
.news-single__content .wp-caption { max-width: 100%; }

/* 本文へスキップリンク（フォーカス時のみ画面内に表示） */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 16px;
}

/* キーボード操作時のフォーカスリング（ダーク背景でも視認できる白） */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   ロケ地（CPT: location）追加分
   ※デザイン未支給のため .news-card 同トーンの仮実装（後日調整前提）
   - TOP MAPセクションのカードグリッド／PDFダウンロードボタン
   - ロケ地カード（サムネ＋赤タイトル＋説明抜粋3行）
   - ロケ地詳細のアイキャッチ
------------------------------------------------------------ */

/* TOP MAPセクションのロケ地グリッド（お知らせ一覧と同じ3列） */
.map__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

/* ロケ地マップPDFダウンロード（カスタマイザー設定時のみ出力） */
.map__pdf {
  margin-top: 56px;
  text-align: center;
}

/* ロケ地カード */
.location-card__link {
  display: block;
  transition: opacity 0.3s;
}
.location-card__link:hover { opacity: 0.75; }
.location-card__thumb {
  height: 200px;
  overflow: hidden;
}
.location-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* サムネイル未登録時のプレースホルダ（.news-card__noimg と同トーン） */
.location-card__noimg {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9a9a9a 0%, #7d7d7d 100%);
}
.location-card__title {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-red);
  line-height: 1.6;
}
.location-card__excerpt {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--color-white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* ロケ地詳細（お知らせ詳細と同トーン・日付なしのためタイトル上余白を詰める） */
.location-single__title { margin-top: 0; }
.location-single__thumb {
  max-width: 720px;
  margin: 40px auto 0;
}

@media (max-width: 900px) {
  .map__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

@media (max-width: 768px) {
  .map__pdf { margin-top: 40px; }
  .location-card__thumb { height: 180px; }
}

@media (max-width: 520px) {
  .map__grid { grid-template-columns: 1fr; }
  .location-card__thumb { height: 200px; }
}
