/* ============================================================
   KULKARNI DERMATOLOGY CENTRE — contact.css  (FULLY RESPONSIVE FIX)
   Extends index.css — do NOT edit index.css for contact styles
   ============================================================ */

/* ============================================================
   CONTACT HERO
   ============================================================ */
.contact-hero {
  min-height: 52vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,229,160,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(0,184,217,.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 10%, rgba(26,46,122,.06) 0%, transparent 50%);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 5% 50px;
  width: 100%;
  max-width: 100%;
  animation: fadeSlideUp .8s ease both;
}
.contact-hero-content .hero-badge   { margin-bottom: 20px; }
.contact-hero-content .hero-title   {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 18px;
  word-wrap: break-word;
}
.contact-hero-content .hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 32px;
}

/* Quick pills row */
.contact-quick-pills {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeSlideUp .8s .3s ease both;
  width: 100%;
}
.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(0,184,217,.2);
  border-radius: 50px;
  padding: 9px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  box-shadow: 0 4px 16px rgba(26,46,122,.07);
  transition: all var(--transition);
  /* FIX: allow text to wrap so long email doesn't overflow */
  word-break: break-all;
  text-align: center;
}
.quick-pill:hover { color: var(--navy); border-color: var(--cyan); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,184,217,.18); }
.quick-pill.no-link { cursor: default; }
.quick-pill.no-link:hover { transform: none; }
.pill-icon { font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   TABS SECTION
   ============================================================ */
.contact-tabs-section {
  background: var(--soft-bg);
  border-bottom: 1px solid rgba(0,184,217,.12);
  padding: 0 8%;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  box-shadow: 0 2px 16px rgba(26,46,122,.06);
  width: 100%;
  box-sizing: border-box;
}
.tabs-wrapper {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tabs-wrapper::-webkit-scrollbar { display: none; }
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  color: var(--text-mid);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  outline: none;
}
.tab-btn:hover { color: var(--navy); background: rgba(0,184,217,.05); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--cyan); background: rgba(0,184,217,.06); }
.tab-icon { font-size: 1.05rem; }

/* ============================================================
   MAIN CONTACT GRID
   ============================================================ */
.contact-main {
  background: var(--soft-bg);
  padding: 52px 8% 80px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* FIX: prevent any child from bleeding out */
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  min-width: 0; /* FIX: prevents grid from overflowing its container */
}

/* Tab panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeSlideUp .5s ease both; }

/* ============================================================
   FORM CARD
   ============================================================ */
.form-card {
  background: var(--white);
  border: 1px solid rgba(0,184,217,.12);
  border-radius: 28px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(26,46,122,.08);
  position: relative;
  overflow: hidden;
  /* FIX: ensure form card never overflows its grid column */
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--navy));
}
.form-card-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,184,217,.1);
  /* FIX: allow wrapping on very small screens */
  flex-wrap: wrap;
}
.form-card-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,229,160,.15), rgba(0,184,217,.15));
  border: 1px solid rgba(0,184,217,.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.form-card-header h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 4px;
  /* FIX: prevent heading overflow */
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.form-card-header p  { font-size: .85rem; color: var(--text-light); line-height: 1.5; }

/* Success / Error banners */
.form-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 24px;
  animation: fadeSlideUp .4s ease both;
}
.form-banner.success { background: rgba(0,229,160,.1); border: 1px solid rgba(0,229,160,.3); color: #027a52; }
.form-banner.error   { background: rgba(229,57,53,.08); border: 1px solid rgba(229,57,53,.25); color: #c62828; }
.form-banner span:first-child { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.form-banner strong { display: block; margin-bottom: 2px; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  min-width: 0;
}
.form-row { display: flex; gap: 16px; width: 100%; }
.form-row.two-col > * { flex: 1 1 0; min-width: 0; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0; /* FIX: critical for flex children */
  width: 100%;
}
.form-group label { font-size: .82rem; font-weight: 600; color: var(--text-dark); letter-spacing: .02em; }
.req { color: #e05555; }

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.input-icon { position: absolute; left: 14px; font-size: 1rem; pointer-events: none; z-index: 1; line-height: 1; }
.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  min-width: 0; /* FIX: allows inputs to shrink below their default size */
  padding: 12px 14px 12px 40px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--soft-bg);
  border: 1.5px solid rgba(0,184,217,.2);
  border-radius: 12px;
  transition: all var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  /* FIX: prevent inputs from overflowing their wrapper */
  box-sizing: border-box;
}
.input-wrap input::placeholder,
.input-wrap textarea::placeholder { color: var(--text-light); }
.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,184,217,.12);
}
.input-wrap select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8ab0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.textarea-wrap { align-items: flex-start; }
.textarea-wrap .input-icon { top: 14px; }
.input-wrap textarea { resize: vertical; min-height: 100px; }
.field-error { font-size: .76rem; color: #e05555; display: none; animation: fadeSlideUp .3s ease; }

/* Radio group */
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; padding: 10px 0 4px; }
.radio-label { display: inline-flex; align-items: center; gap: 7px; font-size: .87rem; color: var(--text-mid); cursor: pointer; transition: color var(--transition); }
.radio-label input[type="radio"] { accent-color: var(--cyan); width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; }
.radio-label:hover { color: var(--navy); }

