/* Current Offerings — Just Listed auto-sync
   Mirror of the editorial card styles used in /properties.html Just Listed section.
   Source of truth: /properties.html → .ec-ed-card
   Shared so the homepage cards render identically to the Just Listed cards
   pulled in by /js/current-offerings.js.
*/

.ec-co-section { background: #F7F5F0; font-family: 'Lato', system-ui, sans-serif; color: #222; }

.ec-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 1rem;
}
@media (max-width: 960px) { .ec-featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ec-featured-grid { grid-template-columns: 1fr; } }

.ec-featured-grid .ec-ed-card {
  background: #fff; text-decoration: none; color: inherit; display: block;
  box-shadow: 0 2px 14px rgba(27,42,74,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(27,42,74,.08);
}
.ec-featured-grid .ec-ed-card:hover { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(27,42,74,.16); }

.ec-featured-grid .ec-ed-card-head {
  background: linear-gradient(135deg, #1B2A4A 0%, #2A3E68 100%);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 3px solid #C4A35A;
}
.ec-featured-grid .ec-ed-monogram {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 34px; letter-spacing: .04em; color: #fff;
  border: 1px solid rgba(196,163,90,.7); padding: 4px 12px;
}
.ec-featured-grid .ec-ed-tag {
  font-size: 11px; letter-spacing: .18em; color: #C4A35A; text-transform: uppercase;
  font-weight: 700;
}
.ec-featured-grid .ec-ed-card-body { padding: 22px 24px 24px; }
.ec-featured-grid .ec-ed-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500; color: #1B2A4A; font-size: 24px; margin: 0 0 8px; line-height: 1.2;
}
.ec-featured-grid .ec-ed-stats { margin: 0 0 10px; font-size: 13.5px; color: #4a4a4a; letter-spacing: .03em; }
.ec-featured-grid .ec-ed-price { font-family: 'Cormorant Garamond', Georgia, serif; color: #C4A35A; font-size: 22px; margin: 0 0 14px; letter-spacing: .02em; }
.ec-featured-grid .ec-ed-blurb { font-size: 14.5px; color: #3a3a3a; line-height: 1.6; margin: 0 0 16px; }
.ec-featured-grid .ec-ed-cta { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #1B2A4A; font-weight: 700; }
.ec-featured-grid .ec-ed-card:hover .ec-ed-cta { color: #C4A35A; }

/* Loading skeleton */
.ec-featured-grid.loading .ec-ed-card {
  min-height: 280px;
  background: linear-gradient(90deg, #eaeaea 0%, #f3f3f3 50%, #eaeaea 100%);
  background-size: 200% 100%;
  animation: ec-co-shimmer 1.4s ease-in-out infinite;
  border: 1px solid rgba(27,42,74,.06);
}
@keyframes ec-co-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
