/* ==========================================================================
   BuildWire — Construction Industry News & Blog Template
   Shared stylesheet for index.html, blog.html, news.html, post.html
   ========================================================================== */

:root {
  --navy-950: #0b1420;
  --navy-900: #0f1b2d;
  --navy-800: #16273e;
  --navy-700: #1e3352;
  --navy-600: #2a4568;
  --steel-500: #5b7290;
  --steel-300: #a9b8ca;
  --steel-100: #eef1f5;
  --paper: #f6f7f9;
  --white: #ffffff;
  --orange-600: #d9540a;
  --orange-500: #f4741c;
  --orange-400: #ff8a3d;
  --yellow-400: #ffb703;
  --ink: #1b2431;
  --ink-soft: #4a5568;
  --line: #e2e6ec;
  --success: #2f8a4b;

  --font-head: "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 27, 45, 0.06), 0 1px 1px rgba(15, 27, 45, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 27, 45, 0.10);
  --shadow-lg: 0 20px 48px rgba(15, 27, 45, 0.16);
  --container: 1180px;
}

@font-face {
  font-family: "Oswald";
  src: local("Oswald");
  font-weight: 400 700;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--navy-900);
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  background: var(--orange-500);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary { background: var(--orange-500); color: var(--white); }
.btn-primary:hover { background: var(--orange-600); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy-900); }
.btn-dark { background: var(--navy-900); color: var(--white); }
.btn-dark:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: var(--steel-300);
  font-size: 12.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar-left { display: flex; gap: 18px; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--orange-400); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: var(--steel-300); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--navy-900);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.logo .mark {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  font-size: 19px;
  font-weight: 800;
  transform: rotate(-4deg);
}
.logo small {
  display: block;
  font-family: var(--font-body);
  text-transform: none;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--steel-300);
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--steel-300);
  padding: 10px 16px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.main-nav a.active { color: var(--orange-400); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(244,116,28,0.08) 0 2px, transparent 2px 26px);
  pointer-events: none;
}
.hero .container {
  position: relative;
  padding: 64px 24px 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,116,28,0.15);
  border: 1px solid rgba(244,116,28,0.4);
  color: var(--orange-400);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: 46px;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--orange-400); }
.hero p {
  color: var(--steel-300);
  font-size: 16.5px;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--white);
}
.hero-stats div span { font-size: 12.5px; color: var(--steel-300); text-transform: uppercase; letter-spacing: 0.06em; }

.hero-feature {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.hero-feature img { height: 220px; object-fit: cover; width: 100%; }
.hero-feature .body { padding: 22px 22px 24px; }
.hero-feature .meta { font-size: 12px; color: var(--ink-soft); margin-top: 10px; }

/* ---------- Section headers ---------- */
.section { padding: 64px 0; }
.section.alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head h2 { font-size: 30px; margin-top: 8px; }
.section-head .desc { color: var(--ink-soft); max-width: 480px; margin-top: 8px; font-size: 14.5px; }
.section-link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-600);
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange-500);
}
.section-link:hover { color: var(--navy-900); border-color: var(--navy-900); }

/* ---------- Cards / Grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .thumb { position: relative; height: 190px; overflow: hidden; background: var(--steel-100); }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .thumb img { transform: scale(1.06); }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  color: var(--white);
}
.badge.news { background: var(--navy-800); }
.badge.blog { background: var(--orange-500); }

.card .body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .cat { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-600); }
.card h3 { font-size: 18.5px; text-transform: none; letter-spacing: 0; font-weight: 600; font-family: var(--font-body); color: var(--navy-900); }
.card h3 a:hover { color: var(--orange-600); }
.card p.excerpt { color: var(--ink-soft); font-size: 14px; margin: 0; flex: 1; }
.card .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--steel-500);
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.card .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--steel-500); }

/* featured / horizontal card */
.card.horizontal { flex-direction: row; }
.card.horizontal .thumb { width: 42%; height: auto; flex-shrink: 0; }
.card.horizontal .body { justify-content: center; }

