.elementor-21588 .elementor-element.elementor-element-237b266{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-21588 .elementor-element.elementor-element-cc85da0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c10b098 *//* ==========================================================================
   Bartos Group — Community Single Template
   Scoped entirely under .community-template so it cannot leak into the
   rest of the WordPress theme. Paste into the Elementor template's
   custom CSS panel, or a snippet loaded only on the Community CPT.
   ========================================================================== */

.community-template {
  /* ---- Editable design tokens ---- */
  --community-primary: #1f2937;   /* charcoal — primary text / dark surfaces */
  --community-secondary: #ffffff; /* white */
  --community-accent: #223a5e;    /* muted navy — links, accents, buttons */
  --community-muted: #f7f6f3;     /* warm off-white — alternating sections */
  --community-border: #e5e7eb;    /* subtle borders */
  --community-text: #333333;      /* body copy */

  /* ---- Derived tokens (kept in one place so nothing is hard-coded twice) --- */
  --community-text-soft: #6b7280;
  --community-radius: 2px;
  --community-max-width: 1200px;
  --community-gutter: clamp(20px, 4vw, 48px);

  --community-font-display: Georgia, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  --community-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  font-family: var(--community-font-body);
  color: var(--community-text);
  background: var(--community-secondary);
  -webkit-font-smoothing: antialiased;
}

.community-template * {
  box-sizing: border-box;
}

.community-template img {
  max-width: 100%;
  display: block;
}

.community-template a {
  color: var(--community-accent);
}

/* ---- Shared layout helpers ---- */

.community-template .cw-shell {
  max-width: var(--community-max-width);
  margin: 0 auto;
  padding-left: var(--community-gutter);
  padding-right: var(--community-gutter);
}

.community-template .cw-section {
  padding: 72px 0;
}

.community-template .cw-section--muted {
  background: var(--community-muted);
}

.community-template .cw-eyebrow {
  display: inline-block;
  font-family: var(--community-font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--community-accent);
  margin: 0 0 10px;
}

.community-template h2.cw-heading {
  font-family: var(--community-font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.2;
  color: var(--community-primary);
  margin: 0 0 24px;
  max-width: 42ch;
}

.community-template .cw-rule {
  width: 56px;
  height: 2px;
  background: var(--community-accent);
  border: none;
  margin: 20px 0 32px;
}

.community-template .cw-wysiwyg :is(h1, h2, h3, h4) {
  font-family: var(--community-font-display);
  color: var(--community-primary);
  line-height: 1.3;
}

.community-template .cw-wysiwyg p {
  margin: 0 0 1em;
  line-height: 1.7;
}

.community-template .cw-wysiwyg ul,
.community-template .cw-wysiwyg ol {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
  line-height: 1.7;
}

.community-template .cw-wysiwyg li + li {
  margin-top: 0.4em;
}

/* ==========================================================================
   1. HERO
   ========================================================================== */

.community-template .cw-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: var(--community-secondary);
}

.community-template .cw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17, 22, 29, 0.86) 0%,
    rgba(17, 22, 29, 0.55) 45%,
    rgba(17, 22, 29, 0.15) 100%
  );
}

.community-template .cw-hero__inner {
  position: relative;
  width: 100%;
  padding: 64px var(--community-gutter) 56px;
}

.community-template .cw-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-bottom: 28px;
}

.community-template .cw-hero__back:hover {
  color: #ffffff;
}

.community-template .cw-hero__location {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 12px;
}

.community-template .cw-hero__title {
  font-family: var(--community-font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 16ch;
}

.community-template .cw-hero__desc {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

@media (max-width: 900px) {
  .community-template .cw-hero { min-height: 480px; }
}

@media (max-width: 600px) {
  .community-template .cw-hero { min-height: 400px; }
  .community-template .cw-hero__inner { padding: 40px var(--community-gutter) 36px; }
}

/* ==========================================================================
   2. COMMUNITY OVERVIEW
   ========================================================================== */

.community-template .cw-overview {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: start;
}

.community-template .cw-overview__card {
  border: 1px solid var(--community-border);
  padding: 36px;
  background: var(--community-secondary);
}

.community-template .cw-overview__card-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--community-text-soft);
  margin: 0 0 14px;
}

.community-template .cw-overview__card-text {
  font-family: var(--community-font-display);
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--community-primary);
  margin: 0;
}

