/**
 * Listing CTA Buttons
 * Optional styling for [nz_listing_cta] shortcode.
 * Oxygen/template can override these.
 */
.nz-listing-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
    align-items: center;
}
/* Match header green (#2b542c), larger buttons, clean sans-serif */
.nz-listing-cta .nz-cta-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    margin: 0 0.5rem 0.5rem 0;
    background: #2b542c !important;
    color: #fff !important;
    text-decoration: none !important;
    border: 1px solid #2b542c;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.nz-listing-cta .nz-cta-btn:hover {
    background: #234a24 !important;
    color: #fff !important;
}
