@charset "UTF-8";
html {
  font-size: 16px;
  line-height: 1.65;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #312d4f;
  background: linear-gradient(180deg, rgba(251, 249, 255, 0.9) 0%, #ffffff 40%) fixed;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #ff2d7f;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s ease;
}
a:hover {
  color: #c4005f;
}

h1, h2, h3, h4, h5, h6 {
  color: #1d1037;
  margin-top: 0;
  margin-bottom: 0.75em;
  line-height: 1.2;
}

p {
  margin-bottom: 1.5em;
  color: #312d4f;
}

strong {
  color: #1d1037;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

code {
  background: rgba(124, 118, 171, 0.12);
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  font-size: 0.9em;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ede9f6;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 2rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #7928ca;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex-shrink: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  color: #1d1037;
  letter-spacing: 0.01em;
}

.header-search {
  display: flex;
  align-items: center;
  background: #fbf9ff;
  border: 1px solid #ede9f6;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  gap: 0.4rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.header-search:focus-within {
  border-color: rgba(121, 40, 202, 0.45);
  box-shadow: 0 0 0 3px rgba(121, 40, 202, 0.1);
}

.header-search-icon {
  color: #6c688e;
  flex-shrink: 0;
}

.header-search-input {
  border: 0;
  background: transparent;
  font-size: 0.88rem;
  color: #312d4f;
  outline: none;
  width: 160px;
}
.header-search-input::placeholder {
  color: #6c688e;
}
.header-search-input::-webkit-search-cancel-button {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #ede9f6;
  background: transparent;
  color: #6c688e;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.icon-btn:hover {
  color: #1d1037;
  border-color: rgba(121, 40, 202, 0.35);
  background: rgba(121, 40, 202, 0.05);
}

.accent-dots {
  display: flex;
  align-items: center;
  gap: 3px;
}
.accent-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.filter-bar {
  padding: 0.75rem 0;
  border-bottom: 1px solid #ede9f6;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}

.filter-pills {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #ede9f6;
  background: transparent;
  color: #6c688e;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.filter-pill:hover {
  color: #1d1037;
  border-color: rgba(121, 40, 202, 0.35);
}
.filter-pill.is-active {
  background: #1d1037;
  border-color: #1d1037;
  color: #fff;
}
.filter-pill.is-active .filter-count {
  color: rgba(255, 255, 255, 0.7);
}

.filter-count {
  font-size: 0.75rem;
  color: #6c688e;
}

.tags-page {
  padding: 4rem 0 5rem;
}

.tags-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
}

.tags-title {
  font-size: clamp(2rem, 2.8vw + 1rem, 3rem);
  margin: 0;
}

.tags-subtitle {
  margin: 0;
  color: #6c688e;
  font-size: 1.05rem;
}

.tags-active {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(137, 117, 185, 0.12);
  border: 1px solid rgba(137, 117, 185, 0.28);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  color: #312d4f;
}

.tags-active[hidden] {
  display: none;
}

.tags-active:not([hidden]) {
  display: inline-flex;
}

.tags-active strong {
  color: #1d1037;
}

.tags-active-reset {
  background: transparent;
  border: 1px solid #ede9f6;
  color: #6c688e;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tags-active-reset:hover, .tags-active-reset:focus-visible {
  background: rgba(121, 40, 202, 0.06);
  border-color: rgba(121, 40, 202, 0.35);
  outline: none;
}

.tags-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .tags-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .tags-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.tag-card {
  background: #ffffff;
  border: 1px solid rgba(137, 117, 185, 0.12);
  border-radius: 18px;
  padding: 1.75rem 2rem;
  box-shadow: 0 25px 45px -35px rgba(31, 14, 54, 0.4);
  scroll-margin-top: 6rem;
}

.tag-card-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.tag-card-title {
  margin: 0;
  font-size: 1.4rem;
}

.tag-card-count {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6c688e;
}

.tag-card-divider {
  height: 2px;
  width: 64px;
  background: linear-gradient(135deg, #7928ca 0%, #ff2d7f 100%);
  border-radius: 9999px;
  margin: 1.25rem 0;
}

.tag-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}
.tag-card-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}
.tag-card-list a {
  color: #1d1037;
  font-weight: 600;
}
.tag-card-list a:hover {
  color: #7928ca;
}
.tag-card-list time {
  font-size: 0.8rem;
  color: #6c688e;
}

.not-found {
  padding: clamp(4rem, 6vw, 6rem) 0 clamp(6rem, 7vw, 8rem);
}

.not-found-card {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(137, 117, 185, 0.15);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  box-shadow: 0 40px 80px -60px rgba(31, 14, 54, 0.55);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.5rem;
}

.not-found-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(137, 117, 185, 0.18);
  border: 1px solid rgba(137, 117, 185, 0.32);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1d1037;
  justify-self: center;
}