@media (max-width: 900px) {
  .community-template .cw-overview {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   3. AT A GLANCE
   ========================================================================== */

.community-template .cw-glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--community-border);
  border-left: 1px solid var(--community-border);
}

.community-template .cw-glance__item {
  padding: 32px 28px;
  border-right: 1px solid var(--community-border);
  border-bottom: 1px solid var(--community-border);
}

.community-template .cw-glance__label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--community-text-soft);
  margin: 0 0 10px;
}

.community-template .cw-glance__value {
  font-family: var(--community-font-display);
  font-size: 1.15rem;
  color: var(--community-primary);
  margin: 0;
}

@media (max-width: 900px) {
  .community-template .cw-glance { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .community-template .cw-glance { grid-template-columns: 1fr; }
}

/* ==========================================================================
   4. COMMUNITY VIDEO (optional)
   ========================================================================== */

.community-template .cw-video__frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--community-primary);
  overflow: hidden;
}

.community-template .cw-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   5. REAL ESTATE
   ========================================================================== */

.community-template .cw-realestate__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.community-template .cw-realestate__panel {
  border-left: 2px solid var(--community-accent);
  padding: 6px 0 6px 24px;
}

.community-template .cw-realestate__panel-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--community-text-soft);
  margin: 0 0 10px;
}

.community-template .cw-realestate__panel-value {
  font-family: var(--community-font-display);
  font-size: 1.3rem;
  color: var(--community-primary);
  margin: 0;
}

.community-template .cw-listings {
  border: 1px dashed var(--community-border);
  padding: 40px;
  text-align: center;
  background: var(--community-muted);
}

.community-template .cw-listings__label {
  font-size: 0.85rem;
  color: var(--community-text-soft);
  margin: 0;
}

@media (max-width: 700px) {
  .community-template .cw-realestate__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ==========================================================================
   6 / 7 / 8 — AMENITIES, GOLF, MEMBERSHIP (WYSIWYG sections)
   ========================================================================== */

.community-template .cw-wysiwyg-section__body {
  max-width: 76ch;
}

/* ==========================================================================
   9. LOCATION & NEARBY ATTRACTIONS
   ========================================================================== */

.community-template .cw-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.community-template .cw-location__address {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 28px;
  color: var(--community-primary);
}

.community-template .cw-location__map {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--community-muted);
  border: 1px solid var(--community-border);
}

.community-template .cw-location__map-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.community-template .cw-location__map-inner p {
  font-size: 0.9rem;
  color: var(--community-text-soft);
  margin: 0;
}

@media (max-width: 900px) {
  .community-template .cw-location { grid-template-columns: 1fr; gap: 32px; }
  .community-template .cw-location__map { padding-top: 60%; }
}

/* ==========================================================================
   10. FAQ
   ========================================================================== */

.community-template .cw-faq .cw-wysiwyg :is(h3, h4) {
  font-size: 1.1rem;
  margin: 1.4em 0 0.4em;
  border-top: 1px solid var(--community-border);
  padding-top: 1.2em;
}

.community-template .cw-faq .cw-wysiwyg :is(h3, h4):first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* ==========================================================================
   11. FINAL CTA
   ========================================================================== */

.community-template .cw-cta {
  background: var(--community-primary);
  color: var(--community-secondary);
  text-align: center;
}

.community-template .cw-cta__inner {
  max-width: 720px;
  margin: 0 auto;
}

.community-template .cw-cta h2.cw-heading {
  color: var(--community-secondary);
  max-width: none;
  margin: 0 auto 16px;
}

.community-template .cw-cta p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 36px;
}

.community-template .cw-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.community-template .cw-btn {
  display: inline-block;
  padding: 15px 32px;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.community-template .cw-btn--solid {
  background: var(--community-secondary);
  color: var(--community-primary);
}

.community-template .cw-btn--solid:hover {
  background: var(--community-muted);
}

.community-template .cw-btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--community-secondary);
}

.community-template .cw-btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 480px) {
  .community-template .cw-cta__actions { flex-direction: column; }
  .community-template .cw-btn { text-align: center; }
}

/* ---- Section rhythm on small screens ---- */
@media (max-width: 700px) {
  .community-template .cw-section { padding: 48px 0; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .community-template * {
    transition: none !important;
  }
}

/* ---- Visible keyboard focus ---- */
.community-template a:focus-visible,
.community-template button:focus-visible {
  outline: 2px solid var(--community-accent);
  outline-offset: 2px;
}/* End custom CSS */