.post-hero {
  position: relative;
  height: 65vh;
  min-height: 420px;
  overflow: hidden;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 60, 0.6),
    rgba(10, 30, 60, 0.85)
  );
  z-index: 1;
}

.post-hero-content {
  position: absolute;
  bottom: 50px;
  z-index: 2;
  color: #fff;
}

.post-hero-content h1 {
  font-size: 42px;
  max-width: 700px;
  line-height: 1.2;
}

.post-meta {
  font-size: 14px;
  opacity: 0.85;
}




.post-content-section {
  padding: 80px 0;
}

.post-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
}

.post-body {
  font-size: 17px;
  line-height: 1.8;
  color: #1f2933;
}

.post-body h2 {
  margin-top: 40px;
  font-size: 26px;
  color: #102a43;
}

.post-body .lead {
  font-size: 19px;
  font-weight: 500;
  color: #334e68;
}


.post-sidebar .sidebar-box {
  background: #f5f9fc;
  padding: 25px;
  border-radius: 12px;
}

.post-sidebar h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #102a43;
}

.post-sidebar ul {
  list-style: none;
  padding: 0;
}

.post-sidebar li {
  margin-bottom: 10px;
}

.post-sidebar a {
  text-decoration: none;
  color: #246696;
  font-size: 14px;
}



@media (max-width: 992px) {
  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-hero-content h1 {
    font-size: 32px;
  }
}