.not-found-title {
  margin: 0;
  font-size: clamp(2.2rem, 2.8vw + 1.2rem, 3.6rem);
}

.not-found-lede {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #6c688e;
}

.not-found-body {
  text-align: left;
  margin: 0 auto;
  max-width: 540px;
  display: grid;
  gap: 1rem;
}

.not-found-list {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 0.6rem;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.not-found-footer {
  margin: 0;
  font-size: 0.85rem;
  color: #6c688e;
}

.search-page {
  padding: 3.5rem 0 5rem;
}

.search-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.search-field {
  display: inline-flex;
  align-items: center;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ede9f6;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px -8px rgba(31, 14, 54, 0.15);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.search-field:focus-within {
  border-color: rgba(121, 40, 202, 0.45);
  box-shadow: 0 4px 16px -8px rgba(121, 40, 202, 0.2);
}

.search-icon {
  margin: 0 0.5rem 0 0.75rem;
  color: #6c688e;
}

.search-input {
  border: 0;
  background: transparent;
  padding: 0.75rem 0.5rem;
  font-size: 1.05rem;
  width: 100%;
  outline: none;
  color: #312d4f;
}
.search-input::placeholder {
  color: #6c688e;
}

.search-results {
  max-width: 820px;
  margin: 2rem auto 0;
}

.search-hit {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.9rem;
  border: 1px solid #ede9f6;
}
.search-hit h2 {
  margin: 0 0 0.35rem 0;
  font-size: 1.05rem;
}

.search-stats {
  color: #6c688e;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.btn.btn-secondary {
  background: transparent;
  border: 1px solid #ede9f6;
  color: #6c688e;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus-visible {
  background: rgba(121, 40, 202, 0.06);
  border-color: rgba(121, 40, 202, 0.35);
  color: #1d1037;
}

.site-content {
  padding: 0 0 5rem;
}

.site-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid #ede9f6;
  color: #6c688e;
  text-align: center;
  font-size: 0.88rem;
}

.home {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.featured {
  padding: 3rem 0 2rem;
}

.featured-card {
  display: grid;
  gap: 2.5rem;
  cursor: pointer;
}

.featured-content {
  display: flex;
  flex-direction: column;
}

.featured-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #6c688e;
  margin-bottom: 1rem;
}

.featured-eyebrow-dot {
  color: #ede9f6;
}

.featured-title {
  font-size: clamp(2rem, 2.6vw + 1rem, 3rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.featured-title-link {
  text-decoration: none;
  color: #1d1037;
}
.featured-title-link:hover {
  color: #7928ca;
}

.featured-excerpt {
  font-size: 1rem;
  color: #6c688e;
  margin-bottom: 1.25rem;
  max-width: 60ch;
  line-height: 1.7;
}

.featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.featured-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 45px -25px rgba(31, 14, 54, 0.3);
}

.featured-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.featured-media-link {
  display: block;
  text-decoration: none;
  overflow: hidden;
}
.featured-media-link:hover img {
  transform: scale(1.03);
}

.featured-media figcaption {
  font-size: 0.75rem;
  color: #6c688e;
  padding: 0.5rem 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #7928ca;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -12px rgba(121, 40, 202, 0.55);
  color: #fff;
}

.btn-save {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: #6c688e;
  padding: 0.7rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid #ede9f6;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-save:hover {
  color: #1d1037;
  border-color: rgba(121, 40, 202, 0.35);
}
.btn-save.is-saved {
  color: #7928ca;
  border-color: rgba(121, 40, 202, 0.45);
  background: rgba(121, 40, 202, 0.06);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #7928ca;
  color: #fff;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(121, 40, 202, 0.3);
  color: #fff;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: #f3eefb;
  color: #5c58a9;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.15s ease;
}
.tag:hover {
  background: #e8e0f7;
  color: #5c58a9;
}

.posts-list-section {
  padding: 2.5rem 0 3rem;
}

.posts-list-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6c688e;
  margin: 0;
}

.archive-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6c688e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.archive-link:hover {
  color: #7928ca;
}

.divider {
  height: 1px;
  background: #ede9f6;
  border: 0;
  margin: 0 0 0.5rem;
}

.posts-list {
  display: block;
}

.post-list-item {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem 0;
}

.post-thumb {
  flex: 0 0 80px;
}
.post-thumb img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.post-thumb a {
  display: block;
}

.post-main {
  flex: 1;
  min-width: 0;
}

.post-date {
  font-size: 0.75rem;
  color: #6c688e;
  display: block;
  margin-bottom: 0.35rem;
}

.post-read-time {
  color: #6c688e;
}

.post-list-item .post-title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.post-list-item .post-title a {
  color: #1d1037;
  text-decoration: none;
  font-weight: 700;
}
.post-list-item .post-title a:hover {
  color: #7928ca;
}

.post-excerpt {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  color: #6c688e;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.post-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ede9f6;
  color: #6c688e;
  text-decoration: none;
  transition: all 0.2s ease;
}
.post-arrow:hover {
  color: #7928ca;
  border-color: rgba(121, 40, 202, 0.4);
  background: rgba(121, 40, 202, 0.06);
  transform: translateX(2px);
}

.post-separator {
  border: 0;
  height: 1px;
  background: #ede9f6;
  margin: 0;
}

.posts-grid {
  display: grid;
  gap: 1.75rem;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(19, 15, 35, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
}
.sidebar-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.sidebar-open {
  overflow: hidden;
}

.sidebar-panel {
  position: relative;
  width: min(420px, 90vw);
  height: 100%;
  background: #1f1b2f;
  color: #f8f6ff;
  padding: 2.75rem 2.5rem;
  box-shadow: -25px 0 60px -35px rgba(6, 4, 15, 0.85);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.sidebar-overlay.is-open .sidebar-panel {
  transform: translateX(0);
}

.sidebar-close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.sidebar-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-scroll {
  height: 100%;
  overflow-y: auto;
  padding-right: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-section {
  display: grid;
  gap: 1.25rem;
}

.sidebar-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(236, 232, 255, 0.7);
  position: relative;
  padding-bottom: 0.75rem;
}
.sidebar-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  border-radius: 9999px;
  background: #7928ca;
}

.sidebar-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(243, 240, 255, 0.85);
}

.sidebar-recent {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
}

.sidebar-recent-item {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 1rem;
  align-items: center;
}

.sidebar-recent-link {
  display: grid;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
}
.sidebar-recent-link:hover .sidebar-recent-title {
  color: #fff;
}

.sidebar-recent-meta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(236, 232, 255, 0.55);
}

