/* ==========================================================================
   Fresh Makelaars – "Back" button above the object header (theme 1)
   --------------------------------------------------------------------------
   Theme-1 counterpart of theme-2's .fm2-back-btn, which is styled in
   css/theme-2/single-house.css. Same shape, theme-1 colours, and it covers
   both the <a> and <button> forms the part can render.

   The chevron strokes with currentColor, so overriding `color` restyles the
   icon and the label together.
   ========================================================================== */

#fresh-makelaars .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 0;
  background: none;
  border: none;
  color: #0073aa;
  font-family: inherit;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

#fresh-makelaars .back-btn:hover,
#fresh-makelaars .back-btn:focus {
  color: #005177;
}

#fresh-makelaars .back-btn svg {
  flex: 0 0 auto;
}
