







/* =========================================================
   GLOBAL TITLES + SUBTITLES
   Stuart Bartwicki Website
   ========================================================= */

/* Load the same fonts used in the original design */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700;800&display=swap');


/* ─── PRIMARY SECTION TITLES ───────────────────────────── */

.block-layout .title {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 500 !important;
  line-height: 0.92 !important;
  letter-spacing: 0.02em !important;
  text-transform: uppercase !important;
  color: rgba(17, 36, 50, 1) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}


/* ─── GOLD SUBTITLES / EYEBROWS ───────────────────────── */

.block-layout .sub-title {
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #d3ae57 !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}


/* ─── REVERSE TITLE LAYOUT ───────────────────────────────
   Keeps the subtitle above the title when the myRealPage
   block uses the title-reverse option.
   ------------------------------------------------------- */

.block-layout .titles.title-reverse {
  display: flex !important;
  flex-direction: column !important;
}

.block-layout .titles.title-reverse .sub-title {
  order: 1 !important;
}

.block-layout .titles.title-reverse .title {
  order: 2 !important;
}


/* ─── MOBILE REFINEMENT ───────────────────────────────── */

@media (max-width: 620px) {
  .block-layout .title {
    line-height: 0.95 !important;
  }

  .block-layout .sub-title {
    letter-spacing: 0.18em !important;
    margin-bottom: 12px !important;
  }
} 


/* =========================================================
   SOLD DATA PANEL — DESKTOP HEIGHT + CLIPPING FIX
   Makes the overlay contribute to the section height
   while keeping it layered over the blurred cards
   ========================================================= */

@media (min-width: 769px) {

  .sold-section {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    position: relative !important;
    height: auto !important;
    max-height: none !important;
    min-height: 560px !important;
    overflow: hidden !important;
  }

  /* Place the blurred cards and unlock panel in the same grid area */
  .sold-section > .sold-section-inner,
  .sold-section > .sold-overlay {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .sold-section > .sold-section-inner {
    min-height: 560px !important;
    z-index: 0 !important;
  }

  /*
    Important:
    Override the old absolute overlay positioning.
    The overlay still sits over the cards because both layers
    occupy the same grid area, but it now expands the section.
  */
  .sold-section > .sold-overlay {
    position: relative !important;
    inset: auto !important;
    z-index: 1 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
    min-height: 560px !important;
    padding: 76px 24px 92px !important;
    overflow: visible !important;
  }

  .sold-section .sold-unlock-panel {
    box-sizing: border-box !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .sold-section .sold-btns {
    flex-wrap: wrap !important;
    margin-top: 28px !important;
    padding-bottom: 4px !important;
  }
} 


#site-nav {
  display: none !important;
} 



/* Global Accent / Emphasis Button */
a.fluid-button.button.filled[style*="--fl-button-bg-color"][style*="var(--g-accent-color)"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: var(--g-accent-color) !important;
  border: 2px solid var(--g-accent-color) !important;
  color: #ffffff !important;

  padding: 16px 30px !important;
  min-height: 52px !important;
  border-radius: 0 !important;
  text-decoration: none !important;

  box-shadow:
    0 0 0 0 color-mix(in srgb, var(--g-accent-color) 55%, transparent),
    0 10px 26px color-mix(in srgb, var(--g-accent-color) 35%, transparent) !important;

  animation: globalAccentButtonGlow 2.2s infinite ease-in-out !important;
  transition: all 0.25s ease !important;
}

a.fluid-button.button.filled[style*="--fl-button-bg-color"][style*="var(--g-accent-color)"] label {
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 !important;
  cursor: pointer !important;
}

a.fluid-button.button.filled[style*="--fl-button-bg-color"][style*="var(--g-accent-color)"]:hover {
  transform: translateY(-2px) !important;
  filter: brightness(1.08) !important;
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--g-accent-color) 18%, transparent),
    0 14px 34px color-mix(in srgb, var(--g-accent-color) 45%, transparent) !important;
}

a.fluid-button.button.filled[style*="--fl-button-bg-color"][style*="var(--g-accent-color)"]:hover label {
  color: #ffffff !important;
}

@keyframes globalAccentButtonGlow {
  0% {
    box-shadow:
      0 0 0 0 color-mix(in srgb, var(--g-accent-color) 40%, transparent),
      0 10px 26px color-mix(in srgb, var(--g-accent-color) 30%, transparent);
  }

  50% {
    box-shadow:
      0 0 0 8px color-mix(in srgb, var(--g-accent-color) 12%, transparent),
      0 14px 34px color-mix(in srgb, var(--g-accent-color) 42%, transparent);
  }

  100% {
    box-shadow:
      0 0 0 0 color-mix(in srgb, var(--g-accent-color) 40%, transparent),
      0 10px 26px color-mix(in srgb, var(--g-accent-color) 30%, transparent);
  }
}

