/**
 * Venue enquiry sidebar - spacing this plugin is responsible for.
 *
 * Venue pages render their sidebar from the theme's own template
 * (single-contents-v3.php:551-558) and the theme styles it. Only one rule
 * belongs to this plugin, and only because this plugin created the situation
 * that needs it.
 *
 * Loaded on venue pages only, and declared to depend on the child theme
 * stylesheet so it always follows it in source order.
 */

/**
 * Space the claim box away from the enquiry form.
 *
 * Until this plugin made the enquiry form unconditional, the form appeared only
 * on featured and spotlight venues -- which are always claimed, and so never
 * show a claim box. Form-above-claim-box could not happen, so the theme had no
 * rule for it, and the two render flush against each other: the sidebar is
 * `display: block` with no `gap`, the form carries no bottom margin and the
 * claim box no top margin.
 *
 * 16px matches .venues-v3-contact-card (style.css:2084-2091), the other card
 * that stacks in this sidebar, so the two spacings agree.
 */
.venues-v3-sidebar .venues-single-claim {
	margin-top: 16px;
}
