/* Hutch Homes — blog hub + article styling (added 2026-07)
   Brand: brown #8B4C19, accent #CF6426, cream #F8F5F2, ink #2b2620, body #5a5147.
   Inherits the site font (Open Sans). Pairs with hh-faq-breadcrumb.css. */

/* ---------- shared ---------- */
.hh-blog { color: #5a5147; }
.hh-blog .hh-wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Blog pages have no tall hero to sit under the site's fixed ~100px header,
   so offset the top of the page content to keep the breadcrumb visible. */
.hh-blogpage { padding-top: 112px; }

/* ---------- hub hero ---------- */
.hh-blog-hero {
  background: #F8F5F2;
  border-bottom: 1px solid rgba(139, 76, 25, .12);
  padding: clamp(40px, 7vw, 72px) 20px;
  text-align: center;
}
.hh-blog-hero .hh-eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 700; color: #CF6426; margin: 0 0 10px;
}
.hh-blog-hero h1 {
  font-size: clamp(1.9rem, 5vw, 2.9rem); line-height: 1.12; margin: 0 auto 14px;
  color: #2b2620; max-width: 18ch;
}
.hh-blog-hero p { max-width: 60ch; margin: 0 auto; font-size: 1.05rem; line-height: 1.6; }

/* ---------- hub grid ---------- */
.hh-blog-grid {
  display: grid; gap: 26px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1140px; margin: 0 auto; padding: clamp(36px, 6vw, 64px) 20px;
}
.hh-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid rgba(139, 76, 25, .14); border-radius: 14px; overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hh-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(139, 76, 25, .5); border-color: rgba(139, 76, 25, .3); }
.hh-card a.hh-card-img { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.hh-card a.hh-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hh-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.hh-card .hh-cat {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: #CF6426; margin: 0 0 8px;
}
.hh-card h2 { font-size: 1.2rem; line-height: 1.3; margin: 0 0 10px; color: #2b2620; }
.hh-card h2 a { color: inherit; text-decoration: none; }
.hh-card h2 a:hover { color: #8B4C19; }
.hh-card p { margin: 0 0 16px; font-size: .95rem; line-height: 1.6; }
.hh-card .hh-readmore {
  margin-top: auto; font-weight: 700; color: #8B4C19; text-decoration: none; font-size: .95rem;
}
.hh-card .hh-readmore:hover { text-decoration: underline; }

/* ---------- article ---------- */
.hh-post { max-width: 760px; margin: 0 auto; padding: clamp(30px, 5vw, 54px) 20px 8px; }
.hh-post .hh-eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 700; color: #CF6426; margin: 0 0 10px;
}
.hh-post h1 { font-size: clamp(1.8rem, 4.6vw, 2.6rem); line-height: 1.14; margin: 0 0 14px; color: #2b2620; }
.hh-post-meta { font-size: .85rem; color: #8a8079; margin: 0 0 26px; letter-spacing: .01em; }
.hh-post-hero { margin: 0 0 30px; border-radius: 14px; overflow: hidden; }
.hh-post-hero img { width: 100%; height: auto; display: block; }

.hh-short {
  background: #F8F5F2; border-left: 4px solid #8B4C19; border-radius: 0 10px 10px 0;
  padding: 18px 22px; margin: 0 0 30px; font-size: 1.05rem; line-height: 1.65; color: #4a423a;
}
.hh-short strong { color: #2b2620; }

.hh-post-body { font-size: 1.05rem; line-height: 1.75; color: #4a423a; }
.hh-post-body h2 { font-size: clamp(1.35rem, 3.2vw, 1.7rem); line-height: 1.25; margin: 38px 0 14px; color: #2b2620; }
.hh-post-body p { margin: 0 0 18px; }
.hh-post-body a { color: #8B4C19; font-weight: 600; text-decoration: none; }
.hh-post-body a:hover { text-decoration: underline; }
.hh-post-body ul { margin: 0 0 18px; padding-left: 22px; }
.hh-post-body li { margin: 0 0 8px; }

/* ---------- CTA + related ---------- */
.hh-post-cta {
  background: #8B4C19; color: #fff; border-radius: 16px; text-align: center;
  padding: clamp(30px, 5vw, 44px) 24px; margin: 44px auto 0; max-width: 760px;
}
.hh-post-cta h2 { color: #fff; font-size: clamp(1.4rem, 3.4vw, 1.9rem); margin: 0 0 10px; line-height: 1.2; }
.hh-post-cta p { color: rgba(255,255,255,.9); margin: 0 auto 22px; max-width: 46ch; line-height: 1.6; }
.hh-post-cta .hh-btn {
  display: inline-block; background: #CF6426; color: #fff; font-weight: 700;
  padding: 14px 30px; border-radius: 8px; text-decoration: none; transition: background .18s ease;
}
.hh-post-cta .hh-btn:hover { background: #b9541c; }

.hh-related { max-width: 760px; margin: 40px auto 0; padding: 0 20px; }
.hh-related h2 { font-size: 1.2rem; color: #2b2620; margin: 0 0 14px; }
.hh-related ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.hh-related a {
  display: inline-block; border: 1px solid rgba(139, 76, 25, .28); border-radius: 999px;
  padding: 8px 18px; color: #8B4C19; font-weight: 600; text-decoration: none; font-size: .92rem;
}
.hh-related a:hover { background: #F8F5F2; }

.hh-post-foot { max-width: 760px; margin: 30px auto 0; padding: 22px 20px 8px; }
.hh-post-foot a { color: #8B4C19; font-weight: 600; text-decoration: none; }
.hh-post-foot a:hover { text-decoration: underline; }
