/* =========================================================================
   Theme tokens
   ========================================================================= */

:root {
  --bg:            #0d1117;
  --bg-elev:       #161b22;
  --bg-elev-2:     #1c232c;
  --surface:       #11161d;
  --line:          rgba(255,255,255,0.08);
  --line-strong:   rgba(255,255,255,0.16);
  --text:          #e6edf3;
  --text-muted:    #9aa4b2;
  --text-dim:      #6f7886;
  --accent:        #f0b86e;
  --accent-soft:   rgba(240,184,110,0.16);
  --accent-line:   rgba(240,184,110,0.40);
  --accent-2:      #7cc4ff;
  --good:          #6cc4a1;
  --shadow:        0 8px 30px rgba(0,0,0,0.35);
  --radius:        14px;
  --radius-sm:     10px;
  --max:           1180px;
  --serif: "Fraunces", ui-serif, Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

[data-theme="light"] {
  --bg:            #f7f4ee;
  --bg-elev:       #ffffff;
  --bg-elev-2:     #f0ece4;
  --surface:       #ffffff;
  --line:          rgba(20,20,20,0.10);
  --line-strong:   rgba(20,20,20,0.20);
  --text:          #1a1d23;
  --text-muted:    #5b6472;
  --text-dim:      #8590a0;
  --accent:        #b35c00;
  --accent-soft:   rgba(179,92,0,0.10);
  --accent-line:   rgba(179,92,0,0.35);
  --accent-2:      #0d6cbf;
  --good:          #2d8a64;
  --shadow:        0 8px 24px rgba(33,33,33,0.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(1200px 600px at 5% -10%, rgba(240,184,110,0.06), transparent 50%),
    radial-gradient(900px 500px at 95% 0%, rgba(124,196,255,0.05), transparent 55%);
}

[data-theme="light"] body {
  background-image:
    radial-gradient(1200px 600px at 5% -10%, rgba(179,92,0,0.06), transparent 50%),
    radial-gradient(900px 500px at 95% 0%, rgba(13,108,191,0.05), transparent 55%);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
}

/* =========================================================================
   Hero
   ========================================================================= */

.hero {
  padding: 28px 0 56px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-line);
}

.hero__nav {
  display: flex;
  gap: 26px;
}

.hero__nav a {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero__nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.theme-toggle {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: var(--accent-line);
  transform: rotate(20deg);
}

.hero__body {
  margin-top: 56px;
  max-width: 880px;
}

.hero__eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 18px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.hero__location {
  color: var(--text-muted);
  margin: 0 0 28px;
}

.hero__dot {
  margin: 0 8px;
  color: var(--text-dim);
}

.hero__summary {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 0 32px;
}

.hero__highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 24px;
}

.hero__highlights li {
  color: var(--text);
  position: relative;
  padding-left: 22px;
  font-size: 15px;
}

.hero__highlights li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-size: 10px;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__value {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* =========================================================================
   Section heads
   ========================================================================= */

.section-head {
  margin: 64px 0 24px;
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.section-head__actions {
  margin-left: auto;
  display: flex;
  gap: 8px;
}

/* =========================================================================
   Page grid — main content on the left, filter rail on the right
   ========================================================================= */

.page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  margin-top: 16px;
}

.page-grid > .filters {
  align-self: stretch;
  height: 100%;
}

.page-grid__content {
  min-width: 0;
}

.page-grid__content > * + * {
  margin-top: 0;
}

.page-grid__content .section-head:first-of-type {
  margin-top: 24px;
}

.filters {
  position: relative;
}

.filters__sticky {
  position: sticky;
  top: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.filters__toggle {
  display: none;
}

.filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.filters__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
}

.filters__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}

.filters__count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
}

.link-button {
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.link-button:hover {
  color: var(--text);
  border-color: var(--accent-line);
}

.filters__row {
  margin-bottom: 14px;
}

.filters__search {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filters__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

#searchInput {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#searchInput::placeholder {
  color: var(--text-dim);
}

#searchInput:focus {
  outline: none;
  border-color: var(--accent-line);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.filters__group {
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.filters__group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 6px 0;
  user-select: none;
}

.filters__group summary::-webkit-details-marker { display: none; }

.filters__group summary > span:first-child {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.filters__group summary > span:first-child::before {
  content: "›";
  display: inline-block;
  transition: transform 0.15s ease;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1;
}

.filters__group[open] summary > span:first-child::before {
  transform: rotate(90deg);
}

.filters__group-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}

.filters__group-count[data-group="industries"]:not(:empty)::before,
.filters__group-count[data-group="skills"]:not(:empty)::before,
.filters__group-count[data-group="remote"]:not(:empty)::before {
  content: "(";
}
.filters__group-count[data-group="industries"]:not(:empty)::after,
.filters__group-count[data-group="skills"]:not(:empty)::after,
.filters__group-count[data-group="remote"]:not(:empty)::after {
  content: " selected)";
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  background: var(--bg-elev);
  color: var(--text-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
  font-family: inherit;
  user-select: none;
}

.chip:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.chip.is-active {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-line);
}

.chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.chip:disabled:hover {
  color: var(--text-muted);
  border-color: var(--line);
}

.chip__count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}

.chip.is-active .chip__count {
  color: var(--accent);
  opacity: 0.7;
}

/* Section visibility toggles — inverted: 'active' (visible) chips are filled
   by default; clicking dims them and hides that section. */
.chips--toggle .chip {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-line);
}

.chips--toggle .chip::before {
  content: "●";
  font-size: 9px;
  margin-right: 2px;
  opacity: 0.9;
}

