/*
Theme Name: Hello Realworks Child
Theme URI: https://example.com/
Description: Child theme for Hello Elementor with Tussendoor Realworks/WordPress Makelaar plugin template bridge.
Author: OpenAI
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-realworks-child
*/

:root {
  --hrc-accent: #0f172a;
  --hrc-muted: #64748b;
  --hrc-border: #e2e8f0;
  --hrc-bg: #ffffff;
  --hrc-radius: 16px;
  --hrc-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hrc-container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.hrc-grid {
  display: grid;
  gap: 24px;
}

.hrc-grid--properties {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.hrc-card {
  background: var(--hrc-bg);
  border: 1px solid var(--hrc-border);
  border-radius: var(--hrc-radius);
  overflow: hidden;
  box-shadow: var(--hrc-shadow);
}

.hrc-card__body {
  padding: 20px;
}

.hrc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--hrc-muted);
  font-size: 14px;
}

.hrc-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.hrc-section {
  padding: 32px 0;
}

.hrc-single {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 32px;
}

@media (max-width: 900px) {
  .hrc-single {
    grid-template-columns: 1fr;
  }
}
