/* site.css — custom styles for YourPlace public site (loaded after Tailwind CDN). */

html, body { overflow-x: hidden; max-width: 100%; }

/* Hero title (override Tailwind text-5xl) */
.hero-title {
    color: #ef3e36;
    font-size: 52px !important;
}
.hero-title span {
    color: #0A3377;
}
.hero-subtitle {
    color: #ffffff;
}

/* Rich text from the admin WYSIWYG editor (page bodies + property descriptions).
   Tailwind CDN resets these, so restore sensible defaults for the allowlisted tags. */
.prose p, .yp-prose p { margin: 0 0 1em; }
.prose h2, .yp-prose h2 { font-size: 1.5rem; font-weight: 700; color: #152744; margin: 1.2em 0 .5em; }
.prose h3, .yp-prose h3 { font-size: 1.25rem; font-weight: 700; color: #152744; margin: 1em 0 .4em; }
.prose ul, .yp-prose ul { list-style: disc !important; padding-left: 1.5em; margin: 0 0 1em; }
.prose ol, .yp-prose ol { list-style: decimal !important; padding-left: 1.5em; margin: 0 0 1em; }
.prose li, .yp-prose li { margin: .25em 0; }
.prose a, .yp-prose a { color: #1d4ed8; text-decoration: underline; }
.prose strong, .yp-prose strong { font-weight: 700; }
.prose em, .yp-prose em { font-style: italic; }
.prose blockquote, .yp-prose blockquote { border-left: 3px solid #cbd5e1; padding-left: 1em; color: #475569; margin: 0 0 1em; }
