:root {
  --brand-bg: #0b1320;
  --card-border: rgba(0, 0, 0, 0.08);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  background: #f6f7fb;
  color: #111827;
}

.site-header {
  background: var(--brand-bg);
  color: #ffffff;
}

.site-header a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header a:hover {
  color: #ffffff;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
}

.h1-md {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .h1-md {
    font-size: 1.75rem;
  }
}

.google-maps {
  width: 100%;
}

.google-maps iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

.practice-card {
  display: block;
  height: 100%;
  text-decoration: none;
  background: #ffffff;
  color: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.practice-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.practice-media {
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.practice-media img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.h3.h1-md.mb-4 {
  text-align: center;
  font-weight: 700;
}

.tile-1 {
  background-color: #be9c5f;
}

.tile-2 {
  background-color: #adadad;
}

.tile-3 {
  background-color: #b35d2f;
  color: #ffffff;
}

.tile-1 *,
.tile-2 *,
.tile-3 *,
.tile-4 * {
  color: #ffffff !important;
}

.tile-4 {
  background-color: #c51a27;
}

.practice-body {
  padding: 14px 14px 16px 14px;
}

.practice-title {
  font-size: 1.05rem;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.practice-url {
  margin: 0 0 10px 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.practice-meta {
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 0, 0, 0.12);
  color: #374151;
  font-size: 0.92rem;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.map-wrapper iframe {
  position: absolute;
  top: -70px;
  left: 0;
  width: 100%;
  height: 560px;
  border: 0;
}
