/* ===========================================================
   SINGLE BLOG POST — Article Detail Page
   Built on the site's existing tokens from style.css :root
   --red:#EE3D25  --red-bright:#FF6A4D  --black:#0a0a0a
   --panel:#141414  --text-gray:#b3b3b3  --font: 'Segoe UI', Arial, Helvetica, sans-serif
=========================================================== */

.container { width: 100%; max-width: 1600px; margin: 0 auto; padding: 0 32px; }

/* ---------------------------------------------------------
   POST HERO — title + meta
--------------------------------------------------------- */
.postHero {
  background: var(--black);
  padding: 64px 0 40px;
  text-align: center;
  border-bottom: 3px solid var(--red);
}
.postHero__title {
  font-family: var(--font);
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-white);
  max-width: 1000px;
  margin: 0 auto 22px;
}
.postHero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.postHero__metaItem {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
}
.postHero__metaItem svg { width: 15px; height: 15px; color: var(--red-bright); flex-shrink: 0; }

/* ---------------------------------------------------------
   POST BREADCRUMBS — Home / Blogs / Post Title
--------------------------------------------------------- */
.postBreadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  margin: 0 auto 22px;
  max-width: 900px;
}
.postBreadcrumbs a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
  text-decoration: none;
  transition: color .15s ease;
}
.postBreadcrumbs a:hover { color: var(--red-bright); }
.postBreadcrumbs svg {
  width: 15px;
  height: 15px;
  color: var(--text-gray-dim);
  margin: 0 4px;
  flex-shrink: 0;
}
.postBreadcrumbs__current {
  font-size: 13px;
  font-weight: 600;
  color: var(--red-bright);
  max-width: 480px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .postHero { padding: 44px 0 32px; }
  .postHero__title { font-size: 28px; }
  .postBreadcrumbs__current { max-width: 200px; }
}

/* ---------------------------------------------------------
   FEATURED BANNER IMAGE
--------------------------------------------------------- */
.postBanner {
  background: var(--black);
  padding: 36px 0 0;
}
.postBanner__frame {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(0,0,0,0.55);
}
.postBanner__frame img { display: block; width: 100%; height: auto; }

/* ---------------------------------------------------------
   POST LAYOUT — sidebar / content / sidebar
--------------------------------------------------------- */
.postLayout {
  background: var(--black);
  padding: 56px 0 100px;
}
.postLayout__grid {
  display: grid;
  grid-template-columns: 280px minmax(0,1fr) 280px;
  gap: 48px;
  align-items: start;
}

@media (max-width: 1400px) {
  .postLayout__grid { grid-template-columns: 260px minmax(0,1fr) 260px; gap: 36px; }
}
@media (max-width: 1200px) {
  .postLayout__grid { grid-template-columns: 230px minmax(0,1fr) 230px; gap: 24px; }
}
@media (max-width: 992px) {
  .postLayout__grid { grid-template-columns: 1fr; }
  .postSidebar { position: static !important; }
  .postSidebar--right { order: 3; }
  .postMain { order: 2; }
  .postSidebar--left { order: 1; }
}

/* ---------------------------------------------------------
   SIDEBARS
--------------------------------------------------------- */
.postSidebar {
  position: sticky;
  top: 100px;
}

.postBox {
  background: #f6f6f7;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 22px 22px 20px;
}
.postBox + .postBox { margin-top: 20px; }

