/* === Property Search: polished listing cards (added by Claude) === */
.impress-property-showcase.impress-row { gap: 24px; }

.impress-showcase-property {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(14,14,14,0.08);
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  transition: box-shadow .2s ease, transform .2s ease;
}
.impress-showcase-property:hover {
  box-shadow: 0 8px 22px rgba(14,14,14,0.13);
  transform: translateY(-3px);
}

.impress-showcase-photo { display: block; text-decoration: none; position: relative; }
.impress-showcase-photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}

.impress-price {
  display: block;
  color: #2f8aa8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.1;
  padding: 14px 18px 2px;
  margin: 0;
}

.impress-address { padding: 0 18px 14px; margin: 0; line-height: 1.45; }
.impress-street { display: block; color: #0e0e0e; font-size: 14px; font-weight: 600; }
.impress-cityname, .impress-state { color: #8a8a8a; font-size: 13px; }

.impress-beds-baths-sqft {
  margin: auto 0 0;
  padding: 12px 18px 16px;
  border-top: 1px solid #efece5;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #5f5a50;
  font-size: 12.5px;
}
.impress-beds-baths-sqft span { white-space: nowrap; }

.impress-status {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4aa8c8;
  color: #fff;
  font-size: 11px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 5px;
  font-weight: 600;
}

/* === Property Search: even full-width distribution (added by Claude) === */
#home-search .impress-property-showcase.impress-row,
.impress-property-showcase.impress-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  width: 100% !important;
  gap: 24px !important;
}
@media (max-width: 960px) {
  #home-search .impress-property-showcase.impress-row,
  .impress-property-showcase.impress-row { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  #home-search .impress-property-showcase.impress-row,
  .impress-property-showcase.impress-row { grid-template-columns: 1fr !important; }
}

/* === Property Search: center listings within page (added by Claude) === */
#home-search .impress-property-showcase.impress-row,
.impress-property-showcase.impress-row {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* === Property Search: space between search box and filter pills (added by Claude) === */
.search-filters { margin-top: 18px !important; }

/* ===== Space Coast with Kevin — IDX Broker theme ===== */
:root {
  --sck-navy: #0f2440;   /* swap for your exact brand navy */
  --sck-gold: #c9a24b;   /* swap for your exact brand gold */
  --sck-body-font: 'DM Sans', sans-serif;
  --sck-heading-font: 'Playfair Display', serif;
}

/* Hide the "Global Wrapper" title + post date on the wrapper page */
.page-id-XXXX .entry-title,
.page-id-XXXX .entry-meta,
.page-id-XXXX .posted-on {
  display: none;
}

/* Typography */
#IDX-main, #IDX-main p, #IDX-main label, #IDX-main input, #IDX-main td {
  font-family: var(--sck-body-font) !important;
}
#IDX-main h1, #IDX-main h2, #IDX-main h3,
#IDX-main .IDX-detailsAddress, .IDX-resultsAddress {
  font-family: var(--sck-heading-font) !important;
  color: var(--sck-navy) !important;
}

/* Buttons — navy with gold hover */
#IDX-main .IDX-btn,
#IDX-main .IDX-btn-primary,
#IDX-main button,
#IDX-main input[type="submit"] {
  background-color: var(--sck-navy) !important;
  border-color: var(--sck-navy) !important;
  color: #fff !important;
  border-radius: 4px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
}
#IDX-main .IDX-btn:hover,
#IDX-main button:hover {
  background-color: var(--sck-gold) !important;
  border-color: var(--sck-gold) !important;
  color: var(--sck-navy) !important;
}

/* Price styling */
#IDX-main .IDX-detailsPrice, .IDX-resultsPrice {
  color: var(--sck-gold) !important;
  font-weight: 700;
}

/* Contact form panel */
#IDX-main .IDX-panel-heading,
#IDX-main .IDX-leadSignupHeader {
  background-color: var(--sck-navy) !important;
  color: #fff !important;
  font-family: var(--sck-heading-font) !important;
}
#IDX-main input[type="text"],
#IDX-main input[type="email"],
#IDX-main input[type="tel"] {
  border: 1px solid #d8dde6 !important;
  border-radius: 4px !important;
}
#IDX-main input:focus {
  border-color: var(--sck-gold) !important;
  outline: none !important;
}

/* Top "NEW SEARCH" bar */
#IDX-main .IDX-navbar, .IDX-navbar-default {
  background-color: var(--sck-navy) !important;
}