:root {
  --ck-guide-max: 980px;
}

.ck-hero {
  border: 1px solid rgba(215, 193, 164, 0.55);
  background: rgba(255, 252, 247, 0.92);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(93, 58, 26, 0.07);
  overflow: hidden;
}

.ck-hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  padding: 24px;
  align-items: center;
}

@media (max-width: 992px) {
  .ck-hero-inner {
    grid-template-columns: 1fr;
  }
}

.ck-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.85rem;
  color: #6d4729;
  background: linear-gradient(180deg, #fff9f1 0%, #f9f0e3 100%);
  border: 1px solid rgba(215, 193, 164, 0.55);
}

.ck-hero-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 14px;
  margin-bottom: 10px;
  color: var(--ck-ink-900);
}

.ck-hero-subtitle {
  color: #6d4729;
  font-size: 1.05rem;
  margin: 0;
}

.ck-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.ck-hero-figure {
  border-left: 1px solid rgba(215, 193, 164, 0.35);
  padding-left: 18px;
}

@media (max-width: 992px) {
  .ck-hero-figure {
    border-left: none;
    padding-left: 0;
  }
}

.ck-hero-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.ck-page {
  max-width: var(--ck-guide-max);
}

.ck-section-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  color: var(--ck-ink-900);
}

.ck-section-subtitle {
  color: #6d4729;
}

.ck-card-link {
  text-decoration: none;
}

.ck-card-link:hover {
  text-decoration: none;
}

.ck-card-title {
  font-weight: 900;
  color: var(--ck-ink-900);
  letter-spacing: -0.01em;
}

.ck-card-meta {
  color: #7a5334;
}

.ck-toc {
  position: sticky;
  top: 20px;
}

.ck-toc .card-body {
  padding: 18px;
}

.ck-toc-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6d4729;
  font-weight: 900;
}

.ck-toc-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.ck-toc-list li {
  margin: 10px 0;
}

.ck-toc-list a {
  text-decoration: none;
  color: #6d4729;
  font-weight: 700;
}

.ck-toc-list a:hover {
  color: var(--ck-orange-600);
  text-decoration: underline;
}

.ck-article-meta {
  color: #6d4729;
}

.ck-article-title {
  font-weight: 1000;
  letter-spacing: -0.03em;
  color: var(--ck-ink-900);
}

.ck-prose {
  color: var(--ck-ink-900);
  font-size: 1.05rem;
  line-height: 1.85;
}

.ck-prose p,
.ck-prose ul,
.ck-prose ol {
  margin-bottom: 1.1rem;
}

.ck-prose h2 {
  font-weight: 1000;
  letter-spacing: -0.02em;
  margin-top: 2.1rem;
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
}

.ck-prose h3 {
  font-weight: 900;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.ck-prose a {
  color: var(--ck-orange-600);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ck-prose table {
  width: 100%;
  border: 1px solid rgba(215, 193, 164, 0.55);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 12px 28px rgba(93, 58, 26, 0.06);
}

.ck-prose th,
.ck-prose td {
  border-bottom: 1px solid rgba(215, 193, 164, 0.35);
  padding: 12px 14px;
  vertical-align: top;
}

.ck-prose th {
  background: linear-gradient(180deg, #fff9f1 0%, #f9f0e3 100%);
  color: #6d4729;
  font-weight: 900;
}