/* Checkbox */
.checkbox-group { margin-top: 4px; }
.checkbox-label { display: inline-flex; align-items: flex-start; gap: 10px; font-size: .84rem; color: var(--text-mid); cursor: pointer; line-height: 1.5; }
.checkbox-label input[type="checkbox"] { accent-color: var(--cyan); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; cursor: pointer; }

/* Submit button */
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 15px 28px; margin-top: 8px; border: none; }
.form-submit:disabled { opacity: .7; cursor: not-allowed; transform: none !important; }
.btn-loader { display: inline-flex; align-items: center; gap: 8px; }
.spin { animation: spinAnim .8s linear infinite; }
@keyframes spinAnim { to { transform: rotate(360deg); } }

/* ============================================================
   INFO CARDS — right column
   ============================================================ */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  width: 100%;
  min-width: 0;
}

.info-card {
  background: var(--white);
  border: 1px solid rgba(0,184,217,.12);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
  box-shadow: 0 3px 16px rgba(26,46,122,.05);
  /* FIX: never overflow container */
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,46,122,.10);
  border-color: rgba(0,184,217,.28);
}

.info-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.info-card-label-col {
  flex-shrink: 0;
  width: 90px;
}
.info-card-label-col h4 {
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
}

/* Divider between label and content */
.info-card-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,184,217,.18);
  flex-shrink: 0;
  margin-right: 14px;
}