/* ---------- Filter pills ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.filter-pill {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-pill:hover { border-color: var(--orange-400); color: var(--orange-600); }
.filter-pill.active { background: var(--navy-900); border-color: var(--navy-900); color: var(--white); }

/* ---------- Page header (blog/news listing) ---------- */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(244,116,28,0.08) 0 2px, transparent 2px 26px);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); font-size: 38px; margin-top: 10px; }
.page-hero p { color: var(--steel-300); max-width: 560px; margin-top: 12px; font-size: 15px; }
.breadcrumb { font-size: 12.5px; color: var(--steel-300); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--orange-400); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Sidebar ---------- */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-box h4 { font-size: 15px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--orange-500); }
.sidebar-list li { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sidebar-list li:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-list img { width: 62px; height: 52px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.sidebar-list h5 { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; text-transform: none; letter-spacing: 0; line-height: 1.35; color: var(--navy-900); }
.sidebar-list h5 a:hover { color: var(--orange-600); }
.sidebar-list .date { font-size: 11px; color: var(--steel-500); margin-top: 4px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--steel-100);
  color: var(--ink-soft);
  font-weight: 500;
}
.tag:hover { background: var(--orange-500); color: var(--white); }

.newsletter-box {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border: none;
}
.newsletter-box h4 { color: var(--white); border-color: var(--orange-500); }
.newsletter-box p { font-size: 13px; color: var(--steel-300); margin: 0 0 16px; }
.newsletter-box input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.newsletter-box input::placeholder { color: var(--steel-300); }

/* ---------- Post / Article page ---------- */
.post-header { padding: 44px 0 0; }
.post-header .cat-link {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--orange-500);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.post-header h1 {
  font-size: 36px;
  max-width: 820px;
  margin-bottom: 16px;
}
.post-header .excerpt { font-size: 17px; color: var(--ink-soft); max-width: 760px; margin-bottom: 22px; }
.post-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 30px;
}
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--yellow-400));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: var(--navy-950);
}
.post-byline .who strong { display: block; font-size: 14px; color: var(--navy-900); }
.post-byline .who span { font-size: 12.5px; color: var(--steel-500); }
.post-byline .share { margin-left: auto; display: flex; gap: 8px; }
.share a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--ink-soft);
}
.share a:hover { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

.post-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 34px; box-shadow: var(--shadow-md); }
.post-cover img { width: 100%; height: 420px; object-fit: cover; }

.post-body { font-size: 16.5px; color: #2b3646; max-width: 760px; }
.post-body p { margin: 0 0 20px; }
.post-body h2 { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 23px; font-weight: 700; color: var(--navy-900); margin: 34px 0 14px; }
.post-body h3 { font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-size: 19px; font-weight: 700; color: var(--navy-900); margin: 28px 0 12px; }
.post-body ul, .post-body ol { margin: 0 0 20px; padding-left: 22px; }
.post-body li { margin-bottom: 8px; }
.post-body blockquote {
  margin: 26px 0;
  padding: 4px 0 4px 22px;
  border-left: 4px solid var(--orange-500);
  font-style: italic;
  font-size: 18px;
  color: var(--navy-800);
}
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 34px; max-width: 760px; }

.post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 46px; align-items: start; }

.related-section { background: var(--white); border-top: 1px solid var(--line); padding: 60px 0; margin-top: 50px; }

/* ---------- About & Contact (homepage sections) ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.about-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-md); height: 380px; width: 100%; object-fit: cover; }
.about-list { margin-top: 22px; display: grid; gap: 14px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14.5px; color: var(--ink-soft); }
.about-list .check {
  width: 22px; height: 22px; border-radius: 50%; background: var(--orange-500); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; margin-top: 2px;
}
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat-strip div strong { display: block; font-family: var(--font-head); font-size: 30px; color: var(--navy-900); }
.stat-strip div span { font-size: 12.5px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.05em; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
}
.contact-info-list { display: grid; gap: 20px; margin-top: 24px; }
.contact-info-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px;
}
.contact-info-list .icon {
  width: 40px; height: 40px; border-radius: 8px; background: var(--navy-900); color: var(--orange-400);
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.contact-info-list strong { display: block; font-size: 14px; color: var(--navy-900); margin-bottom: 3px; }
.contact-info-list span { font-size: 13.5px; color: var(--ink-soft); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  color: var(--navy-800); margin-bottom: 7px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 6px;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink); background: var(--paper);
  transition: border-color 0.15s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange-400); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12px; color: var(--steel-500); margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: var(--steel-300); padding: 60px 0 0; margin-top: 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid p { font-size: 13.5px; color: var(--steel-300); margin-top: 14px; max-width: 280px; }
.footer-grid h5 { font-family: var(--font-head); font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul a { font-size: 13.5px; color: var(--steel-300); }
.footer-grid ul a:hover { color: var(--orange-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
}
.footer-social a:hover { background: var(--orange-500); border-color: var(--orange-500); color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 12.5px; color: var(--steel-500); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--orange-400); }
.footer-legal { display: flex; gap: 20px; }

/* ---------- Misc ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination button, .pagination span {
  width: 38px; height: 38px; border-radius: 6px; border: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 13px; cursor: pointer;
}
.pagination .active { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .about-wrap, .contact-wrap, .post-layout, .layout-with-sidebar { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--navy-900); padding: 12px; gap: 2px; box-shadow: var(--shadow-lg);
  }
  .topbar-left span:nth-child(2) { display: none; }
  .grid { grid-template-columns: 1fr; }
  .grid.cols-4 { grid-template-columns: 1fr; }
  .card.horizontal { flex-direction: column; }
  .card.horizontal .thumb { width: 100%; height: 190px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .post-cover img { height: 240px; }
  .post-header h1 { font-size: 27px; }
}
