/* =========================================================
   REAL ESTATE — INDUSTRY PAGE
   Premium, consistent with hero.css + cta.css
========================================================= */

.page-content { background: #ffffff; }

/* Universal container */
.content-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 24px;
}

/* Section backgrounds */
.content-section { background: #ffffff; }
.content-section.alt { background: #f4f7fb; }

/* Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e1e6ee, transparent);
  margin: 0;
}

/* Header block */
.section-header { margin-bottom: 56px; }

.section-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: #5c6f86;
  margin-bottom: 6px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: #071a2f;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 18px;
  line-height: 1.65;
  color: #4b5c70;
  max-width: 820px;
}

/* Grids */
.card-grid {
  display: grid;
  gap: 32px;
}

.card-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.card-grid.two-up { grid-template-columns: repeat(2, 1fr); }

/* Primary cards */
.info-card {
  background: #ffffff;
  border: 1px solid rgba(7, 26, 47, 0.10);
  border-radius: 16px;
  padding: 34px 32px;
  box-shadow: 0 10px 30px rgba(7,26,47,0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.info-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #071a2f;
}

.info-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #425466;
}

@media (hover: hover) {
  .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(7,26,47,0.12);
  }
}

/* Feature row (Reg AB AUP section) */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid rgba(7, 26, 47, 0.10);
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 26px rgba(7,26,47,0.07);
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #071a2f;
}

.feature-card p {
  font-size: 14.8px;
  line-height: 1.65;
  color: #425466;
}

/* Stack cards (Advisory) */
.stack-cards { display: grid; gap: 26px; }

.stack-card {
  background: #ffffff;
  border-left: 6px solid #0b5ed7;
  padding: 34px 38px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(7,26,47,0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stack-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #071a2f;
}

.stack-card p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #425466;
  max-width: 92%;
}

@media (hover: hover) {
  .stack-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 38px rgba(7,26,47,0.12);
  }
}

/* Inline action links */
.inline-action {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: #0b5ed7;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.inline-action::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s ease;
}

.inline-action:hover { text-decoration: underline; }
.inline-action:hover::after { transform: translateX(3px); }

/* Callouts */
.callout-box {
  margin-top: 24px;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(7, 26, 47, 0.12);
  background: rgba(255,255,255,0.65);
  color: #2f3e52;
  line-height: 1.6;
}

.callout-box.subtle {
  background: #ffffff;
  border-color: rgba(7, 26, 47, 0.10);
}

/* CTA sizing harmony */
.cta-panel { padding: 72px 28px; }
.cta-panel h2 { font-size: 34px; margin-bottom: 14px; }
.cta-panel p { font-size: 18px; max-width: 720px; margin: 0 auto 28px; }
.cta-panel .cta-btn { margin-bottom: 26px; }

/* Mobile */
@media (max-width: 900px) {
  .card-grid.three-up,
  .card-grid.two-up { grid-template-columns: 1fr; }

  .feature-row { grid-template-columns: 1fr; }

  .section-header h2 { font-size: 28px; }

  .content-inner { padding: 72px 20px; }
}

@media (max-width: 768px) {
  .content-inner { padding: 64px 20px; }
  .info-card, .stack-card, .feature-card { box-shadow: 0 6px 18px rgba(7,26,47,0.10); }
}
