/*
Theme Name: Custom Website Theme Map Pinned
Theme URI: 
Author: Website Admin
Author URI: 
Description: Fully editable responsive WordPress theme with replaceable logos, customizable homepage sections, menus, buttons, ministries, contact page, and editable Arizona map pins.
Version: 1.2.1
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: custom-website-theme-map-pinned
Tags: custom-logo, custom-menu, custom-colors, featured-images, one-column, two-columns, block-styles, customizer
*/

:root {
  --cfcsite-primary: #862434;
  --cfcsite-secondary: #143d74;
  --cfcsite-accent: #e0af36;
  --cfcsite-ink: #172033;
  --cfcsite-muted: #667085;
  --cfcsite-line: #e8e3da;
  --cfcsite-bg: #fffaf2;
  --cfcsite-surface: #ffffff;
  --cfcsite-soft: #f7efe2;
  --cfcsite-radius: 24px;
  --cfcsite-shadow: 0 22px 60px rgba(23, 32, 51, 0.12);
  --cfcsite-container: min(1180px, calc(100% - 40px));
  --cfcsite-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--cfcsite-font);
  color: var(--cfcsite-ink);
  background: var(--cfcsite-bg);
  line-height: 1.6;
}
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
a { color: var(--cfcsite-primary); text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--cfcsite-secondary); }
img { max-width: 100%; height: auto; display: block; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.skip-link:focus {
  clip: auto !important; clip-path: none; height: auto; width: auto; top: 10px; left: 10px; z-index: 100000; padding: 10px 14px; background: #fff; color: #000; border-radius: 10px;
}
.site-wrap { overflow: clip; }
.container { width: var(--cfcsite-container); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(134, 36, 52, 0.1);
}
.topline {
  background: linear-gradient(90deg, var(--cfcsite-primary), var(--cfcsite-secondary));
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.topline .container { display: flex; justify-content: center; padding: 7px 20px; text-align: center; }
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 78px;
}
.site-branding { display: flex; align-items: center; gap: 13px; min-width: 0; }
.custom-logo-link img { width: auto; max-height: 58px; }
.brand-mark {
  width: 54px; height: 54px; border-radius: 18px;
  display: inline-grid; place-items: center;
  background: radial-gradient(circle at 30% 20%, #fff4d2, var(--cfcsite-accent));
  color: var(--cfcsite-primary); font-weight: 900; box-shadow: 0 10px 28px rgba(134,36,52,.18);
}
.site-title { margin: 0; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.1; font-weight: 900; letter-spacing: -0.02em; }
.site-title a { color: var(--cfcsite-ink); text-decoration: none; }
.site-description { margin: 4px 0 0; color: var(--cfcsite-muted); font-size: 0.9rem; }
.main-navigation { justify-self: end; }
.main-navigation ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.main-navigation a { color: var(--cfcsite-ink); text-decoration: none; font-weight: 700; padding: 10px 12px; border-radius: 999px; display: inline-flex; }
.main-navigation a:hover, .main-navigation .current-menu-item > a { background: var(--cfcsite-soft); color: var(--cfcsite-primary); }
.menu-toggle { display: none; border: 0; background: var(--cfcsite-primary); color: #fff; border-radius: 999px; padding: 11px 16px; font-weight: 800; }
.header-cta { display: flex; gap: 10px; align-items: center; }

/* Buttons */
.cfcsite-button, .wp-block-button__link, input[type="submit"], button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 19px;
  border-radius: 999px;
  background: var(--cfcsite-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  border: 2px solid var(--cfcsite-primary);
  box-shadow: 0 14px 34px rgba(134, 36, 52, 0.20);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  cursor: pointer;
}
.cfcsite-button:hover, .wp-block-button__link:hover, input[type="submit"]:hover, button[type="submit"]:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(134, 36, 52, 0.26);
}
.cfcsite-button.secondary {
  background: transparent;
  color: var(--cfcsite-primary);
  border-color: rgba(134, 36, 52, 0.25);
  box-shadow: none;
}
.cfcsite-button.secondary:hover { background: var(--cfcsite-soft); color: var(--cfcsite-primary); }
.cfcsite-button.gold { background: var(--cfcsite-accent); border-color: var(--cfcsite-accent); color: #2a1b08; box-shadow: 0 14px 34px rgba(224,175,54,.24); }

/* Sections */
.section { padding: clamp(56px, 7vw, 92px) 0; }
.section.compact { padding: clamp(36px, 5vw, 62px) 0; }
.section-kicker { color: var(--cfcsite-primary); text-transform: uppercase; letter-spacing: .14em; font-weight: 900; font-size: .82rem; margin: 0 0 10px; }
.section-heading { margin: 0; font-size: clamp(2rem, 4.5vw, 3.7rem); line-height: 1.02; letter-spacing: -.05em; }
.section-lead { margin: 18px 0 0; color: var(--cfcsite-muted); font-size: clamp(1.02rem, 2vw, 1.22rem); max-width: 760px; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-head.center { text-align: center; display: block; }
.section-head.center .section-lead { margin-inline: auto; }

/* Hero */
.hero {
  position: relative;
  padding: clamp(58px, 8vw, 112px) 0 clamp(54px, 7vw, 100px);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 15%, rgba(224, 175, 54, .32), transparent 32%),
    radial-gradient(circle at 90% 22%, rgba(20, 61, 116, .16), transparent 30%),
    linear-gradient(180deg, #fffaf2 0%, #f8efe2 100%);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr); gap: clamp(34px, 6vw, 82px); align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px; color: var(--cfcsite-primary); background: rgba(134,36,52,.08); font-weight: 900; margin-bottom: 18px; }
.hero-badge::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--cfcsite-accent); box-shadow: 0 0 0 6px rgba(224,175,54,.2); }
.hero h1 { margin: 0; font-size: clamp(2.85rem, 7vw, 6.2rem); line-height: .92; letter-spacing: -.07em; max-width: 880px; }
.hero-text { margin: 22px 0 0; font-size: clamp(1.09rem, 2vw, 1.34rem); color: #4b5565; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  min-height: 480px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.93), rgba(255,255,255,.72));
  border: 1px solid rgba(134, 36, 52, .12);
  box-shadow: var(--cfcsite-shadow);
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(224,175,54,.22);
}
.hero-card-logo {
  width: 110px; height: 110px; border-radius: 32px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--cfcsite-primary), var(--cfcsite-secondary)); color: #fff; font-size: 2.2rem; font-weight: 900;
  margin-bottom: 24px;
}
.hero-card h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -.04em; }
.hero-card p { color: var(--cfcsite-muted); margin: 12px 0 24px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; position: relative; z-index: 1; }
.hero-stat { border: 1px solid var(--cfcsite-line); background: rgba(255,255,255,.72); border-radius: 18px; padding: 18px 12px; text-align: center; font-weight: 900; }
.hero-stat span { display: block; font-size: .8rem; color: var(--cfcsite-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 5px; }

/* Cards and grids */
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.six { grid-template-columns: repeat(3, 1fr); }
.cfcsite-card {
  position: relative;
  background: var(--cfcsite-surface);
  border: 1px solid var(--cfcsite-line);
  border-radius: var(--cfcsite-radius);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(23, 32, 51, .05);
  overflow: hidden;
}
.cfcsite-card:hover { transform: translateY(-2px); transition: transform .18s ease; }
.cfcsite-icon {
  width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--cfcsite-soft); color: var(--cfcsite-primary); font-weight: 950; font-size: 1.2rem;
}
.cfcsite-card h3 { margin: 0 0 10px; font-size: 1.26rem; letter-spacing: -.02em; }
.cfcsite-card p { margin: 0 0 18px; color: var(--cfcsite-muted); }
.cfcsite-card .text-link { font-weight: 900; text-decoration: none; }

