/* ── Hero Banner (matches 404 template style) ── */
.construk-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center center;
  padding: 2em;
  padding-top: 120px; /* clear fixed HFE header */
}
.construk-hero__overlay {
  position: absolute;
  inset: 0;
  background: #111111;
  opacity: 0.7;
  z-index: 1;
}
.construk-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 1em;
}
.construk-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0 0 0.3em;
}
.construk-hero__breadcrumb {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}
.construk-hero__breadcrumb a {
  color: #F7931E;
  text-decoration: none;
}
.construk-hero__breadcrumb a:hover {
  text-decoration: underline;
}

/* ── Post Body ── */
.construk-post {
  max-width: 860px;
  margin: 0 auto;
  padding: 3em 1.5em 4em;
}
.construk-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin-bottom: 2em;
  padding-bottom: 1.2em;
  border-bottom: 2px solid #F7931E;
  color: #7A7A7A;
  font-size: 14px;
}
.construk-post__meta i {
  margin-right: 0.4em;
  color: #F7931E;
}
.construk-post__content {
  font-size: 17px;
  line-height: 1.8;
  color: #222222;
}
.construk-post__content h2,
.construk-post__content h3,
.construk-post__content h4 {
  font-family: "Bebas Neue", sans-serif;
  color: #111111;
  margin-top: 1.5em;
}
.construk-post__content a {
  color: #F7931E;
}
.construk-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1.5em 0;
}
.construk-post__content blockquote {
  border-left: 4px solid #F7931E;
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: #FAFAFA;
  font-style: italic;
  color: #54595F;
}

/* ── Post Navigation ── */
.construk-post__nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
  padding-top: 1.5em;
  border-top: 1px solid #eee;
}
.construk-post__nav a {
  color: #F7931E;
  text-decoration: none;
  font-weight: 600;
}
.construk-post__nav a:hover {
  color: #111111;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .construk-hero { min-height: 35vh; padding-top: 100px; }
  .construk-post { padding: 2em 1em 3em; }
  .construk-post__meta { gap: 0.8em; }
}
