@font-face { font-family:'Poppins'; font-weight:400; font-style:normal; font-display:swap; src:url('../fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-weight:600; font-style:normal; font-display:swap; src:url('../fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-weight:700; font-style:normal; font-display:swap; src:url('../fonts/poppins-700.woff2') format('woff2'); }
@font-face { font-family:'Poppins'; font-weight:800; font-style:normal; font-display:swap; src:url('../fonts/poppins-800.woff2') format('woff2'); }

:root {
  --primary:#C2185B;
  --primary-dark:#9c1049;
  --primary-light:#E91E63;
  --pink-bg:#FCE4EC;
  --pink-soft:#FFF5F8;
  --text:#333333;
  --text-soft:#6b6b6b;
  --white:#ffffff;
  --dark:#2b2230;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Poppins','Segoe UI',Arial,sans-serif; color:var(--text); background:var(--pink-soft); line-height:1.7; }
h1, h2, h3 { line-height:1.25; }
a { color:var(--primary); text-decoration:none; }
.container { max-width:1140px; margin:0 auto; padding:0 24px; }

header { position:sticky; top:0; z-index:50; background:var(--white); box-shadow:0 2px 14px rgba(0,0,0,.07); }
.nav { display:flex; align-items:center; justify-content:space-between; height:72px; }
.logo { display:inline-flex; align-items:center; flex-shrink:0; }
.logo img { display:block; width:auto; height:48px; }
nav ul, nav li { list-style:none; margin:0; padding:0; }
nav ul { display:flex; gap:6px; }
nav a { display:inline-block; color:var(--text); font-weight:500; font-size:15px; padding:8px 14px; border-radius:30px; transition:background .15s ease,color .15s ease; }
nav a:hover { color:var(--primary); background:var(--pink-bg); }
nav a.active { color:var(--primary); background:var(--pink-bg); font-weight:600; }
nav a.cta { color:var(--white); background:var(--primary); font-weight:600; }
nav a.cta:hover { color:var(--white); background:var(--primary-dark); }
.burger { display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
.burger span { width:26px; height:3px; background:var(--primary); border-radius:2px; }

.blog-hero { position:relative; overflow:hidden; padding:82px 0 76px; background:linear-gradient(140deg,var(--pink-bg) 0%,var(--pink-soft) 62%,var(--white) 100%); }
.blog-hero::before, .blog-hero::after { content:""; position:absolute; border-radius:50%; pointer-events:none; }
.blog-hero::before { width:330px; height:330px; top:-190px; right:7%; background:rgba(194,24,91,.08); }
.blog-hero::after { width:190px; height:190px; bottom:-110px; left:9%; border:34px solid rgba(233,30,99,.06); }
.blog-hero .container { position:relative; z-index:1; }
.eyebrow { display:inline-block; margin-bottom:14px; color:var(--primary); font-size:12px; font-weight:700; letter-spacing:2.4px; text-transform:uppercase; }
.blog-hero h1 { max-width:800px; color:var(--primary-dark); font-size:44px; margin-bottom:16px; }
.blog-hero p { max-width:700px; color:var(--text-soft); font-size:17px; }

.blog-list { padding:68px 0 84px; }
.blog-list-head { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:30px; }
.blog-list-head h2 { color:var(--primary-dark); font-size:30px; }
.blog-count { color:var(--text-soft); font-size:14px; }
.post-card { display:grid; grid-template-columns:210px 1fr auto; gap:30px; align-items:center; padding:32px; background:var(--white); border:1px solid #f6dbe5; border-radius:20px; box-shadow:0 14px 38px rgba(194,24,91,.09); transition:transform .18s ease,box-shadow .18s ease; }
.post-card:hover { transform:translateY(-4px); box-shadow:0 20px 46px rgba(194,24,91,.14); }
.post-card-visual { position:relative; height:170px; overflow:hidden; border-radius:15px; background:linear-gradient(145deg,var(--primary-dark),var(--primary-light)); }
.post-card-visual::before { content:""; position:absolute; width:170px; height:170px; top:-72px; right:-50px; border-radius:50%; background:rgba(255,255,255,.17); }
.post-card-visual::after { content:attr(data-number); position:absolute; right:18px; bottom:-18px; color:rgba(255,255,255,.22); font-size:92px; font-weight:800; line-height:1; }
.post-card-mark { position:absolute; left:22px; top:22px; width:50px; height:50px; display:grid; place-items:center; color:var(--primary-dark); background:var(--white); border-radius:50%; font-size:22px; font-weight:800; box-shadow:0 8px 24px rgba(43,34,48,.2); }
.post-date { display:block; color:var(--text-soft); font-size:13px; font-weight:600; margin-bottom:8px; }
.post-card h3 { color:var(--primary-dark); font-size:24px; margin-bottom:10px; }
.post-card h3 a { color:inherit; }
.post-card h3 a:hover { color:var(--primary); }
.post-card p { color:var(--text-soft); font-size:15px; }
.post-card + .post-card { margin-top:24px; }
.post-link { display:inline-flex; align-items:center; gap:8px; white-space:nowrap; padding:12px 20px; color:var(--white); background:var(--primary); border-radius:30px; font-size:14px; font-weight:600; box-shadow:0 8px 24px rgba(194,24,91,.25); }
.post-link:hover { background:var(--primary-dark); }

.article-hero { padding:64px 0 58px; background:linear-gradient(140deg,var(--pink-bg),var(--pink-soft) 68%,var(--white)); text-align:center; }
.breadcrumb { margin-bottom:18px; color:var(--text-soft); font-size:13px; }
.breadcrumb a { font-weight:600; }
.article-hero h1 { max-width:920px; margin:0 auto 18px; color:var(--primary-dark); font-size:42px; }
.article-deck { max-width:770px; margin:0 auto 18px; color:var(--text-soft); font-size:17px; }
.article-date { color:var(--primary); font-size:13px; font-weight:600; }

.article-shell { padding:54px 24px 86px; }
.article { max-width:820px; margin:0 auto; padding:52px 60px; background:var(--white); border:1px solid #f4d8e3; border-radius:22px; box-shadow:0 18px 52px rgba(194,24,91,.09); }
.article h2 { color:var(--primary-dark); font-size:29px; margin:50px 0 18px; scroll-margin-top:100px; }
.article h2:first-of-type { margin-top:0; }
.article h3 { color:var(--primary-dark); font-size:21px; margin:32px 0 14px; }
.article p { margin-bottom:18px; }
.article strong { color:#3f2935; font-weight:700; }
.article ul, .article ol { margin:0 0 22px 24px; }
.article li { margin-bottom:9px; padding-left:4px; }
.article li::marker { color:var(--primary); font-weight:700; }
.article hr { height:1px; border:0; background:#f1d5e0; margin:38px 0; }
.article a { font-weight:600; text-decoration:underline; text-decoration-thickness:1px; text-underline-offset:3px; }
.article blockquote, .article-highlight { margin:0 0 34px; padding:24px 26px; background:var(--pink-bg); border-left:5px solid var(--primary); border-radius:12px; }
.article-highlight h2 { margin:0 0 10px; font-size:18px; }
.article-highlight p:last-child, .article blockquote p:last-child { margin-bottom:0; }
.table-wrap { width:100%; overflow-x:auto; margin:20px 0 30px; border:1px solid #efd3de; border-radius:12px; }
.article table { width:100%; min-width:610px; border-collapse:collapse; background:var(--white); font-size:14px; }
.article th { padding:14px 16px; color:var(--white); background:var(--primary-dark); text-align:left; font-weight:600; }
.article td { padding:13px 16px; border-bottom:1px solid #f2dce5; vertical-align:top; }
.article tr:last-child td { border-bottom:0; }
.article tbody tr:nth-child(even) { background:var(--pink-soft); }
.article-note { color:var(--text-soft); font-size:13px; font-style:italic; }
.article-back { max-width:820px; margin:28px auto 0; }
.article-back a { display:inline-flex; align-items:center; gap:8px; font-size:14px; font-weight:600; }

footer { background:var(--dark); color:#cbb8c2; padding:48px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr; gap:36px; margin-bottom:30px; }
footer h4 { color:var(--white); font-size:16px; margin-bottom:12px; }
footer p { font-size:14px; }
footer ul { list-style:none; }
footer li { margin-bottom:8px; }
footer a { color:#cbb8c2; font-size:14px; }
footer a:hover { color:var(--white); }
.footer-bottom { padding-top:20px; border-top:1px solid rgba(255,255,255,.12); color:#9d8794; font-size:12.5px; text-align:center; }

@media (max-width:1050px) {
  nav a { padding:8px 10px; font-size:14px; }
  .post-card { grid-template-columns:180px 1fr; }
  .post-link { grid-column:2; justify-self:start; }
}

@media (max-width:900px) {
  .logo img { height:42px; }
  .burger { display:flex; }
  nav ul { display:none; position:absolute; top:72px; left:0; right:0; flex-direction:column; gap:0; padding:10px 0; background:var(--white); box-shadow:0 14px 30px rgba(0,0,0,.12); }
  nav ul.open { display:flex; }
  nav li { text-align:center; }
  nav a { display:block; padding:14px; border-radius:0; }
  nav a.cta { margin:10px 24px 6px; border-radius:30px; }
  .footer-grid { grid-template-columns:1fr; }
}

@media (max-width:680px) {
  .blog-hero { padding:62px 0 58px; }
  .blog-hero h1, .article-hero h1 { font-size:32px; }
  .blog-list { padding:48px 0 64px; }
  .blog-list-head { align-items:start; flex-direction:column; gap:6px; }
  .post-card { grid-template-columns:1fr; padding:22px; gap:20px; }
  .post-card-visual { height:150px; }
  .post-link { grid-column:1; }
  .article-hero { padding:48px 0 44px; }
  .article-shell { padding:34px 14px 64px; }
  .article { padding:34px 22px; border-radius:17px; }
  .article h2 { font-size:25px; margin-top:40px; }
  .article h3 { font-size:19px; }
}