.info-card-content-col {
  flex: 1;
  min-width: 0; /* FIX: allows content to shrink and not overflow */
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.info-card-main {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* FIX: Default — allow wrapping. No more whitespace:nowrap globally */
.info-card-main p {
  font-size: .84rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
  /* FIX: removed white-space:nowrap that caused email overflow */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.info-card-main p a {
  color: var(--teal);
  font-weight: 500;
  transition: color var(--transition);
  /* FIX: allow long emails to break */
  word-break: break-all;
  overflow-wrap: break-word;
}
.info-card-main p a:hover { color: var(--navy); }

/* Phone — larger, bold */
.info-phone {
  font-size: .96rem !important;
  font-weight: 700 !important;
  white-space: nowrap !important; /* phone numbers should stay on one line */
}
.info-phone a {
  color: var(--navy) !important;
  font-weight: 700 !important;
  transition: color var(--transition);
  white-space: nowrap;
}
.info-phone a:hover { color: var(--cyan) !important; }

/* Sub text */
.info-sub {
  font-size: .74rem !important;
  color: var(--text-light) !important;
  /* FIX: allow wrap on mobile instead of nowrap */
  white-space: normal;
  margin-top: 2px;
  word-break: break-word;
}

/* Address — allow wrap */
.info-card-main.allow-wrap p {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: .83rem;
  line-height: 1.6;
  word-break: break-word;
}

/* CTA link */
.info-link {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--cyan);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}
.info-link:hover { color: var(--navy); }

/* Working Hours */
.hours-inline {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hours-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  flex-wrap: wrap; /* FIX: allow wrap if needed */
}
.hours-day {
  font-weight: 700;
  color: var(--text-dark);
  flex-shrink: 0;
  min-width: 68px;
}
.hours-time { color: var(--text-mid); white-space: nowrap; }
.hours-closed { color: #e05555 !important; font-weight: 600; white-space: nowrap; }

/* ============================================================
   MAP
   ============================================================ */
.map-container {
  background: var(--white);
  border: 1px solid rgba(0,184,217,.14);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(26,46,122,.08);
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0,184,217,.1);
  gap: 8px;
  flex-wrap: wrap; /* FIX: allow wrapping on very small screens */
}
.map-header h3 { font-size: .95rem; font-weight: 700; color: var(--navy); }
.map-external-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--cyan);
  transition: color var(--transition);
  white-space: nowrap;
}
.map-external-link:hover { color: var(--navy); }
.map-embed-wrap {
  position: relative;
  width: 100%;
  /* FIX: iframe must not overflow */
  overflow: hidden;
}
.map-embed-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
  /* FIX: max-width prevents iframe from exceeding container */
  max-width: 100%;
}
.map-address-pill {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 22px;
  font-size: .82rem;
  color: var(--text-mid);
  border-top: 1px solid rgba(0,184,217,.1);
  background: var(--soft-bg);
  /* FIX: allow address text to wrap */
  word-break: break-word;
}
.map-address-pill span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.btn-whatsapp {
  border-color: rgba(37,211,102,.5) !important;
  color: #128c3e !important;
}
.btn-whatsapp:hover {
  background: rgba(37,211,102,.1) !important;
  border-color: #25d366 !important;
}
.btn-whatsapp svg { color: #25d366; }

/* ============================================================
   RESPONSIVE — 1200px
   ============================================================ */
@media (max-width: 1200px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-card { padding: 36px 28px; }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .contact-main { padding: 40px 5% 64px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .info-cards { margin-bottom: 0; }
}

/* ============================================================
   RESPONSIVE — 768px  ← KEY MOBILE FIXES
   ============================================================ */
@media (max-width: 768px) {
  /* Hero */
  .contact-hero { min-height: auto; padding-top: calc(var(--nav-h) + 8px); }
  .contact-hero-content { padding: 36px 5% 32px; }
  .contact-hero-content .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .contact-hero-content .hero-subtitle { font-size: .95rem; }
  .contact-quick-pills { flex-direction: column; align-items: center; gap: 8px; }
  .quick-pill { width: 100%; max-width: 340px; justify-content: center; font-size: .82rem; padding: 8px 16px; }

  /* Tabs */
  .contact-tabs-section { padding: 0 5%; }
  .tab-btn { padding: 14px 18px; font-size: .85rem; }

  /* Main grid: single column, full width */
  .contact-main { padding: 24px 4% 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Form card */
  .form-card {
    padding: 24px 18px;
    border-radius: 20px;
    /* FIX: force full width, no horizontal overflow */
    width: 100%;
    max-width: 100%;
  }
  .form-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 18px;
  }
  .form-card-icon { width: 48px; height: 48px; font-size: 1.35rem; border-radius: 13px; }
  .form-card-header h2 { font-size: 1.3rem; }
  .form-card-header p { font-size: .82rem; }

  /* FIX: stack two-col form rows on mobile */
  .form-row.two-col {
    flex-direction: column;
    gap: 20px;
  }
  .form-row.two-col > * { width: 100%; flex: none; }

  /* Radio */
  .radio-group { gap: 10px; }

  /* Info col: single column on mobile */
  .contact-info-col { grid-template-columns: 1fr; gap: 0; }
  .info-cards { gap: 10px; margin-bottom: 14px; }

  /* Info card layout — tighten for mobile */
  .info-card {
    padding: 14px 14px;
    gap: 12px;
    /* FIX: force info card to not exceed screen width */
    max-width: 100%;
    overflow: hidden;
  }
  .info-card-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }

  /* FIX: shrink label column so content has more room */
  .info-card-label-col { width: 72px; }
  .info-card-label-col h4 { font-size: .62rem; letter-spacing: .05em; }

  .info-card-divider { height: 28px; margin-right: 10px; }

  /* FIX: info-card content — remove link from inline row, stack below */
  .info-card-content-col {
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
  }

  /* FIX: all text in info cards must wrap */
  .info-card-main p {
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: .82rem;
  }
  .info-card-main p a {
    word-break: break-all;
    overflow-wrap: break-word;
  }
  /* Phone stays single line */
  .info-phone { font-size: .88rem !important; white-space: nowrap !important; }
  .info-sub { font-size: .72rem !important; white-space: normal !important; }

  /* Hours: keep compact */
  .hours-row { font-size: .78rem; gap: 8px; flex-wrap: nowrap; }
  .hours-day { min-width: 58px; }

  /* Map */
  .map-embed-wrap iframe { height: 240px; }
  .map-header { padding: 14px 16px; }
  .map-address-pill { padding: 12px 16px; font-size: .79rem; }

  /* Form elements */
  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    font-size: .88rem;
    padding: 11px 12px 11px 36px;
  }
  .input-icon { left: 11px; font-size: .9rem; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .contact-main { padding: 20px 4% 40px; }

  .contact-hero-content { padding: 28px 4% 24px; }
  .contact-hero-content .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .contact-hero-content .hero-subtitle { font-size: .9rem; }
  .quick-pill { font-size: .78rem; padding: 7px 14px; max-width: 100%; }

  /* Tabs */
  .contact-tabs-section { padding: 0 4%; }
  .tab-btn { padding: 12px 14px; font-size: .82rem; gap: 6px; }
  .tab-icon { font-size: .95rem; }

  /* Form */
  .form-card { padding: 20px 14px; }
  .form-card-header { gap: 10px; margin-bottom: 18px; padding-bottom: 16px; }
  .form-card-header h2 { font-size: 1.2rem; }
  .form-card-header p { font-size: .8rem; }
  .form-submit { font-size: .9rem; padding: 13px 18px; }
  .form-banner { padding: 12px 14px; font-size: .82rem; gap: 10px; }

  /* Inputs */
  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    font-size: .86rem;
    padding: 10px 10px 10px 34px;
    border-radius: 10px;
  }
  .input-icon { left: 10px; font-size: .85rem; }
  .form-group label { font-size: .79rem; }

  /* Radio & checkbox */
  .radio-group { gap: 8px; }
  .radio-label { font-size: .82rem; }
  .checkbox-label { font-size: .8rem; }

  /* Info cards */
  .info-card { padding: 12px 12px; gap: 10px; }
  .info-card-icon { width: 38px; height: 38px; font-size: 1rem; border-radius: 9px; }
  .info-card-label-col { width: 66px; }
  .info-card-label-col h4 { font-size: .6rem; }
  .info-card-divider { height: 24px; margin-right: 8px; }
  .info-card-main p { font-size: .79rem; }
  .info-phone { font-size: .84rem !important; }
  .info-sub { font-size: .7rem !important; }
  .info-link { font-size: .74rem; }

  /* Hours */
  .hours-row { font-size: .75rem; gap: 6px; }
  .hours-day { min-width: 52px; }

  /* Map */
  .map-embed-wrap iframe { height: 210px; }
  .map-address-pill { padding: 10px 14px; font-size: .77rem; }
}

/* ============================================================
   RESPONSIVE — 360px
   ============================================================ */
@media (max-width: 360px) {
  .contact-main { padding: 16px 3% 36px; }
  .contact-hero-content { padding: 24px 3% 20px; }
  .quick-pill { font-size: .74rem; padding: 6px 12px; }
  .contact-tabs-section { padding: 0 3%; }

  .form-card { padding: 16px 12px; }
  .form-card-header h2 { font-size: 1.1rem; }
  .radio-group { gap: 6px; }
  .radio-label { font-size: .78rem; }
  .checkbox-label { font-size: .76rem; }
  .form-banner { padding: 10px 12px; font-size: .79rem; }
  .form-submit { font-size: .86rem; padding: 12px 14px; }

  .info-card { padding: 10px 10px; gap: 8px; }
  .info-card-icon { width: 34px; height: 34px; font-size: .9rem; }
  .info-card-label-col { width: 60px; }
  .info-card-label-col h4 { font-size: .58rem; }
  .info-card-divider { margin-right: 6px; }
  .info-card-main p { font-size: .76rem; }
  .info-phone { font-size: .8rem !important; }
  .hours-row { font-size: .72rem; }

  .map-embed-wrap iframe { height: 190px; }
}