.postBox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 6px;
}
.postBox__title {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
}
.postBox__chevron { width: 16px; height: 16px; color: #6b6b6b; transition: transform .2s ease; flex-shrink: 0; }
.postBox__head.is-collapsed .postBox__chevron { transform: rotate(180deg); }

.postToc {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.postToc.is-collapsed { display: none; }
.postToc li a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: #6b6b6b;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: color .2s ease, border-color .2s ease;
}
.postToc li a:hover { color: var(--red); }
.postToc li a.is-active {
  color: var(--red);
  border-left-color: var(--red);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}

.postSocial {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.postSocial a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.postSocial a svg { width: 15px; height: 15px; }
.postSocial a:hover { background: var(--red); transform: translateY(-2px); }

.postQuickLinks { list-style: none; margin: 10px 0 0; padding: 0; }
.postQuickLinks li + li { border-top: 1px solid #e6e6e7; }
.postQuickLinks li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 2px;
  font-size: 14.5px;
  font-weight: 700;
  color: #232323;
  text-decoration: none;
  transition: color .2s ease;
}
.postQuickLinks li a svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; transition: transform .2s ease; }
.postQuickLinks li a:hover { color: var(--red); }
.postQuickLinks li a:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------
   MAIN CONTENT
--------------------------------------------------------- */
.postMain { min-width: 0; }

.postLead {
  background: #f6f6f7;
  border-left: 4px solid var(--red);
  border-radius: 4px 14px 14px 4px;
  padding: 22px 26px;
  margin-bottom: 30px;
}
.postLead p {
  font-size: 17px;
  line-height: 1.75;
  font-style: italic;
  color: #1c1c1c;
  margin: 0;
}
.postLead a, .postBody a, .postQuote a {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(238,61,37,0.35);
}
.postLead a:hover, .postBody a:hover, .postQuote a:hover { color: var(--red-bright); border-color: var(--red-bright); }

.postBody { color: #d9d9d9; }
.postBody p {
  font-size: 16.5px;
  line-height: 1.85;
  color: #c7c7c7;
  margin: 0 0 24px;
}

.postQuote {
  background: #f6f6f7;
  border-left: 4px solid var(--red);
  border-radius: 4px 14px 14px 4px;
  padding: 22px 26px;
  margin: 8px 0 34px;
}
.postQuote p {
  font-size: 17px;
  line-height: 1.75;
  font-style: italic;
  color: #1c1c1c;
  margin: 0;
}
.postQuote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 14.5px;
  font-weight: 700;
  color: #1c1c1c;
}
.postQuote cite span { color: var(--red); }

.postBody h2 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-white);
  margin: 48px 0 20px;
  line-height: 1.3;
}
.postBody h3 {
  font-family: var(--font);
  font-size: 21px;
  font-weight: 800;
  color: var(--text-white);
  margin: 34px 0 16px;
  line-height: 1.3;
}
.postBody > *:first-child { margin-top: 0; }

.postImg {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin: 8px 0 28px;
  background: #f2f2f2;
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
}
.postImg img { display: block; width: 100%; height: auto; }

.postChecklist {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.postChecklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: #d9d9d9;
  font-weight: 600;
}
.postChecklist li .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.postChecklist li .check svg { width: 12px; height: 12px; }

/* Comparison table */
.postTableWrap {
  border: 1px solid var(--border-dim);
  border-radius: 14px;
  overflow: hidden;
  margin: 4px 0 30px;
}
.postTable { width: 100%; border-collapse: collapse; }
.postTable th {
  background: var(--red);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-align: left;
  padding: 14px 20px;
}
.postTable td {
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 600;
  color: #d9d9d9;
  border-top: 1px solid var(--border-dim);
}
.postTable tr:nth-child(even) td { background: var(--panel); }

/* ---------------------------------------------------------
   FAQ ACCORDION
--------------------------------------------------------- */
.postFaq { margin-top: 12px; }
.postFaqItem {
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  background: var(--panel);
  overflow: hidden;
  margin-bottom: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.postFaqItem.is-open {
  border-color: var(--red);
  box-shadow: 0 14px 32px rgba(238,61,37,0.15);
}
.postFaqItem__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--red);
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.postFaqItem__icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s ease, transform .25s ease;
}
.postFaqItem.is-open .postFaqItem__icon { background: rgba(255,255,255,0.32); transform: rotate(180deg); }
.postFaqItem__icon svg { width: 13px; height: 13px; stroke: #fff; }

.postFaqItem__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.postFaqItem__bodyInner { padding: 20px 24px 22px; }
.postFaqItem__bodyInner p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #c7c7c7;
}

@media (max-width: 640px) {
  .postBody h2 { font-size: 23px; }
  .postBody h3 { font-size: 19px; }
  .postTableWrap { overflow-x: auto; }
  .postTable { min-width: 560px; }
}