/* =====================================================================
 * MacauGo — Ecosystem Styles
 * Today in Macau · Community Social · Smart Map · Travel Tools
 * Light surfaces + dark text, Stripe-like soft gradients (project convention)
 * ===================================================================== */

/* Navbar: Today 的高亮已移入 css/nav-v2.css（.nav-feature / .nav-live-dot），
   舊的 .nav-today-highlight 扁平連結樣式已移除，避免與 v2 分組導航衝突。 */

/* ---------------------------------------------------------------
 * TODAY IN MACAU
 * --------------------------------------------------------------- */
.today-hero {
  background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 45%, #eef2ff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  padding: 46px 0 38px;
}
.today-hero .container { display: flex; flex-direction: column; gap: 10px; }
.today-hero h1 {
  font-size: 38px; font-weight: 800; letter-spacing: -.02em;
  color: var(--c-text, #1a1a1a); margin: 0;
}
.today-hero p { color: var(--c-text-light, #5b6472); font-size: 16px; max-width: 720px; margin: 0; }
.today-datechip {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  background: #fff; border: 1px solid rgba(0, 0, 0, .08); border-radius: 999px;
  padding: 7px 16px; font-size: 13px; font-weight: 700; color: #C8553D;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}
.today-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #E11D48;
  box-shadow: 0 0 0 0 rgba(225, 29, 72, .6); animation: todayPulse 1.8s infinite;
}
@keyframes todayPulse {
  0%   { box-shadow: 0 0 0 0 rgba(225, 29, 72, .55); }
  70%  { box-shadow: 0 0 0 9px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

.today-filters { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.today-scope-row, .today-cat-row { display: flex; flex-wrap: wrap; gap: 8px; }
.today-chip {
  border: 1px solid rgba(0, 0, 0, .1); background: #fff; color: var(--c-text, #1a1a1a);
  border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 600;
  cursor: pointer; transition: all .18s ease; font-family: inherit;
}
.today-chip:hover { border-color: #C8553D; color: #C8553D; transform: translateY(-1px); }
.today-chip.active {
  background: linear-gradient(135deg, #C8553D, #E11D48); color: #fff;
  border-color: transparent; box-shadow: 0 4px 14px rgba(200, 85, 61, .28);
}
.today-cat-row .today-chip { font-size: 12.5px; padding: 6px 13px; }

.today-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px;
}
.today-card {
  background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 18px;
  overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.today-card:hover {
  transform: translateY(-5px); box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
  border-color: rgba(200, 85, 61, .3);
}
.today-card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #f1f3f6; }
.today-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.today-card:hover .today-card-img img { transform: scale(1.06); }
.today-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(255, 255, 255, .95); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 5px 12px; font-size: 11.5px; font-weight: 800;
  color: #1a1a1a; box-shadow: 0 2px 8px rgba(0, 0, 0, .14); letter-spacing: .02em;
}
.today-badge.live { background: #E11D48; color: #fff; }
.today-badge.soon { background: #F59E0B; color: #fff; }
.today-date-block {
  position: absolute; bottom: 12px; right: 12px; z-index: 2; text-align: center;
  background: rgba(255, 255, 255, .96); border-radius: 12px; padding: 6px 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
}
.today-date-block .d { font-size: 19px; font-weight: 800; color: #C8553D; line-height: 1; }
.today-date-block .m { font-size: 10.5px; font-weight: 700; color: #5b6472; text-transform: uppercase; letter-spacing: .06em; }
.today-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.today-card-cat { font-size: 11.5px; font-weight: 800; color: #C8553D; text-transform: uppercase; letter-spacing: .07em; }
.today-card-body h4 { font-size: 17px; font-weight: 750; color: var(--c-text, #1a1a1a); margin: 0; line-height: 1.35; }
.today-card-body p { font-size: 13.5px; color: var(--c-text-light, #5b6472); line-height: 1.6; margin: 0; flex: 1; }
.today-meta-row { display: flex; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: var(--c-text-light, #5b6472); margin-top: 2px; }
.today-meta-row span { display: inline-flex; align-items: center; gap: 5px; }
.today-empty { text-align: center; padding: 60px 20px; color: var(--c-text-light, #5b6472); }
.today-empty .icon { font-size: 46px; margin-bottom: 12px; }

/* Event detail modal */
.modal-overlay {
  position: fixed; inset: 0; z-index: 4000; background: rgba(15, 20, 30, .55);
  backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center;
  padding: 24px; animation: ecoFadeIn .2s ease;
}
@keyframes ecoFadeIn { from { opacity: 0 } to { opacity: 1 } }
.modal-box {
  background: #fff; border-radius: 20px; max-width: 620px; width: 100%;
  max-height: 88vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
  animation: ecoSlideUp .26s cubic-bezier(.2, .8, .3, 1);
}
@keyframes ecoSlideUp { from { transform: translateY(22px); opacity: 0 } to { transform: none; opacity: 1 } }
.modal-box-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #f1f3f6; }
.modal-box-body { padding: 22px 24px 24px; }
.modal-box-body h3 { font-size: 22px; font-weight: 800; margin: 0 0 10px; color: var(--c-text, #1a1a1a); }
.modal-box-body p { color: var(--c-text-light, #5b6472); font-size: 14.5px; line-height: 1.7; }
.modal-close-btn {
  position: absolute; top: 16px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(255, 255, 255, .94); cursor: pointer; font-size: 16px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .2); color: #1a1a1a;
}
.modal-info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px; margin: 16px 0;
}
.modal-info-item { background: #f8f9fb; border-radius: 12px; padding: 12px 14px; }
.modal-info-item .lbl { font-size: 11px; font-weight: 700; color: #8892a0; text-transform: uppercase; letter-spacing: .06em; }
.modal-info-item .val { font-size: 14px; font-weight: 650; color: var(--c-text, #1a1a1a); margin-top: 3px; }

/* ---------------------------------------------------------------
 * COMMUNITY — tabs, hashtags, media, comments
 * --------------------------------------------------------------- */
.community-view-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 14px;
  border-bottom: 1px solid rgba(0, 0, 0, .07); padding-bottom: 12px;
}
.community-view-tabs button {
  border: 1px solid rgba(0, 0, 0, .1); background: #fff; color: var(--c-text, #1a1a1a);
  border-radius: 999px; padding: 8px 16px; font-size: 13.5px; font-weight: 650;
  cursor: pointer; transition: all .18s ease; font-family: inherit;
  display: inline-flex; align-items: center; gap: 7px;
}
.community-view-tabs button:hover { border-color: #C8553D; color: #C8553D; }
.community-view-tabs button.active {
  background: linear-gradient(135deg, #C8553D, #E11D48); color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(200, 85, 61, .26);
}

.hashtag-bar {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  background: linear-gradient(135deg, #fff7ed, #fef2f2);
  border: 1px solid rgba(200, 85, 61, .18); border-radius: 14px;
  padding: 10px 14px; margin-bottom: 16px; font-size: 13.5px;
}
.hashtag-bar .ht-label { color: var(--c-text-light, #5b6472); font-weight: 600; }
.hashtag-bar .ht-value { font-weight: 800; color: #C8553D; }
.hashtag-bar .ht-clear {
  margin-left: auto; border: none; background: #fff; color: #C8553D; cursor: pointer;
  border-radius: 999px; padding: 5px 13px; font-size: 12.5px; font-weight: 700;
  border: 1px solid rgba(200, 85, 61, .28); font-family: inherit;
}
.hashtag-bar .ht-clear:hover { background: #C8553D; color: #fff; }

.hashtag-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.hashtag-cloud .ht-chip {
  background: #fff; border: 1px solid rgba(0, 0, 0, .1); border-radius: 999px;
  padding: 5px 13px; font-size: 12.5px; font-weight: 650; color: #5b6472;
  cursor: pointer; transition: all .16s ease;
}
.hashtag-cloud .ht-chip:hover { border-color: #C8553D; color: #C8553D; transform: translateY(-1px); }
.hashtag-cloud .ht-chip.active { background: #C8553D; color: #fff; border-color: transparent; }

.post-diary-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #7C3AED, #A855F7); color: #fff;
  border-radius: 999px; padding: 4px 12px; font-size: 11.5px; font-weight: 750;
  margin-bottom: 8px;
}
.post-checkin {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px;
  color: #1E6D4B; background: #ecfdf5; border: 1px solid rgba(30, 109, 75, .18);
  border-radius: 999px; padding: 4px 12px; font-weight: 650; margin-top: 8px;
}
.post-media-grid {
  display: grid; gap: 4px; border-radius: 12px; overflow: hidden; margin-top: 10px;
}
.post-media-grid.n1 { grid-template-columns: 1fr; }
.post-media-grid.n2 { grid-template-columns: 1fr 1fr; }
.post-media-grid.n3, .post-media-grid.n4 { grid-template-columns: 1fr 1fr; }
.post-media-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; background: #f1f3f6; }
.post-video-wrap { position: relative; margin-top: 10px; border-radius: 12px; overflow: hidden; background: #000; }
.post-video-wrap video { width: 100%; display: block; max-height: 420px; }
.post-video-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 10px;
  background: #111827; color: #fff; border-radius: 10px; padding: 9px 15px;
  font-size: 13px; font-weight: 650; text-decoration: none;
}
.post-card-action.faved { color: #F59E0B; }
.post-card-action.faved i { font-weight: 900; }
.btn-follow {
  margin-left: auto; border: 1px solid #C8553D; background: #fff; color: #C8553D;
  border-radius: 999px; padding: 5px 15px; font-size: 12.5px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all .16s ease; flex-shrink: 0;
}
.btn-follow:hover { background: #C8553D; color: #fff; }
.btn-follow.following { background: #C8553D; color: #fff; }

.comments-panel {
  border-top: 1px solid rgba(0, 0, 0, .07); margin-top: 12px; padding-top: 12px;
}
.comment-item { display: flex; gap: 10px; padding: 9px 0; }
.comment-avatar {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #C8553D, #E11D48); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 750; font-size: 13px;
}
.comment-body { flex: 1; min-width: 0; }
.comment-author { font-size: 13px; font-weight: 750; color: var(--c-text, #1a1a1a); }
.comment-text { font-size: 13.5px; color: var(--c-text-light, #5b6472); line-height: 1.55; margin-top: 2px; word-break: break-word; }
.comment-time { font-size: 11.5px; color: #99a1ad; margin-top: 3px; }
.comment-input-row { display: flex; gap: 8px; margin-top: 10px; }
.comment-input-row input {
  flex: 1; padding: 10px 14px; border: 1.5px solid #e5e0d8; border-radius: 999px;
  font-family: inherit; font-size: 13.5px; outline: none; background: #fff; color: var(--c-text, #1a1a1a);
}
.comment-input-row input:focus { border-color: #C8553D; }
.comment-input-row button {
  border: none; background: linear-gradient(135deg, #C8553D, #E11D48); color: #fff;
  border-radius: 999px; padding: 9px 18px; font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: inherit; white-space: nowrap;
}
.comments-empty { text-align: center; color: #99a1ad; font-size: 13px; padding: 14px 0; }

/* Create-post extras */
.photo-add-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.photo-thumb {
  position: relative; width: 74px; height: 74px; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .1); background: #f1f3f6;
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb button {
  position: absolute; top: 2px; right: 2px; width: 20px; height: 20px; border-radius: 50%;
  border: none; background: rgba(0, 0, 0, .6); color: #fff; font-size: 11px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.photo-add-btn {
  width: 74px; height: 74px; border-radius: 10px; border: 2px dashed #d6d0c6;
  background: #fafaf8; color: #8892a0; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-family: inherit;
}
.photo-add-btn:hover { border-color: #C8553D; color: #C8553D; }

/* ---------------------------------------------------------------
 * SMART MAP — side panel
 * --------------------------------------------------------------- */
.map-panel {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 22px;
  background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 18px;
  padding: 20px 22px; box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}
.map-panel-block h5 {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: #5b6472; margin: 0 0 12px; display: flex; align-items: center; gap: 7px;
}
.map-panel-block h5 i { color: #C8553D; }
.map-layer-toggle {
  display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600;
  color: var(--c-text, #1a1a1a); cursor: pointer; padding: 9px 12px;
  background: #f8f9fb; border-radius: 10px; border: 1px solid rgba(0, 0, 0, .05);
}
.map-layer-toggle:hover { background: #f1f3f6; }
.map-layer-toggle input { width: 16px; height: 16px; accent-color: #C8553D; cursor: pointer; }
.map-mini-label {
  display: block; font-size: 11.5px; font-weight: 700; color: #8892a0;
  text-transform: uppercase; letter-spacing: .05em; margin: 8px 0 4px;
}
.map-select {
  width: 100%; padding: 9px 12px; border: 1.5px solid #e5e0d8; border-radius: 10px;
  font-family: inherit; font-size: 13.5px; background: #fff; color: var(--c-text, #1a1a1a);
  outline: none; cursor: pointer;
}
.map-select:focus { border-color: #C8553D; }
.map-mode-row { display: flex; gap: 14px; margin: 12px 0 10px; flex-wrap: wrap; }
.map-mode-row label {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px;
  font-weight: 600; color: var(--c-text, #1a1a1a); cursor: pointer;
}
.map-mode-row input { accent-color: #C8553D; cursor: pointer; }
.map-btn-row { display: flex; gap: 8px; flex-wrap: wrap; }
.map-panel-btn {
  border: 1px solid rgba(0, 0, 0, .1); background: #fff; color: var(--c-text, #1a1a1a);
  border-radius: 10px; padding: 10px 16px; font-size: 13.5px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all .18s ease;
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.map-panel-btn:hover { border-color: #C8553D; color: #C8553D; transform: translateY(-1px); }
.map-panel-btn.primary {
  background: linear-gradient(135deg, #C8553D, #E11D48); color: #fff; border-color: transparent;
  box-shadow: 0 4px 14px rgba(200, 85, 61, .26); flex: 1;
}
.map-panel-btn.primary:hover { color: #fff; box-shadow: 0 7px 20px rgba(200, 85, 61, .34); }
.map-panel-btn.ghost { background: #f8f9fb; }
.map-route-status {
  margin-top: 10px; font-size: 13px; font-weight: 650; color: #1E6D4B; min-height: 18px;
}

/* ---------------------------------------------------------------
 * TRAVEL TOOLS — medical / translate / info / offline
 * --------------------------------------------------------------- */
.medical-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 14px; }
.medical-card {
  display: flex; align-items: flex-start; gap: 13px; background: #fff;
  border: 1px solid rgba(0, 0, 0, .07); border-radius: 14px; padding: 15px 16px;
  transition: all .18s ease; flex-wrap: wrap;
}
.medical-card:hover { border-color: rgba(200, 85, 61, .3); box-shadow: 0 8px 22px rgba(0, 0, 0, .08); }
.medical-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #fee2e2, #fecaca); color: #E11D48;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.medical-info { flex: 1; min-width: 160px; }
.medical-info h4 { font-size: 15px; font-weight: 750; margin: 0 0 6px; color: var(--c-text, #1a1a1a); }
.medical-meta { font-size: 12.5px; color: var(--c-text-light, #5b6472); display: flex; align-items: center; gap: 7px; margin-top: 3px; }
.medical-meta i { color: #C8553D; width: 13px; }
.medical-type {
  display: inline-block; margin-top: 8px; font-size: 11px; font-weight: 750;
  background: #eef2ff; color: #4F46E5; border-radius: 999px; padding: 3px 10px;
  text-transform: uppercase; letter-spacing: .04em;
}
.btn-nav-directions {
  background: linear-gradient(135deg, #C8553D, #E11D48); color: #fff; text-decoration: none;
  border-radius: 10px; padding: 8px 14px; font-size: 12.5px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; align-self: center;
}
.btn-nav-directions:hover { box-shadow: 0 6px 18px rgba(200, 85, 61, .3); }

.phrase-cat-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.phrase-list { display: flex; flex-direction: column; gap: 10px; }
.phrase-item {
  background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 13px;
  padding: 13px 16px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.phrase-item:hover { border-color: rgba(200, 85, 61, .28); }
.phrase-main { flex: 1; min-width: 180px; }
.phrase-en { font-size: 14px; font-weight: 700; color: var(--c-text, #1a1a1a); }
.phrase-zh { font-size: 15px; font-weight: 650; color: #C8553D; margin-top: 4px; }
.phrase-pin { font-size: 12.5px; color: var(--c-text-light, #5b6472); font-style: italic; margin-top: 2px; }
.phrase-copy {
  border: 1px solid rgba(0, 0, 0, .1); background: #f8f9fb; color: #5b6472;
  border-radius: 9px; padding: 7px 13px; font-size: 12.5px; font-weight: 650;
  cursor: pointer; font-family: inherit;
}
.phrase-copy:hover { border-color: #C8553D; color: #C8553D; }

.translate-box {
  background: #f8f9fb; border: 1px solid rgba(0, 0, 0, .06); border-radius: 14px;
  padding: 16px; margin-bottom: 18px;
}
.translate-box textarea {
  width: 100%; min-height: 92px; padding: 12px 14px; border: 1.5px solid #e5e0d8;
  border-radius: 11px; font-family: inherit; font-size: 14px; resize: vertical;
  outline: none; background: #fff; color: var(--c-text, #1a1a1a);
}
.translate-box textarea:focus { border-color: #C8553D; }
.translate-lang-row { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; flex-wrap: wrap; }
.translate-result {
  background: #fff; border: 1px solid rgba(200, 85, 61, .2); border-radius: 12px;
  padding: 14px 16px; margin-top: 12px; font-size: 15px; line-height: 1.65;
  color: var(--c-text, #1a1a1a); min-height: 24px;
}

.info-tile-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; margin-top: 16px; }
.info-tile {
  background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 14px;
  padding: 18px 18px 20px; transition: all .18s ease;
}
.info-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(0, 0, 0, .08); border-color: rgba(200, 85, 61, .28); }
.info-tile-icon { font-size: 26px; margin-bottom: 10px; }
.info-tile h4 { font-size: 15px; font-weight: 750; margin: 0 0 6px; color: var(--c-text, #1a1a1a); }
.info-tile p { font-size: 13.5px; line-height: 1.6; color: var(--c-text-light, #5b6472); margin: 0; }
.info-tip {
  margin-top: 18px; background: linear-gradient(135deg, #fff7ed, #fef2f2);
  border: 1px solid rgba(200, 85, 61, .18); border-radius: 14px; padding: 16px 18px;
}
.info-tip strong { color: #C8553D; font-size: 14px; }
.info-tip p { margin: 6px 0 0; font-size: 13.5px; line-height: 1.65; color: var(--c-text-light, #5b6472); }

.offline-status {
  background: #f8f9fb; border: 1px solid rgba(0, 0, 0, .07); border-radius: 13px;
  padding: 15px 17px; font-size: 14px; color: var(--c-text, #1a1a1a);
}
.offline-status.on { background: #ecfdf5; border-color: rgba(30, 109, 75, .22); }

.tools-card {
  background: #fff; border: 1px solid rgba(0, 0, 0, .07); border-radius: 18px;
  padding: 24px 26px; box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}
.tools-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 6px; color: var(--c-text, #1a1a1a); }

/* ---------------------------------------------------------------
 * Responsive
 * --------------------------------------------------------------- */
@media (max-width: 768px) {
  .today-hero { padding: 34px 0 28px; }
  .today-hero h1 { font-size: 27px; }
  .today-grid { grid-template-columns: 1fr; gap: 16px; }
  .map-panel { grid-template-columns: 1fr; padding: 16px 16px; gap: 14px; }
  .medical-grid, .info-tile-grid { grid-template-columns: 1fr; }
  .community-view-tabs button { font-size: 12.5px; padding: 7px 13px; }
  .modal-box { max-height: 92vh; }
  .modal-box-body { padding: 18px 18px 20px; }
  .tools-card { padding: 18px 16px; }
  .btn-nav-directions { width: 100%; justify-content: center; margin-top: 10px; }
}
