/* Estates page custom styles */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

.estates-hero { padding: 56px 0; background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02)); }
.estates-hero .hero-inner { display:flex; align-items:center; gap:32px; }
.estates-hero .hero-text h2 { font-size:2.2rem; color: var(--accent-dark); margin-bottom:8px; }
.estates-hero .hero-text p { color: #4b4b4b; }
.estates-hero-img img { width:420px; max-width: 40%; height:auto; border-radius:10px; object-fit:cover; border:1px solid rgba(0,0,0,0.04); }

.estates-list { padding: 40px 0 80px; }
.estates-list h2 { font-size:1.8rem; color: var(--accent); margin-bottom:6px; }
.estates-list .muted { color:#6b6b6b; margin-bottom:18px; }

.estates-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
.estate-card { background:#fff; border-radius:12px; overflow:hidden; box-shadow: 0 10px 28px rgba(0,0,0,0.06); border:1px solid rgba(0,0,0,0.04); }
.estate-card img { width:100%; height:auto; aspect-ratio: 16/9; object-fit: cover; display:block; }
.estate-body { padding:14px 16px; }
.estate-body h3 { margin-bottom:6px; color:var(--accent-dark); }
.estate-body .meta { font-size:0.92rem; color:#777; margin-bottom:8px; }
.estate-body .desc { color:#444; margin-bottom:12px; }
.estate-actions { display:flex; gap:12px; }

/* Responsive */
@media (max-width: 1000px) { .estates-grid { grid-template-columns: repeat(2,1fr); } .estates-hero-img img { max-width: 45%; } }
@media (max-width: 640px) { .estates-grid { grid-template-columns: 1fr; } .estates-hero .hero-inner { flex-direction: column; text-align:center; } .estates-hero-img img { max-width: 100%; } }

/* small tweak for CTA button */
.btn.primary { padding:8px 12px; border-radius:8px; }
