/* ===========================
   SINGLE NEWS POST (OC247)
   File: assets/single-news.css
   =========================== */

/* Page wrapper */
.oc247post {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 70px;
}

.oc247postcrumbs {
  margin-top: 28px;
}

/* Force true 1-column shell (sidebar hidden) */
.oc247postwrap,
.oc247postgrid,
.oc247postmain {
  width: 100%;
  max-width: 100%;
}

.oc247postgrid {
  display: block;
}

/* Hide sidebar entirely (until you add real sidebar content) */
.oc247postside {
  display: none;
}

/* Breadcrumbs (fix “pushed right” + theme overrides) */
.oc247postcrumbs {
  font-size: 13px;
  color: #6b778b;
  margin: 0 0 12px;
  display: block;
  width: 100%;
  max-width: none;
  float: none;
  clear: both;
  text-align: left;
}

.oc247postcrumbs a,
.oc247postcrumbs span {
  display: inline;
}

.oc247postcrumbs a {
  color: #1a56db;
  text-decoration: none;
}

.oc247postcrumbs a:hover {
  text-decoration: underline;
}

.oc247postcrumbsep {
  color: #9aa6b6;
}

/* Title */
.oc247posttitle {
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: 38px;
  color: #0b1220;
}

/* Meta line */
.oc247postmeta {
  font-size: 14px;
  color: #6b778b;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0 0 14px;
}

.oc247postmetalabel {
  color: #516074;
  font-weight: 600;
}

.oc247postmetasep {
  color: #9aa6b6;
  margin: 0 6px;
}

/* Author box */
.oc247authorbox {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid #e6eaf1;
  border-radius: 14px;
  background: #fff;
  margin: 0 0 18px;
}

.oc247authoravatar img {
  border-radius: 999px;
  display: block;
}

.oc247authorname {
  font-weight: 800;
  color: #0b1220;
  line-height: 1.2;
  margin: 0 0 6px;
}

.oc247authorbio {
  color: #3a4659;
  line-height: 1.55;
  font-size: 14px;
}

/* Hero image (cap it so it doesn’t explode) */
.oc247posthero {
  margin: 0 0 18px;
}

.oc247postheroimg {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 1px solid #e6eaf1;

  /* the fix */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: auto;
  max-height: 520px;
}

/* Content */
.oc247postcontent {
  font-size: 17px;
  line-height: 1.75;
  color: #1e2a3b;
  max-width: 78ch;
}

.oc247postcontent > *:first-child {
  margin-top: 0;
}

.oc247postcontent img,
.oc247postcontent video,
.oc247postcontent iframe {
  max-width: 100%;
  height: auto;
}

.oc247postcontent a {
  color: #1a56db;
}

.oc247postcontent h2 {
  margin: 28px 0 10px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #0b1220;
}

.oc247postcontent h3 {
  margin: 22px 0 10px;
  font-size: 19px;
  line-height: 1.25;
  color: #0b1220;
}

.oc247postcontent ul,
.oc247postcontent ol {
  padding-left: 20px;
}

/* Comments */
.oc247comments {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #edf0f6;
}

/* Related */
.oc247related {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #edf0f6;
}

.oc247relatedtitle {
  margin: 0 0 14px;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: #0b1220;
}

.oc247relatedgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.oc247relatedmedia {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e6eaf1;
  background: #f3f5f8;
}

.oc247relatedimg {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.oc247relatedimgplaceholder {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  color: #6b778b;
  font-size: 13px;
}

.oc247relatedcardtitle {
  margin: 10px 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.oc247relatedcardtitle a {
  color: #0b1220;
  text-decoration: none;
  font-weight: 800;
}

.oc247relatedcardtitle a:hover {
  text-decoration: underline;
}

.oc247relatedmeta {
  font-size: 13px;
  color: #6b778b;
}

/* Responsive */
@media (max-width: 980px) {
  .oc247posttitle {
    font-size: 34px;
  }

  .oc247relatedgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .oc247posttitle {
    font-size: 28px;
  }

  .oc247relatedgrid {
    grid-template-columns: 1fr;
  }
}

/* Hard overrides at the end (beats theme) */
.oc247post .oc247postgrid {
  display: block !important;
}

.oc247post .oc247postside {
  display: none !important;
}

.oc247post .oc247postmain {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.oc247post .oc247postcrumbs {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  text-align: left !important;
  float: none !important;
  clear: both !important;
}

/* Featured image: smaller + square */

.oc247posthero {
  margin: 0 auto 22px;
  max-width: 520px;          /* controls size */
}

.oc247postheroimg {
  width: 100%;
  aspect-ratio: 1 / 1;       /* force square */
  object-fit: cover;         /* crop cleanly */
  border-radius: 14px;
  border: 1px solid #e6eaf1;
  display: block;
}

/* Top byline (name only) */
.oc247byline {
  font-size: 14px;
  color: #516074;
  margin: 0 0 12px;
}

.oc247byline-label {
  font-weight: 600;
  margin-right: 6px;
}

.oc247byline-name {
  font-weight: 800;
  color: #0b1220;
}

/* Bottom author bio section */
.oc247authorbottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid #edf0f6;
}

.oc247authorbottomtitle {
  margin: 0 0 12px;
  font-size: 18px;
  color: #0b1220;
  font-weight: 800;
}

.oc247authorbottombox {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid #e6eaf1;
  border-radius: 14px;
  background: #fff;
}

/* Clean editorial meta block */
.oc247meta {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #edf0f6; /* subtle divider */
}

.oc247meta-author {
  font-size: 15px;
  margin-bottom: 4px;
  color: #1e2a3b;
}

.oc247meta-name {
  font-weight: 800;
  color: #0b1220;
  text-decoration: none;
}

.oc247meta-name:hover {
  text-decoration: underline;
}

.oc247meta-dates {
  font-size: 14px;
  color: #6b778b;
}

.oc247meta-sep {
  margin: 0 6px;
  color: #9aa6b6;
}

/* Hide theme "Last Updated" line */
.oc247post .post-modified-info {
  display: none !important;
}