@import url("/roompulse/style.css");

/* ---- GENERATED CONTENT PAGES ---- */
.content-page-hero .page-hero-inner {
  max-width: 860px;
}
.content-container {
  max-width: var(--rp-max);
}
.content-layout {
  display: block;
}
.content-article {
  background: var(--rp-surface);
  border: 1px solid var(--rp-border);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.24);
  max-width: 860px;
  margin: 0 auto;
}
.article-body {
  max-width: 72ch;
}
.article-body > * + * {
  margin-top: 1.1rem;
}
.article-body h2,
.article-body h3,
.article-body h4 {
  line-height: 1.25;
}
.article-body h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
}
.article-body h3 {
  margin-top: 1.8rem;
  font-size: 1.15rem;
}
.article-body p,
.article-body li,
.article-body blockquote {
  color: var(--rp-text-muted);
  font-size: 1rem;
  line-height: 1.85;
}
.article-body strong {
  color: var(--rp-text);
}
.article-body a {
  color: var(--rp-primary-light);
}
.article-body a:hover {
  color: #fff;
}
.article-body ul,
.article-body ol {
  padding-left: 1.35rem;
}
.article-body li + li {
  margin-top: .55rem;
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--rp-border);
  margin: 2rem 0;
}
.article-body blockquote {
  border-left: 3px solid var(--rp-primary-light);
  background: rgba(255,255,255,.03);
  padding: 1rem 1.25rem;
  border-radius: 0 .75rem .75rem 0;
}
.article-body code {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .4rem;
  padding: .1rem .35rem;
  color: var(--rp-text);
  font-size: .92em;
}
.related-section {
  border-top: 1px solid var(--rp-border);
}
.content-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.content-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--rp-border);
  background: var(--rp-surface);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.content-card:hover {
  transform: translateY(-3px);
  border-color: var(--rp-primary);
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.content-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--rp-border);
}
.content-card-body {
  padding: 1.15rem;
}
.content-card-eyebrow {
  display: inline-block;
  margin-bottom: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rp-primary-light);
}
.content-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: .55rem;
}
.content-card p {
  color: var(--rp-text-muted);
  font-size: .9rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .content-article { padding: 1.5rem; }
}
