/* WordPress-only adjustments on top of the original design */

/* Keep the sticky header below the admin toolbar when logged in */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
@media (max-width: 600px) {
  .admin-bar .site-header { top: 0; }
}

/* Map embed (Customizer → Branch Details → Map embed URL) */
.location__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* Basic content styling for ordinary pages/posts (index.php, page.php) */
.ct-page {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.ct-page__content > * + * { margin-top: 1em; }
.ct-page__content img { max-width: 100%; height: auto; }
