:root{
  --bg:#fbf7f6; --bg2:#f6f4fb; --ink:#1f1b1d;
  --muted:rgba(31,27,29,.62); --line:rgba(31,27,29,.10);
  --accent:#b06a86; --accentSoft: rgba(176,106,134,.14);
}
*{ box-sizing:border-box; }
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(900px 520px at 14% 0%, rgba(176,106,134,.10), transparent 60%),
    radial-gradient(820px 520px at 92% 10%, rgba(120,105,200,.10), transparent 62%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  font:18px/1.75 "Fraunces", ui-serif, Georgia, serif;
  letter-spacing:.01em;
}
.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 68px 18px 110px;
}
h1{
  margin:0 0 10px;
  font-size:44px;
  font-weight:520;
  line-height:1.1;
}
.sub{
  margin:0 0 24px;
  color:var(--muted);
  font: 13px/1.4 "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 28px 0;
}
.year{
  margin: 0 0 10px;
  font: 12px/1.2 "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(31,27,29,.55);
}
.month{
  margin: 20px 0 8px;
  font: 12px/1.2 "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(31,27,29,.48);
}
.item{
  display:flex;
  gap: 14px;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(31,27,29,.08);
}
.item .d{
  width: 68px;
  color: rgba(31,27,29,.56);
  font: 12.5px/1.4 "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.item .t{
  margin:0;
  font-size: 20px;
  font-weight: 520;
}
.item .t a{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(176,106,134,.25);
}
.item .t a:hover{
  border-bottom-color: rgba(176,106,134,.55);
}
.item .tags{
  margin-left:auto;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  font: 12.5px/1.2 "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--muted);
}
.pill{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accentSoft);
  border: 1px solid rgba(176,106,134,.18);
  color: rgba(31,27,29,.72);
  white-space: nowrap;
}
.dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--accent);
  opacity:.9;
  display:inline-block;
}
@media (max-width: 720px){
  h1{ font-size: 34px; }
  body{ font-size: 17px; }
  .item{ flex-wrap: wrap; }
  .item .tags{ width:100%; margin-left:0; }
}
