/* show_post — extends showPage reading layout */
.post_view .post_meta{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:10px 14px;
  margin-bottom:12px;
}
.post_view .post_meta .eyebrow{
  margin:0;
}
.post_view .post_date{
  display:inline-flex;
  align-items:center;
  color:#8a8991;
  font-size:13px;
  font-weight:200;
  line-height:1.4;
}
.post_view .map_link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:16px;
  color:#0c6fcc;
  font-size:13px;
  font-weight:200;
  text-decoration:none;
  transition:color .2s;
}
.post_view .map_link:hover{color:#0a5fb0}
.post_view .map_link .icon{
  font-size:14px;
  margin:0;
  color:inherit;
}

.post_view .post_cover{
  margin:0 0 28px;
  border-radius:16px;
  overflow:hidden;
}
.post_view .post_cover img{
  display:block;
  width:100%;
  height:auto;
  max-height:420px;
  object-fit:cover;
}

@media screen and (max-width: 768px){
  .post_view .post_cover{
    margin-bottom:20px;
    border-radius:14px;
  }
  .post_view .post_cover img{max-height:260px}
  .post_view .post_date{font-size:12px}
  .post_view .map_link{margin-top:12px;font-size:12px}
}
