/* ===============================
   Featured Property Page Styles
   =============================== */

.fp-hero {
  min-height: 65vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.65),
      rgba(0,0,0,0.4)
    ),
    url("../images/markets-header.jpg") center / cover no-repeat;
}

.fp-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: #ffffff;
}

.fp-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.fp-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.fp-hero p {
  font-size: 1.15rem;
  max-width: 720px;
}

/* CONTENT */
.fp-content {
  max-width: 900px;
  margin: 5rem auto;
  padding: 0 1.5rem;
}

.fp-content section {
  margin-bottom: 4.5rem;
}

.fp-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

/* OVERVIEW */
.fp-overview-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.fp-details dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.75rem 1.5rem;
}

.fp-details dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
}

.fp-details dd {
  margin: 0;
  font-weight: 500;
}

/* ACTIONS */
.fp-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.fp-link {
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
}

.fp-link.primary {
  background: #111827;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
}

.fp-link.secondary {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
  padding-bottom: 0.25rem;
}

.fp-link:hover {
  opacity: 0.75;
}

/* NARRATIVE */
.fp-narrative p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* HIGHLIGHTS */
.fp-highlights ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.fp-highlights li {
  margin-bottom: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .fp-hero h1 {
    font-size: 2.25rem;
  }

  .fp-overview-grid {
    grid-template-columns: 1fr;
  }
}