.sidebar-recent-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(248, 246, 255, 0.88);
}

.sidebar-recent-thumb {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 30px -20px rgba(8, 5, 16, 0.9);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.sidebar-tag {
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(248, 246, 255, 0.85);
  text-decoration: none;
  transition: background 0.2s ease;
}
.sidebar-tag:hover {
  background: rgba(255, 255, 255, 0.14);
}

.article {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.article-header {
  text-align: center;
  padding-top: 3rem;
}

.article-date {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #6c688e;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.article-title {
  font-size: clamp(1.75rem, 2.5vw + 0.5rem, 2.8rem);
  margin: 0 auto 1.5rem;
  line-height: 1.2;
  overflow-wrap: break-word;
  word-break: break-word;
}

.article-title-divider {
  width: 120px;
  height: 2px;
  background: #7928ca;
  border: 0;
  margin: 0 auto;
  border-radius: 9999px;
}

.article-featured-image {
  width: 100%;
  margin: 2rem 0 0;
}

.article-figure {
  margin: 0;
  width: 100%;
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}
.article-figure figcaption {
  text-align: center;
  font-size: 0.8rem;
  color: #6c688e;
  margin-top: 0.75rem;
}
.article-figure figcaption a {
  color: #6c688e;
  text-decoration: none;
  border-bottom: 1px solid #7928ca;
  transition: color 0.2s ease;
}
.article-figure figcaption a:hover {
  color: #7928ca;
}

.article-separator {
  width: 120px;
  height: 3px;
  background: linear-gradient(135deg, #7928ca 0%, #ff2d7f 100%);
  border: 0;
  margin: 0 auto;
  border-radius: 9999px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.article-body p {
  margin: 0;
  color: #312d4f;
}
.article-body a {
  color: #7928ca;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(121, 40, 202, 0.4);
  text-underline-offset: 0.2em;
  font-weight: 600;
}
.article-body code {
  background: rgba(96, 91, 140, 0.14);
  color: #1d1037;
  font-weight: 600;
  padding: 0.15rem 0.35rem;
  border-radius: 5px;
}
.article-body pre {
  background: #17142a;
  color: #f5f5ff;
  padding: 1.75rem;
  border-radius: 16px;
  box-shadow: 0 25px 55px -35px rgba(12, 9, 26, 0.9);
  overflow-x: auto;
  margin: 0;
}
.article-body pre code {
  background: transparent;
  padding: 0;
  color: inherit;
}
.article-body h2, .article-body h3, .article-body h4 {
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  color: #1d1037;
}
.article-body h2 {
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #7928ca;
}
.article-body ul, .article-body ol {
  padding-left: 1.25rem;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  color: #312d4f;
}
.article-body blockquote {
  border-left: 4px solid rgba(121, 40, 202, 0.4);
  padding-left: 1.25rem;
  margin: 0;
  color: rgba(49, 45, 79, 0.85);
  font-style: italic;
}

.read-next {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 1px solid #ede9f6;
  border-bottom: 1px solid #ede9f6;
}

.read-next-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #6c688e;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #7928ca;
}

.read-next-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.read-next-info {
  flex: 1;
}

.read-next-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6c688e;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.read-next-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #312d4f;
  margin: 0;
  line-height: 1.3;
}

.read-next-title-link {
  text-decoration: none;
}
.read-next-title-link:hover .read-next-title {
  color: #7928ca;
}

.read-next-link {
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.read-next-image {
  width: 200px;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.read-next-link:hover .read-next-image {
  transform: scale(1.05);
}

.resume-prose {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 0 6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.resume-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7928ca;
  margin-bottom: 1.25rem;
}
.resume-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #7928ca;
  border-radius: 2px;
}

.resume-intro {
  display: flex;
  flex-direction: column;
}

.resume-lead {
  font-size: clamp(1.4rem, 2vw + 0.8rem, 1.9rem);
  font-weight: 700;
  color: #1d1037;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.02em;
}

.resume-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-left: 1.5rem;
  border-left: 2px solid #ede9f6;
}
.resume-body p {
  margin: 0;
  font-size: 1rem;
  color: #6c688e;
  line-height: 1.8;
}

.resume-talks {
  display: flex;
  flex-direction: column;
}

.talks-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.talks-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ede9f6;
}
.talks-list li:first-child {
  border-top: 1px solid #ede9f6;
}

.talk-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #1d1037;
}

