/* Guide Immobilier USA — France-USA-Net.Com */
.realestate-topic-grid {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}

@media (min-width: 640px) {
  .realestate-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .realestate-topic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.realestate-topic-card {
  border: 1px solid rgba(44, 95, 78, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  background: linear-gradient(145deg, #fdfbf8 0%, #ffffff 100%);
  color: #14110e;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.realestate-topic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(25, 35, 30, 0.1);
}

.realestate-topic-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #2c5f4e;
}

.realestate-topic-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #3d3834;
}

.realestate-topic-card a {
  color: #b8703a;
  font-weight: 600;
}

.realestate-step-list {
  counter-reset: re-step;
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.realestate-step-list > li {
  counter-increment: re-step;
  position: relative;
  padding: 0 0 16px 2.75rem;
  margin-bottom: 8px;
  line-height: 1.65;
}

.realestate-step-list > li::before {
  content: counter(re-step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c5f4e, #1a3d32);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.realestate-forms-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .realestate-forms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.realestate-forms-grid .realestate-panel {
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(20, 17, 14, 0.1);
}

.realestate-forms-grid .realestate-panel--light {
  background: linear-gradient(145deg, #fdfbf8 0%, #ffffff 100%);
  color: #14110e;
}

.realestate-forms-grid .realestate-panel--light h3 {
  margin-top: 0;
  color: #2c5f4e;
}

.realestate-forms-grid .realestate-panel--light li {
  color: #3d3834;
}

.realestate-forms-grid .realestate-panel--light a {
  color: #1d4ed8;
  font-weight: 600;
}

.realestate-forms-grid .realestate-panel--dark {
  background: linear-gradient(135deg, #2c5f4e 0%, #0b1020 100%);
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.14);
}

.realestate-forms-grid .realestate-panel--dark h3 {
  margin-top: 0;
  color: #f4d58a;
}

.realestate-forms-grid .realestate-panel--dark li {
  color: #e2e8f0;
}

.realestate-forms-grid .realestate-panel--dark a {
  color: #93c5fd;
  font-weight: 600;
}

.realestate-forms-grid ul {
  margin: 8px 0 0;
  padding-left: 1.2rem;
}

.realestate-callout {
  margin-top: 14px;
  border-radius: 12px;
  padding: 14px 16px;
  border-left: 4px solid #b8703a;
  background: linear-gradient(135deg, #fff9f3 0%, #fff0e6 100%);
  color: #2e2418;
  font-size: 0.94rem;
  line-height: 1.6;
}

.realestate-callout strong {
  color: #2c5f4e;
}
