.ccs-content-wrap{
  --ccs-navy: #1a2a4a;
  --ccs-blue: #1E90FF;
  --ccs-sky: #e0f0ff;
  --ccs-sky-lt: #f0f7ff;
  --ccs-gray: #6b7280;
  --ccs-dark: #333333;
  --ccs-border: #d8e8f5;
  --ccs-yellow: #FFD700;
  --ccs-ff-h: 'Playfair Display', Georgia, serif;
  --ccs-ff-b: 'DM Sans', system-ui, sans-serif;
  --ccs-max: 1100px;
  --ccs-r: 12px;
}

.ccs-content-wrap,
.ccs-content-wrap *{
  box-sizing: border-box;
}
.ccs-content-wrap ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.ccs-content-wrap a{
  text-decoration: none;
  color: inherit;
}

/* ── layout ── */
.ccs-content-wrap{
  max-width: var(--ccs-max);
  margin: 0 auto;
  padding: 72px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
  font-family: var(--ccs-ff-b);
}

/* ── main prose ── */
.ccs-content-wrap .ccs-prose h2{
  font-family: var(--ccs-ff-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ccs-navy);
  line-height: 1.22;
  margin: 44px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ccs-sky);
}
.ccs-content-wrap .ccs-prose h2:first-child{margin-top: 0;}
.ccs-content-wrap .ccs-prose h3{
  font-family: var(--ccs-ff-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ccs-navy);
  line-height: 1.22;
  margin: 24px 0 8px;
}
.ccs-content-wrap .ccs-prose p{
  font-size: .95rem;
  color: #444;
  line-height: 1.82;
  margin: 0 0 14px;
}
.ccs-content-wrap .ccs-prose ul{margin: 12px 0 16px 0;}
.ccs-content-wrap .ccs-prose ul li{
  font-size: .95rem;
  color: #444;
  line-height: 1.78;
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--ccs-border);
}
.ccs-content-wrap .ccs-prose ul li:last-child{border: none;}
.ccs-content-wrap .ccs-prose ul li::before{
  content: '✓';
  color: var(--ccs-blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}
.ccs-content-wrap .ccs-prose a{color: var(--ccs-blue); font-weight: 600;}
.ccs-content-wrap .ccs-prose a:hover{text-decoration: underline;}
.ccs-content-wrap .ccs-prose strong{font-weight: 700; color: var(--ccs-navy);}

/* callout box */
.ccs-content-wrap .ccs-info-box{
  background: var(--ccs-sky-lt);
  border: 1px solid var(--ccs-border);
  border-left: 4px solid var(--ccs-blue);
  border-radius: 0 var(--ccs-r) var(--ccs-r) 0;
  padding: 18px 20px;
  margin: 24px 0;
  font-size: .9rem;
  color: var(--ccs-dark);
}
.ccs-content-wrap .ccs-info-box strong{color: var(--ccs-navy);}

/* last updated tag */
.ccs-content-wrap .ccs-updated-tag{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ccs-sky);
  border: 1px solid var(--ccs-border);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--ccs-blue);
  margin-bottom: 28px;
}
.ccs-content-wrap .ccs-updated-tag svg{
  width: 13px; height: 13px; flex-shrink: 0;
  fill: none; stroke: var(--ccs-blue); stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ── sidebar ── */
.ccs-content-wrap .ccs-sidebar{
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ccs-content-wrap .ccs-sidebar-card{
  border: 1px solid var(--ccs-border);
  border-radius: 14px;
  padding: 22px;
  background: #fff;
}
.ccs-content-wrap .ccs-sidebar-title{
  font-family: var(--ccs-ff-h);
  font-size: .88rem;
  font-weight: 700;
  color: var(--ccs-navy);
  margin-bottom: 14px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--ccs-sky);
}
.ccs-content-wrap .ccs-sidebar-cta{
  background: var(--ccs-navy);
  border-color: var(--ccs-navy);
  text-align: center;
  padding: 26px 18px;
}
.ccs-content-wrap .ccs-sidebar-cta .ccs-sidebar-title{
  color: #fff;
  border-color: rgba(255,255,255,.12);
}
.ccs-content-wrap .ccs-sidebar-cta p{
  font-size: .82rem;
  color: rgba(255,255,255,.62);
  margin-bottom: 16px;
  line-height: 1.65;
}
.ccs-content-wrap .ccs-sc-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px;
  border-radius: 9px;
  font-size: .84rem;
  font-weight: 700;
  font-family: var(--ccs-ff-h);
  transition: background .14s;
  text-align: center;
  margin-bottom: 9px;
  border: 0;
  cursor: pointer;
}
.ccs-content-wrap .ccs-sc-btn svg{width: 14px; height: 14px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;}
.ccs-content-wrap .ccs-sc-btn.ccs-gold{background: var(--ccs-yellow); color: var(--ccs-navy);}
.ccs-content-wrap .ccs-sc-btn.ccs-gold:hover{background: #e6c200;}
.ccs-content-wrap .ccs-sc-btn.ccs-ghost{border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.8); background: transparent;}
.ccs-content-wrap .ccs-sc-btn.ccs-ghost:hover{background: rgba(255,255,255,.08);}

.ccs-content-wrap .ccs-quick-links li{margin-bottom: 0;}
.ccs-content-wrap .ccs-quick-links a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: .84rem;
  color: var(--ccs-dark);
  border-bottom: 1px solid var(--ccs-border);
  transition: color .14s;
}
.ccs-content-wrap .ccs-quick-links li:last-child a{border: none;}
.ccs-content-wrap .ccs-quick-links a:hover{color: var(--ccs-blue);}
.ccs-content-wrap .ccs-quick-links a .ccs-arr{color: var(--ccs-blue); font-size: .72rem;}

.ccs-content-wrap .ccs-contact-row{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 11px;
  font-size: .84rem;
}
.ccs-content-wrap .ccs-contact-row .ccs-ic{
  flex-shrink: 0;
  margin-top: 2px;
  width: 15px; height: 15px;
  color: var(--ccs-blue);
}
.ccs-content-wrap .ccs-contact-row .ccs-ic svg{width: 15px; height: 15px; fill: none; stroke: var(--ccs-blue); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;}
.ccs-content-wrap .ccs-contact-row a{color: var(--ccs-blue); font-weight: 600;}

/* ── responsive ── */
@media(max-width:860px){
  .ccs-content-wrap{grid-template-columns: 1fr; padding: 48px 20px; gap: 40px;}
}
@media(max-width:560px){
  .ccs-content-wrap{padding: 36px 16px;}
  .ccs-content-wrap .ccs-prose h2{font-size: 1.1rem;}
}
