/* Same container you used */
.tc-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40 18px;
}

/* ---------- HERO ---------- */
.tc-article-hero{
  background: #fff;
  padding: 60px 0 12px; /* same rhythm like your industry sections */
}

.tc-article-hero__card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #1f3164;
  min-height: 320px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* hero image */
.tc-article-hero__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

/* overlay for readability */
.tc-article-hero__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(31,49,100,0.92) 0%,
    rgba(31,49,100,0.82) 45%,
    rgba(31,49,100,0.55) 100%
  );
}

.tc-article-hero__content{
  position: relative;
  z-index: 2;
  max-width: 820px;  
  padding: 48px 36px 40px;
  color: #fff;
}

.tc-crumbs{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.tc-crumbs a{
  color: rgba(255,255,255,0.86);
  text-decoration: none;
}
.tc-crumbs span{ opacity: 0.7; }

.tc-meta{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tc-chip{
  background: #fbf6db;
  color: #111827;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
.tc-chip--soft{
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.18);
}

.tc-meta__text{
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

.tc-article-hero__title{
  margin: 14px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 32px);
  line-height: 1.1;
}

.tc-article-hero__subtitle{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
  max-width: 740px;
}

.tc-author{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 12px;
}
.tc-author__avatar{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 800;
}
.tc-author__name{ font-size: 13px; font-weight: 800; }
.tc-author__small{ font-size: 12px; color: rgba(255,255,255,0.75); }

/* Hero decor (same as your design language) */
.tc-hero-decor{
  position:absolute; pointer-events:none; z-index: 2;
}
.tc-hero-decor--star{
  top: 26px; left: 66%;
  width: 34px; height: 34px;
  opacity: 0.35;
  background: conic-gradient(from 45deg,
    transparent 0 43%,
    rgba(255,255,255,0.55) 43% 57%,
    transparent 57% 100%);
  border-radius: 8px;
  transform: rotate(8deg);
}
.tc-hero-decor--dots{
  right: 22px; bottom: 18px;
  width: 60px; height: 44px;
  opacity: 0.22;
  background: radial-gradient(circle, #fff 0 3px, transparent 4px);
  background-size: 14px 14px;
  border-radius: 10px;
}

/* ---------- ARTICLE GRID ---------- */
.tc-article{
  background:#fff;
  padding: 26px 0 80px; /* same spacing pattern */
}

.tc-article__grid{
  display:grid;
  grid-template-columns: 1fr 340px;
  gap: 26px;
  align-items: start;
}

/* Main content styling */
.tc-article__content{
  max-width: 820px;
}

.tc-article__content p{
  font-size: 14px;
  line-height: 1.95;
  color: rgba(17,24,39,0.86);
  margin: 0 0 14px;
}

.tc-article__content h2{
  margin: 22px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1.25;
}

/* Highlight box */
.tc-highlight{
  background: #f4f5ff;
  border-radius: 14px;
  padding: 16px 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  margin-bottom: 18px;
}
.tc-highlight__title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color: #111827;
}
.tc-highlight__list{
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(17,24,39,0.86);
}

/* Callout */
.tc-callout{
  background: #fbf6db;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 16px 0;
  color: rgba(17,24,39,0.88);
  line-height: 1.8;
  font-size: 13px;
}

/* Checklist block */
.tc-checklist{
  background: #f4f5ff;
  border-radius: 14px;
  padding: 16px;
  margin-top: 18px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.tc-checklist__title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color:#111827;
}
.tc-checklist__list{
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(17,24,39,0.86);
}

.tc-divider{
  height: 1px;
  background: rgba(17,24,39,0.12);
  margin: 26px 0;
}

/* Next prev */
.tc-nextprev{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tc-nextprev__card{
  text-decoration:none;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(17,24,39,0.10);
  border-radius: 14px;
  padding: 14px 14px;
}
.tc-nextprev__label{
  display:block;
  font-size: 12px;
  color: rgba(17,24,39,0.65);
}
.tc-nextprev__title{
  display:block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 800;
  color:#111827;
  line-height: 1.35;
}

/* Sidebar cards */
.tc-sidecard{
  background: #f4f5ff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.tc-sidecard + .tc-sidecard{ margin-top: 18px; }

.tc-sidecard__title{
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  color:#111827;
}

/* TOC */
.tc-toc a{
  display:block;
  text-decoration:none;
  color: rgba(17,24,39,0.86);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.55);
  margin-top: 8px;
}
.tc-toc a:hover{
  background: rgba(255,255,255,0.78);
}

/* Share */
.tc-share{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tc-share__btn{
  text-decoration:none;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.55);
  color:#111827;
  font-size: 13px;
  font-weight: 700;
}

/* Related */
.tc-related{
  display:block;
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,0.55);
  margin-top: 10px;
  color:#111827;
}
.tc-related__title{ display:block; font-size: 13px; font-weight: 800; line-height: 1.35; }
.tc-related__meta{ display:block; font-size: 12px; color: rgba(17,24,39,0.65); margin-top: 4px; }

/* Responsive */
@media (max-width: 980px){
  .tc-article__grid{ grid-template-columns: 1fr; }
  .tc-article-hero__content{ max-width: 100%; }
  .tc-nextprev{ grid-template-columns: 1fr; }
}