.talk-event {
  font-size: 0.78rem;
  color: #6c688e;
}

.resume-footer {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.resume-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid #ede9f6;
  font-size: 0.85rem;
  font-weight: 600;
  color: #6c688e;
  text-decoration: none;
  transition: all 0.2s ease;
}
.resume-link-btn:hover {
  color: #7928ca;
  border-color: rgba(121, 40, 202, 0.4);
  background: rgba(121, 40, 202, 0.05);
}

.notes-page {
  max-width: 660px;
  margin: 0 auto;
  padding: 4rem 0 6rem;
}

.notes-feed {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.notes-week {
  display: flex;
  flex-direction: column;
}

.notes-issue {
  font-size: 1.4rem;
  font-weight: 800;
  color: #1d1037;
  margin: 0 0 0.75rem;
}

.notes-intro {
  font-size: 0.95rem;
  color: #6c688e;
  line-height: 1.75;
  margin: 0 0 1.75rem;
}

.notes-topic {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d1037;
  margin: 1.5rem 0 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #ede9f6;
}

.notes-links {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
.notes-links li {
  font-size: 0.92rem;
  color: #6c688e;
  line-height: 1.65;
}
.notes-links a {
  color: #7928ca;
  font-weight: 600;
  text-decoration: none;
}
.notes-links a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.reading-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.reading-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ede9f6;
}

.reading-subtitle {
  font-size: 1.05rem;
  color: #6c688e;
  margin: 0;
  line-height: 1.7;
}

.reading-section {
  margin-bottom: 2.5rem;
}

.reading-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6c688e;
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #ede9f6;
}