/* Accessibility: reduce animation for users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  a.fluid-button.button.filled[style*="--fl-button-bg-color"][style*="var(--g-accent-color)"] {
    animation: none !important;
  }
}

/* Global Dark / Secondary Button */
a.fluid-button.button.default-style.outlined {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: #122233 !important;
  border: 2px solid #122233 !important;
  color: #ffffff !important;

  padding: 16px 28px !important;
  min-height: 50px !important;

  text-decoration: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  transition: all 0.25s ease !important;
}

a.fluid-button.button.default-style.outlined label {
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 !important;
  cursor: pointer !important;
}

a.fluid-button.button.default-style.outlined:hover {
  background: #0b1724 !important;
  border-color: #0b1724 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

a.fluid-button.button.default-style.outlined:hover label {
  color: #ffffff !important;
}

a.fluid-button.button.default-style.outlined:focus-visible {
  outline: 3px solid rgba(18, 34, 51, 0.25) !important;
  outline-offset: 3px !important;
} 


/* Global Paragraph / Body Text Styling */
body p {
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.08rem !important;
  line-height: 1.74 !important;
  letter-spacing: normal !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
} 




/* ===================================================================
   BODY / META TYPE → Inter
   =================================================================== */
.mrp-weblet-blog,
.mrp-weblet-blog p,
.mrp-weblet-blog div,
.mrp-weblet-blog span,
.mrp-weblet-blog li,
.mrp-weblet-blog .weblet_blog-entry-text,
.mrp-weblet-blog .blog-entry-text,
.mrp-weblet-blog .blog-entry-summary,
.mrp-weblet-blog .blog-entry-date,
.mrp-weblet-blog .blog-entry-meta,
.mrp-weblet-blog .entry-date,
.mrp-weblet-blog .entry-meta {
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
  letter-spacing: normal !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ===================================================================
   HEADINGS → Cormorant Garamond
   =================================================================== */
.mrp-weblet-blog h1,
.mrp-weblet-blog h2,
.mrp-weblet-blog h3,
.mrp-weblet-blog h4,
.mrp-weblet-blog .title,
.mrp-weblet-blog .weblet_blog-entry-heading,
.mrp-weblet-blog .weblet_blog-entry-heading a,
.mrp-weblet-blog .weblet_blog-entry-heading-text {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  text-transform: none !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Generic title sizes (in-body h1 / .title) */
.mrp-weblet-blog h1,
.mrp-weblet-blog .title {
  font-size: clamp(2.4rem, 5vw, 4.5rem) !important;
  font-weight: 600 !important;
}

/* ---- Single-post title (H1, text sits directly in the heading) ---- */
.mrp-weblet-blog h1.weblet_blog-entry-heading,
.mrp-weblet-blog .weblet_blog-blog-entry h1.weblet_blog-entry-heading {
  font-size: clamp(2.3rem, 4.4vw, 3.6rem) !important;
  line-height: 1.05 !important;
}

/* ---- Blog-list title (H2, text is inside a span) ---- */
.mrp-weblet-blog h2.weblet_blog-entry-heading,
.mrp-weblet-blog h2.weblet_blog-entry-heading a,
.mrp-weblet-blog h2.weblet_blog-entry-heading .weblet_blog-entry-heading-text,
.mrp-weblet-blog .weblet_blog-entry-heading-text.weblet_blog-entry-heading-text {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem) !important;
  line-height: 1.08 !important;
}

/* ===================================================================
   GENERIC BUTTON / READ-MORE TYPE → Inter, bold, tracked
   =================================================================== */
.mrp-weblet-blog a.button,
.mrp-weblet-blog .button,
.mrp-weblet-blog .btn,
.mrp-weblet-blog .read-more,
.mrp-weblet-blog .blog-read-more {
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* ===================================================================
   "READ" PERMALINK BUTTON → gold fill, white label, navy hover
   =================================================================== */
.mrp-weblet-blog .weblet_blog-entry-full-link .weblet_blog-entry-permalink,
.mrp-weblet-blog a.weblet_blog-entry-permalink {
  display: inline-block !important;
  background: #D3AE58 !important;        /* brand dark gold */
  color: #FFFFFF !important;             /* white label */
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 14px 30px !important;
  border: 1px solid #D3AE58 !important;
  border-radius: 0 !important;
}

/* the visible label lives inside a <span> — force font + colour on it */
.mrp-weblet-blog .weblet_blog-entry-permalink span {
  color: #FFFFFF !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 800 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
}

/* hover / focus → navy fill */
.mrp-weblet-blog .weblet_blog-entry-full-link .weblet_blog-entry-permalink:hover,
.mrp-weblet-blog .weblet_blog-entry-full-link .weblet_blog-entry-permalink:focus,
.mrp-weblet-blog a.weblet_blog-entry-permalink:hover,
.mrp-weblet-blog a.weblet_blog-entry-permalink:focus {
  background: #112431 !important;
  border-color: #112431 !important;
  color: #FFFFFF !important;
}
.mrp-weblet-blog .weblet_blog-entry-permalink:hover span,
.mrp-weblet-blog .weblet_blog-entry-permalink:focus span {
  color: #FFFFFF !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
}

