@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap');

:root{
  --ink:#0F2038;
  --ink2:#162A47;
  --muted:#5C6C84;
  --paper:#F6F7F9;
  --card:#FFFFFF;
  --line:rgba(15,32,56,.10);
  --shadow:0 12px 30px rgba(15,32,56,.10);
  --teal:#32A7B5;
  --gold:#C6A25A;
  --radius:18px;
  --radius2:26px;
  --max:1100px;
  --hero:url('../images/hero.jpg');
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.55;
}

a{color:inherit}
.wrap{max-width:var(--max); margin:0 auto; padding:0 22px}
.small{font-size:.95rem;color:var(--muted)}
.kicker{letter-spacing:.18em; text-transform:uppercase; font-size:.78rem; color:var(--muted)}
h1,h2,h3{
  font-family:"Source Serif 4", Georgia, "Times New Roman", serif;
  line-height:1.15;
  margin:0 0 .6rem;
}
h1{font-size:clamp(2rem, 3.1vw, 3.1rem)}
h2{font-size:clamp(1.5rem, 2.1vw, 2.2rem)}
h3{font-size:1.25rem}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:999px;
  border:1px solid rgba(15,32,56,.14);
  background:#fff;
  font-weight:600;
  text-decoration:none;
}
.btn.primary{background:var(--ink); color:#fff; border-color:transparent}
.btn.primary:hover{background:var(--ink2)}
.btn.ghost{background:transparent}
.btn.sm{padding:8px 12px; font-size:.93rem}

.shell{
  background:#fff;
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  overflow:hidden;
  border:1px solid var(--line);
  margin:24px auto 40px;
}

.topbar{
  background:var(--ink);
  color:#fff;
  padding:10px 0;
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px; text-decoration:none;
}
.brand img{height:34px; width:auto}
.nav-links{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
}
.nav-links a{
  color:#fff; text-decoration:none; font-weight:500;
  padding:8px 10px; border-radius:999px;
  opacity:.92;
}
.nav-links a:hover{background:rgba(255,255,255,.10)}
.nav-links a.active{background:rgba(255,255,255,.14); opacity:1}

.hero{
  position:relative;
  padding:34px 0;
  background:
    linear-gradient(90deg, rgba(15,32,56,.84) 0%, rgba(15,32,56,.45) 58%, rgba(15,32,56,.18) 100%),
    var(--hero);
  background-size:cover;
  background-position:center;
  color:#fff;
}
.hero .wrap{display:grid; grid-template-columns:1.2fr .8fr; gap:22px; align-items:end}
.hero p{color:rgba(255,255,255,.88); max-width:62ch}
.hero .cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}
.hero .meta-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:16px;
  backdrop-filter: blur(6px);
}
.breadcrumb{
  font-size:.85rem; color:rgba(255,255,255,.80);
  margin-top:14px;
}
.breadcrumb a{color:rgba(255,255,255,.88); text-decoration:none}
.breadcrumb span{opacity:.8}

.content{
  padding:26px 0 8px;
}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
@media(max-width:980px){
  .hero .wrap{grid-template-columns:1fr}
  .grid3,.grid2{grid-template-columns:1fr}
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 8px 20px rgba(15,32,56,.06);
}
.card a{text-decoration:none}
.card p{color:var(--muted); margin:.4rem 0 0}
.card .tag{
  display:inline-flex; align-items:center; gap:8px;
  font-size:.78rem; letter-spacing:.08em; text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}
.dot{width:10px;height:10px;border-radius:99px;background:var(--teal)}
.dot.sales{background:var(--gold)}
.dot.practice{background:#4D86C6}

.rule{
  height:1px; background:var(--line); margin:18px 0;
}

.footer{
  background:#FBFBFC;
  border-top:1px solid var(--line);
  padding:18px 0;
}
.footer .inner{
  display:flex; gap:18px; flex-wrap:wrap; align-items:flex-start; justify-content:space-between;
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--ink)}

.article{
  padding:24px 0 8px;
}
.article h1{color:var(--ink)}
.article .date{color:var(--muted); font-size:.92rem; margin-top:-8px}
.readmore{margin-top:14px}

.notice{
  border-left:4px solid var(--teal);
  padding:12px 14px;
  background:rgba(50,167,181,.08);
  border-radius:12px;
  color:var(--ink2);
}