:root {
  --ink: #111216;
  --muted: #666b73;
  --paper: #f5f5f2;
  --white: #fff;
  --accent: #d9ff43;
  --blue: #2968ff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Noto Sans KR", sans-serif; }
a { color: inherit; text-decoration: none; }
.insight-header {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  color: var(--white);
  background: #0b0c0f;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}
.brand { display: flex; align-items: center; gap: 10px; font: 800 22px "Manrope", sans-serif; }
.brand span { display: grid; width: 31px; height: 31px; place-items: center; color: var(--ink); background: var(--accent); border-radius: 4px 10px 4px 4px; }
.insight-header nav { display: flex; gap: 25px; font-size: 12px; }
.insight-header nav a:last-child { color: var(--ink); padding: 10px 14px; background: var(--accent); border-radius: 3px; font-weight: 700; }
.list-hero, .article-hero { padding: 120px 7vw 95px; color: var(--white); background: #0b0c0f; }
.overline { margin: 0 0 25px; color: var(--accent); font: 700 10px "Manrope"; letter-spacing: .18em; }
.list-hero h1, .article-hero h1 { max-width: 1050px; margin: 0; font: 600 clamp(48px, 7vw, 100px)/1.05 "Manrope", "Noto Sans KR"; letter-spacing: -.065em; word-break: keep-all; }
.list-hero > p, .article-hero > p { max-width: 680px; margin: 35px 0 0; color: rgb(255 255 255 / 55%); font-size: 16px; line-height: 1.9; }
.article-meta { display: flex; gap: 24px; margin-top: 45px; color: rgb(255 255 255 / 42%); font-size: 11px; }
.article-list { display: grid; gap: 1px; padding: 90px 7vw 120px; }
.article-list a { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 30px; padding: 38px 25px; background: var(--white); border-bottom: 1px solid #e1e3e6; transition: .25s; }
.article-list a:hover { background: var(--accent); transform: translateX(5px); }
.article-list span { color: var(--blue); font: 700 11px "Manrope"; }
.article-list h2 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.04em; }
.article-list p { margin: 0; color: var(--muted); font-size: 13px; }
.article-list strong { font-size: 17px; }
.article-body { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 80px; padding: 100px 7vw 130px; background: var(--white); }
.article-aside { align-self: start; position: sticky; top: 30px; padding-top: 15px; border-top: 2px solid var(--ink); }
.article-aside strong { font-size: 12px; }
.article-aside ol { margin: 18px 0 0; padding-left: 18px; color: var(--muted); font-size: 11px; line-height: 2; }
.article-content { font-size: 16px; line-height: 2; }
.article-content .lead { margin-top: 0; color: #3f4349; font-size: 20px; font-weight: 500; line-height: 1.8; }
.article-content h2 { margin: 75px 0 20px; font-size: 31px; letter-spacing: -.045em; line-height: 1.4; }
.article-content h3 { margin: 35px 0 12px; font-size: 20px; }
.article-content p { color: #4e535a; }
.article-content ul { padding-left: 22px; color: #4e535a; }
.article-content .note { margin: 40px 0; padding: 27px; color: var(--ink); background: #eff2ff; border-left: 3px solid var(--blue); }
.article-cta { margin-top: 80px; padding: 38px; color: var(--white); background: var(--ink); }
.article-cta h2 { margin: 0 0 13px; }
.article-cta p { color: rgb(255 255 255 / 55%); }
.article-cta a { display: inline-block; margin-top: 15px; padding: 13px 17px; color: var(--ink); background: var(--accent); font-size: 12px; font-weight: 700; }
.insight-footer { display: flex; justify-content: space-between; padding: 45px 7vw; color: rgb(255 255 255 / 45%); background: #0b0c0f; font-size: 11px; }
@media (max-width: 760px) {
  .insight-header { padding: 0 20px; }
  .insight-header nav a:first-child { display: none; }
  .list-hero, .article-hero { padding: 90px 20px 70px; }
  .list-hero h1, .article-hero h1 { font-size: 48px; }
  .article-list { padding: 60px 20px 90px; }
  .article-list a { grid-template-columns: 45px 1fr; gap: 12px; padding: 25px 18px; }
  .article-list strong { display: none; }
  .article-list h2 { font-size: 19px; }
  .article-list p { font-size: 11px; }
  .article-body { grid-template-columns: 1fr; gap: 35px; padding: 65px 20px 90px; }
  .article-aside { position: static; }
  .article-content { font-size: 14px; }
  .article-content .lead { font-size: 18px; }
  .article-content h2 { font-size: 26px; }
  .article-cta { padding: 28px 22px; }
}