.book-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.book-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid #ede9f6;
}
.book-item:last-child {
  border-bottom: none;
}

.book-info {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.book-title {
  font-weight: 700;
  color: #1d1037;
  font-size: 0.97rem;
}

.book-author {
  font-size: 0.82rem;
  color: #6c688e;
}
.book-author::before {
  content: "— ";
}

.book-note {
  margin: 0;
  font-size: 0.88rem;
  color: #6c688e;
  line-height: 1.6;
  font-style: italic;
}

.reading-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ede9f6;
}
.reading-footer p {
  margin: 0;
  font-size: 0.82rem;
  color: #6c688e;
}

@media (min-width: 992px) {
  .featured-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .header-left {
    justify-content: space-between;
    width: 100%;
  }
  .header-search {
    display: none;
  }
  .featured-card {
    padding: 0;
  }
  .post-list-item {
    align-items: flex-start;
  }
  .post-list-item .post-title {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
  .read-next-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .read-next-link {
    width: 100%;
  }
  .read-next-image {
    width: 100%;
    height: auto;
  }
  .read-next-title {
    font-size: 1.25rem;
  }
  .sidebar-panel {
    width: min(360px, 100vw);
    padding: 2.5rem 2rem;
  }
  .sidebar-close {
    top: 1.5rem;
    right: 1.5rem;
  }
  .tag-card {
    padding: 1.5rem;
  }
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #6c688e;
  position: relative;
  padding-bottom: 0.4rem;
  transition: color 0.2s ease;
}
.site-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, #7928ca 0%, #ff2d7f 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.site-nav .nav-link:hover, .site-nav .nav-link[aria-current=page] {
  color: #1d1037;
}
.site-nav .nav-link:hover::after, .site-nav .nav-link[aria-current=page]::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
}
pre.highlight {
  background: #17142a;
  color: #f5f5ff;
  padding: 1.75rem;
  overflow-x: auto;
  border-radius: 18px;
  box-shadow: 0 25px 55px -35px rgba(12, 9, 26, 0.9);
  border: 1px solid rgba(109, 102, 164, 0.2);
}

pre.highlight code {
  font-family: "Fira Code", "Source Code Pro", Menlo, Monaco, Consolas, monospace;
  font-size: 0.95rem;
  line-height: 1.65;
}

.highlight .c,
.highlight .cm,
.highlight .c1 {
  color: #7c84b2;
  font-style: italic;
}

.highlight .k,
.highlight .kd,
.highlight .kn {
  color: #8ec5ff;
}

.highlight .kt,
.highlight .nc,
.highlight .nn {
  color: #4edad7;
}

.highlight .nf,
.highlight .na {
  color: #ffd479;
}

.highlight .s,
.highlight .sb,
.highlight .s1,
.highlight .s2 {
  color: #f6b26b;
}

.highlight .p,
.highlight .o,
.highlight .ow {
  color: #f5f5ff;
}

.highlight .mi,
.highlight .mf {
  color: #f19cd9;
}

.highlight .err {
  color: #ff7b7b;
  background: transparent;
}

/*# sourceMappingURL=styles.css.map */