/* ─── AV Contact Info Card ─── */

.av-info-card {
  background: #fff;
  border: 1px solid rgba(26, 26, 31, 0.1);
  border-radius: var(--av-r, 8px);
  padding: 28px;
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
}

.av-info-title {
  font-family: var(--av-font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--av-navy);
  margin-top: 0;
  margin-bottom: 20px;
}

.av-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.av-ci-icon {
  width: 36px;
  height: 36px;
  background: #f8f9fa; /* matches var(--gray-50) */
  border-radius: var(--av-r, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--av-navy);
  flex-shrink: 0;
}

.av-ci-icon svg {
  width: 16px;
  height: 16px;
}

.av-ci-icon i {
  font-size: 16px;
}

.av-ci-body {
  flex: 1;
  min-width: 0;
}

.av-ci-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a0aec0; /* matches var(--gray-400) */
  margin-bottom: 2px;
}

.av-ci-val {
  font-size: 14px;
  color: #2d3748; /* matches var(--gray-800) */
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
  font-style: normal;
}

.av-ci-val a {
  color: var(--av-rust);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}

.av-ci-val a:hover {
  opacity: 0.8;
}

.av-ci-hours-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.av-info-card .av-divider {
  border: none;
  border-top: 1px solid #e2e8f0; /* matches var(--gray-200) */
  margin-bottom: 16px;
  width: 100%;
}

.av-areas-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #a0aec0; /* matches var(--gray-400) */
  margin-bottom: 10px;
}

.av-area-chips {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 6px;
}

.av-area-chip {
  font-size: 12px;
  font-weight: 600;
  color: var(--av-navy);
  background: #edf2f7; /* matches var(--gray-100) */
  padding: 5px 10px;
  border-radius: 14px;
  border: 1.5px solid #e2e8f0; /* matches var(--gray-200) */
  text-decoration: none;
}

.av-map-container {
  border-radius: var(--av-r, 8px);
  overflow: hidden;
  margin-bottom: 10px;
  width: 100%;
}

.av-map-container iframe {
  display: block;
  width: 100%;
  height: 180px;
  border: 0;
}

.av-map-placeholder {
  background: #111116; /* matches var(--navy-dark) */
  border-radius: var(--av-r, 8px);
  overflow: hidden;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 16px;
  margin-bottom: 15px;
}
.av-directions-link-wrap {
  display: flex;
}
.av-map-placeholder svg {
  color: rgba(255, 255, 255, 0.4);
}

.av-map-placeholder span {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.av-map-placeholder .av-map-addr {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.av-directions-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--av-rust);
  text-decoration: none;
  transition: opacity 0.15s;
}

@media (max-width: 860px) {
  .av-info-card {
    position: static;
  }
}
