/* FG Geo — venue cards and maps. Loaded only on pages with a venue block. */

.fg-venue-list { margin: 22px 0 30px; }
.fg-venue-list .fg-v-note { margin-top: 14px; }

.fg-venue {
  border: 1px solid var(--line, #e3e8ef);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0 0 12px;
  background: #fff;
}

.fg-v-name {
  font-size: 18px;
  margin: 0 0 6px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.fg-v-type {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--navy, #1d3557);
  background: var(--blue-soft, #eef4ff);
  border-radius: 999px;
  padding: 3px 9px;
}

.fg-v-addr    { margin: 0 0 4px; }
.fg-v-contact { margin: 0 0 4px; }
.fg-v-meta    { margin: 0 0 4px; }

/* The phone is the highest-intent element on the card — make it look tappable
   and give it a comfortable touch target on mobile. */
.fg-v-tel {
  font-weight: 650;
  white-space: nowrap;
  display: inline-block;
  padding: 2px 0;
}
.fg-v-links a { white-space: nowrap; }

.fg-v-flag {
  font-size: 13px;
  font-weight: 600;
  color: #8a5300;
  background: #fff5e0;
  border-radius: 8px;
  padding: 5px 10px;
  margin: 0 0 8px;
  display: inline-block;
}

.fg-v-map {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Once the iframe is in, it takes the full width and the buttons wrap beneath. */
.fg-v-frame {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 10px;
  display: block;
  margin-bottom: 8px;
  /* Reserve the height before load so injecting the frame does not shift
     everything below it. */
  background: var(--blue-soft, #eef4ff);
}

@media (max-width: 640px) {
  .fg-venue   { padding: 14px; }
  .fg-v-frame { height: 220px; }
  /* Full-width tap targets beat three cramped buttons on a phone. */
  .fg-v-map .btn { flex: 1 1 100%; text-align: center; }
}