.about-band { background: var(--cfcsite-surface); border-block: 1px solid var(--cfcsite-line); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.scripture-box { background: linear-gradient(135deg, var(--cfcsite-primary), #5d1522); color: #fff; padding: 34px; border-radius: 32px; box-shadow: var(--cfcsite-shadow); }
.scripture-box h2 { margin: 0 0 12px; font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1; letter-spacing: -.05em; }
.scripture-box p { margin: 0; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.mission-card { border-top: 5px solid var(--cfcsite-accent); }

.ministry-section { background: linear-gradient(180deg, #fffaf2 0%, #fff 100%); }
.ministry-card { min-height: 245px; }
.ministry-card::before { content: ""; position: absolute; inset: auto -35px -45px auto; width: 130px; height: 130px; border-radius: 50%; background: rgba(20, 61, 116, .07); }
.ministry-card:nth-child(2n)::before { background: rgba(134,36,52,.08); }
.ministry-card .badge { display: inline-flex; margin-bottom: 15px; font-weight: 950; color: #fff; background: var(--cfcsite-secondary); border-radius: 999px; width: 44px; height: 44px; align-items: center; justify-content: center; }
.ministry-card:nth-child(2n) .badge { background: var(--cfcsite-primary); }

.attend-panel, .give-panel, .contact-panel {
  border-radius: 34px;
  padding: clamp(30px, 6vw, 56px);
  background: linear-gradient(135deg, var(--cfcsite-secondary), #071b36);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  box-shadow: var(--cfcsite-shadow);
}
.attend-panel p, .give-panel p, .contact-panel p { color: rgba(255,255,255,.78); margin: 12px 0 0; }
.attend-panel h2, .give-panel h2, .contact-panel h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -.05em; }

.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { background: #fff; border: 1px solid var(--cfcsite-line); border-radius: var(--cfcsite-radius); overflow: hidden; box-shadow: 0 12px 34px rgba(23,32,51,.05); }
.post-card .post-thumb { aspect-ratio: 16/10; background: var(--cfcsite-soft); display: grid; place-items: center; color: var(--cfcsite-primary); font-weight: 900; font-size: 2rem; }
.post-card-content { padding: 22px; }
.post-card time { color: var(--cfcsite-muted); font-size: .88rem; font-weight: 800; }
.post-card h3 { margin: 8px 0 10px; line-height: 1.2; }
.post-card h3 a { color: var(--cfcsite-ink); text-decoration: none; }
.post-card p { color: var(--cfcsite-muted); margin: 0; }

/* Pages */
.page-hero { padding: clamp(48px, 7vw, 86px) 0; background: linear-gradient(180deg, #fff7eb, #fffaf2); border-bottom: 1px solid var(--cfcsite-line); }
.page-hero h1 { margin: 0; font-size: clamp(2.4rem, 6vw, 5rem); line-height: .96; letter-spacing: -.06em; }
.page-hero p { max-width: 780px; color: var(--cfcsite-muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.content-area { padding: 54px 0; }
.entry-content { max-width: 880px; }
.entry-content > *:first-child { margin-top: 0; }
.entry-content h2, .entry-content h3 { letter-spacing: -.03em; line-height: 1.12; }
.entry-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.entry-meta, .entry-footer { color: var(--cfcsite-muted); font-size: .95rem; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.contact-info-list { display: grid; gap: 14px; }
.contact-info-item { background: #fff; border: 1px solid var(--cfcsite-line); border-radius: 20px; padding: 18px; }
.contact-info-item strong { display: block; color: var(--cfcsite-primary); margin-bottom: 3px; }
.contact-form-wrap { background: #fff; border: 1px solid var(--cfcsite-line); border-radius: 28px; padding: clamp(22px, 4vw, 34px); box-shadow: 0 12px 34px rgba(23, 32, 51, .05); }
.contact-form-wrap input, .contact-form-wrap textarea, .contact-form-wrap select {
  width: 100%; min-height: 44px; border: 1px solid #d6dbe4; border-radius: 12px; padding: 12px; font: inherit; margin-bottom: 12px;
}
.contact-form-wrap textarea { min-height: 140px; }

/* Footer */
.site-footer { background: #111827; color: #fff; padding: 58px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 34px; }
.footer-brand h2 { margin: 0 0 10px; letter-spacing: -.03em; }
.footer-brand p { color: rgba(255,255,255,.7); margin: 0 0 18px; max-width: 400px; }
.footer-title { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; }
.footer-menu { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-menu a, .site-footer a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-menu a:hover, .site-footer a:hover { color: #fff; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; display: inline-grid; place-items: center; background: rgba(255,255,255,.1); color: #fff; font-weight: 900; text-transform: uppercase; }
.site-info { border-top: 1px solid rgba(255,255,255,.12); margin-top: 38px; padding-top: 22px; color: rgba(255,255,255,.62); font-size: .92rem; display: flex; justify-content: space-between; gap: 15px; flex-wrap: wrap; }

/* Forms / comments */
button, input, select, textarea { font-family: inherit; }
.comment-list { padding-left: 20px; }
.comment-form input:not([type="checkbox"]):not([type="submit"]), .comment-form textarea, .search-form input[type="search"] {
  width: 100%; max-width: 560px; border: 1px solid #d6dbe4; border-radius: 12px; padding: 12px; font: inherit;
}
.search-form { display: flex; gap: 10px; flex-wrap: wrap; }

/* WordPress alignments */
.alignwide { max-width: 1180px; margin-left: auto; margin-right: auto; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--cfcsite-muted); font-size: .9rem; }
.gallery { display: grid; gap: 10px; }
.bypostauthor { outline: 0; }

@media (max-width: 980px) {
  .header-main { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-navigation { grid-column: 1 / -1; justify-self: stretch; display: none; }
  .main-navigation.toggled { display: block; }
  .main-navigation ul { display: grid; gap: 4px; padding-bottom: 16px; }
  .main-navigation a { border-radius: 14px; padding: 12px; background: rgba(255,255,255,.6); }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; }
  .card-grid.three, .card-grid.four, .card-grid.six, .post-grid { grid-template-columns: repeat(2, 1fr); }
  .attend-panel, .give-panel, .contact-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-description { display: none; }
  .hero-stats, .card-grid.three, .card-grid.four, .card-grid.six, .post-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { display: grid; }
  .cfcsite-button { width: 100%; }
  .site-info { display: block; }
  .section-head { display: block; }
}

/* Replaceable logo and icon support */
.site-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.brand-mark.has-image,
.hero-card-logo.has-image,
.cfcsite-icon.has-image,
.ministry-card .badge.has-image,
.post-placeholder-logo.has-image {
  background: #fff;
  color: inherit;
  overflow: hidden;
  padding: 8px;
}
.brand-mark.has-image img,
.hero-card-logo.has-image img,
.cfcsite-icon.has-image img,
.ministry-card .badge.has-image img,
.post-placeholder-logo.has-image img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ministry-card .badge.has-image { width: 68px; height: 68px; border-radius: 22px; border: 1px solid var(--cfcsite-line); }
.cfcsite-icon.has-image { border: 1px solid var(--cfcsite-line); }
.post-placeholder-logo { width: 92px; height: 92px; border-radius: 28px; display: grid; place-items: center; font-weight: 900; font-size: 2rem; background: #fff; color: var(--cfcsite-primary); }
.footer-logo { max-width: 210px; margin-bottom: 14px; }
.footer-logo img { max-height: 86px; width: auto; }
.widget-section .widget { margin: 0 0 24px; }
.widget-section .widget:last-child { margin-bottom: 0; }
.home-editor-content { background: #fff; border-block: 1px solid var(--cfcsite-line); }

/* Editable Arizona contact map */
.contact-map-section { background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%); }
.az-map-layout { display: grid; grid-template-columns: 1.35fr .85fr; gap: 24px; align-items: stretch; }
.az-map-card {
  position: relative;
  min-height: clamp(420px, 66vw, 680px);
  background: radial-gradient(circle at 78% 18%, rgba(224, 175, 54, .18), transparent 24%), linear-gradient(135deg, #ffffff, #fff7eb);
  border: 1px solid var(--cfcsite-line);
  border-radius: 34px;
  box-shadow: var(--cfcsite-shadow);
  overflow: hidden;
}
.az-map-svg { position: absolute; inset: 4% 6%; width: 88%; height: 92%; }
.az-map-shape { fill: url(#azMapFill); stroke: var(--cfcsite-primary); stroke-width: 12; stroke-linejoin: round; filter: drop-shadow(0 20px 24px rgba(23, 32, 51, .14)); }
.az-map-inner { fill: none; stroke: rgba(20, 61, 116, .12); stroke-width: 5; stroke-linecap: round; }
.az-map-sun { fill: rgba(224, 175, 54, .18); }
.az-map-river { fill: none; stroke: rgba(20, 61, 116, .35); stroke-width: 10; stroke-linecap: round; stroke-dasharray: 4 22; }
.az-map-pin {
  --pin-x: 50%;
  --pin-y: 50%;
  position: absolute;
  left: var(--pin-x);
  top: var(--pin-y);
  transform: translate(-50%, -100%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  text-decoration: none;
  color: var(--cfcsite-ink);
  font-weight: 900;
  font-size: .88rem;
}
.az-map-pin-dot {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50% 50% 50% 0;
  background: var(--cfcsite-primary);
  transform: rotate(-45deg);
  box-shadow: 0 9px 18px rgba(134, 36, 52, .3);
  flex: 0 0 24px;
}
.az-map-pin-dot::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}
.az-map-pin-label {
  background: #fff;
  border: 1px solid var(--cfcsite-line);
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: 0 12px 28px rgba(23, 32, 51, .12);
  white-space: nowrap;
}
.az-map-pin:hover .az-map-pin-label,
.az-map-pin:focus .az-map-pin-label { border-color: var(--cfcsite-primary); color: var(--cfcsite-primary); }
.az-map-list { background: #fff; border: 1px solid var(--cfcsite-line); border-radius: 28px; padding: clamp(22px, 4vw, 32px); box-shadow: 0 12px 34px rgba(23, 32, 51, .05); }
.az-map-list h3 { margin: 0 0 16px; font-size: clamp(1.35rem, 2.4vw, 2rem); letter-spacing: -.04em; }
.az-map-list ul { list-style: none; display: grid; gap: 14px; padding: 0; margin: 0; }
.az-map-list li { border: 1px solid var(--cfcsite-line); border-radius: 18px; padding: 15px; background: #fffaf2; }
.az-map-list strong { display: block; color: var(--cfcsite-primary); margin-bottom: 3px; }
.az-map-list span { display: block; color: var(--cfcsite-muted); }
.az-map-list a { display: inline-flex; margin-top: 8px; font-weight: 800; color: var(--cfcsite-secondary); text-decoration: none; }
.az-map-note { margin-top: 18px; color: var(--cfcsite-muted); font-size: .92rem; }

@media (max-width: 980px) {
  .az-map-layout { grid-template-columns: 1fr; }
  .az-map-card { min-height: 560px; }
}
@media (max-width: 640px) {
  .az-map-card { min-height: 460px; border-radius: 24px; }
  .az-map-pin { font-size: .78rem; }
  .az-map-pin-label { padding: 5px 8px; }
}