.chips--toggle .chip.is-hidden {
  background: var(--bg-elev);
  color: var(--text-dim);
  border-color: var(--line);
  text-decoration: line-through;
  text-decoration-color: var(--text-dim);
}

.chips--toggle .chip.is-hidden::before {
  content: "○";
  opacity: 0.6;
}

.filters__hint {
  font-size: 12px;
  color: var(--text-dim);
  margin: 8px 0 0;
  line-height: 1.4;
}

.filters__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 12px 0 6px;
}

.filters__category h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 8px;
}

.filters__category .chips {
  padding: 0;
}

/* =========================================================================
   Experience timeline
   ========================================================================= */

.timeline {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 6px;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.entry {
  position: relative;
  padding: 0 0 36px 48px;
}

.entry::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}

.entry__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin-bottom: 6px;
}

.entry__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

.entry__client {
  color: var(--text-muted);
  font-size: 15px;
}

.entry__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

.entry__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.entry__roles {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.entry__roles li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.entry__roles strong {
  color: var(--text);
  font-weight: 500;
}

.entry__roles em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
}

.entry__industries {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.entry__industry {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--bg-elev);
  color: var(--text-muted);
  border-radius: 4px;
  border: 1px solid var(--line);
}

.entry__industry.is-match {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-line);
}

.entry__expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  margin-top: 12px;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.entry__expand:hover {
  color: var(--accent);
  border-color: var(--accent-line);
  background: var(--accent-soft);
}

.entry__expand-chev {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 10px;
}

.entry.is-expanded .entry__expand-chev {
  transform: rotate(180deg);
}

.entry__detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 12px;
}

.entry:not(.is-expanded) .entry__detail {
  display: none;
}

.entry__summary {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 15px;
}

.entry__highlights {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--text-muted);
}

.entry__highlights li {
  margin-bottom: 6px;
  font-size: 14.5px;
}

.entry__highlights li mark {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 0 2px;
  border-radius: 3px;
}

.entry__engagements {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.entry__engagements h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 10px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.engagement {
  font-size: 13.5px;
  color: var(--text);
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  transition: opacity 0.2s ease;
}

.engagement.is-dim {
  opacity: 0.3;
}

.engagement strong {
  font-weight: 500;
  color: var(--text);
}

.engagement span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
}

.entry__skills-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--bg-elev-2);
  color: var(--text-muted);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.15s ease;
}

.tag:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.tag.is-match {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: var(--accent-line);
}

/* =========================================================================
   Skills section
   ========================================================================= */

.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.skill-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.skill-card h3 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.skill-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  padding: 4px 0;
}

.skill-card__name {
  font-size: 14px;
  color: var(--text);
  flex: 1;
}

.skill-card__item:hover .skill-card__name {
  color: var(--accent);
}

.skill-card__item.is-active .skill-card__name {
  color: var(--accent);
  font-weight: 500;
}

.skill-card__level {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.skill-card__level[data-level="Expert"]      { color: var(--accent); }
.skill-card__level[data-level="Experienced"] { color: var(--good); }
.skill-card__level[data-level="Novice"]      { color: var(--text-dim); }

/* =========================================================================
   Education / Certs / Speaking
   ========================================================================= */

.two-up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
}

.card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.card__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 8px;
}

.card__notes {
  font-size: 14px;
  color: var(--text-muted);
  margin: 6px 0 0;
}

.card__notes-list {
  margin: 6px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

/* =========================================================================
   Footer / Misc
   ========================================================================= */

.footer {
  margin-top: 60px;
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 14px;
}

.footer__inner p { margin: 4px 0; }

.footer__tiny {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 10px;
}

.empty {
  text-align: center;
  color: var(--text-muted);
  padding: 30px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

[hidden] { display: none !important; }

.load-error {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}

.load-error__card {
  max-width: 460px;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
}

.load-error__card pre {
  background: var(--bg);
  padding: 12px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: var(--mono);
  font-size: 13px;
}

body[data-state="loading"] main,
body[data-state="loading"] .hero__body,
body[data-state="loading"] .filters {
  opacity: 0;
}

body[data-state="ready"] main,
body[data-state="ready"] .hero__body,
body[data-state="ready"] .filters {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* =========================================================================
   Responsive
   ========================================================================= */

@media (max-width: 980px) {
  .page-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .page-grid > .filters { order: -1; }
  .page-grid__content .section-head:first-of-type { margin-top: 24px; }

  .filters__sticky {
    position: relative;
    top: auto;
    max-height: none;
    padding: 14px 16px;
  }

  .filters__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--text-muted);
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .filters__toggle:hover {
    color: var(--text);
    border-color: var(--line-strong);
  }

  .filters__toggle-chev {
    transition: transform 0.15s ease;
    font-size: 16px;
  }

  .filters__toggle[aria-expanded="true"] .filters__toggle-chev {
    transform: rotate(90deg);
  }

  .filters__body {
    display: none;
  }

  .filters__sticky.is-open .filters__body {
    display: block;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }

  .hero__nav {
    display: none;
  }

  .hero { padding-top: 20px; padding-bottom: 36px; }

  .hero__body { margin-top: 32px; }
  .hero__stats { gap: 18px 28px; }
  .stat__value { font-size: 26px; }

  .section-head { margin-top: 48px; }
  .section-head h2 { font-size: 26px; }

  .timeline::before { left: 7px; }
  .entry { padding-left: 28px; }
  .entry::before { left: 3px; }

  .entry__detail { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
