/* [project]/app/blog/passages/[slug]/passage.scss.css [app-client] (css) */
.passage-editorial {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  animation: .8s fadeIn;
}

@media (max-width: 768px) {
  .passage-editorial {
    padding: 6rem 1.5rem 3rem;
  }
}

.passage-layout {
  align-items: flex-start;
  gap: 3rem;
  display: flex;
}

@media (max-width: 1200px) {
  .passage-layout {
    flex-direction: column;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.passage-breadcrumb {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  text-align: center;
  margin-bottom: 3rem;
  font-size: .85rem;
  font-weight: 300;
}

.passage-breadcrumb .breadcrumb-link {
  color: var(--sepia);
  transition: color .3s;
}

.passage-breadcrumb .breadcrumb-link:hover {
  color: var(--accent);
}

.passage-breadcrumb .breadcrumb-sep {
  opacity: .5;
  margin: 0 .5rem;
}

.passage-breadcrumb .breadcrumb-current {
  color: var(--foreground);
}

.passage-content {
  flex-direction: column;
  flex: 1;
  gap: 2.5rem;
  max-width: 700px;
  display: flex;
}

@media (max-width: 1200px) {
  .passage-content {
    max-width: 100%;
  }
}

.passage-header {
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
}

.passage-header .header-label {
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  display: flex;
}

.passage-header .header-label .label-ornament {
  color: var(--accent);
  opacity: .4;
  font-size: .8rem;
}

.passage-header .header-label .label-text {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  font-style: italic;
  font-weight: 300;
}

.passage-header .passage-meta {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  margin-bottom: 1.5rem;
  font-size: .85rem;
  font-weight: 300;
}

.passage-header .passage-meta .meta-category {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 400;
}

.passage-header .passage-meta .meta-sep {
  margin: 0 .75rem;
}

.passage-header .passage-title {
  font-family: var(--font-cormorant), serif;
  color: var(--ink);
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .passage-header .passage-title {
    font-size: 1.8rem;
  }
}

.passage-header .passage-lead {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .passage-header .passage-lead {
    font-size: 1rem;
  }
}

.passage-header .passage-byline {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.passage-header .passage-byline .byline-author {
  font-family: var(--font-spectral), serif;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 300;
}

.passage-divider {
  background: linear-gradient(to right, transparent, var(--line), transparent);
  opacity: .5;
  height: 1px;
  margin: 1rem 0;
}

.not-found {
  text-align: center;
  padding: 5rem 2rem;
}

.not-found .not-found-ornament {
  font-family: var(--font-cormorant), serif;
  color: var(--accent);
  opacity: .3;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.not-found .not-found-title {
  font-family: var(--font-cormorant), serif;
  color: var(--ink);
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 400;
}

.not-found .not-found-text {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.not-found .not-found-link {
  font-family: var(--font-spectral), serif;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  transition: all .3s;
  display: inline-block;
}

.not-found .not-found-link:hover {
  background: var(--accent);
  color: var(--background);
}

/* [project]/components/ResourceBox/ResourceBox.scss.css [app-client] (css) */
.resource-box {
  background: var(--paper);
  border: 1px solid var(--line);
  margin: 3rem 0;
  padding: 2rem;
  animation: .6s ease-out slideIn;
  position: relative;
}

@media (max-width: 768px) {
  .resource-box {
    margin: 2rem 0;
    padding: 1.5rem;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.resource-box-header {
  border-bottom: 1px solid var(--line);
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  display: flex;
  position: relative;
}

.resource-box-header .header-ornament-left, .resource-box-header .header-ornament-right {
  font-family: var(--font-cormorant), serif;
  color: var(--accent);
  opacity: .4;
  font-size: 1rem;
  animation: 3s ease-in-out infinite pulse;
}

.resource-box-header .header-ornament-right {
  animation-delay: 1.5s;
}

.resource-box-header .resource-box-title {
  font-family: var(--font-cormorant), serif;
  color: var(--ink);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-variant: small-caps;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 400;
}

@keyframes pulse {
  0%, 100% {
    opacity: .4;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.1);
  }
}

.resource-list {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.resource-card {
  background: var(--background);
  border: 1px solid var(--line);
  cursor: pointer;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding: 1.25rem;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: grid;
  position: relative;
  overflow: hidden;
}

.resource-card:before {
  content: "";
  background: var(--accent);
  transform-origin: top;
  width: 3px;
  height: 100%;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 0;
  left: 0;
  transform: scaleY(0);
}

.resource-card:hover {
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 4px 20px var(--shadow-medium);
  transform: translateX(4px);
}

.resource-card:hover:before {
  transform: scaleY(1);
}

.resource-card:hover .resource-favicon-wrapper {
  transform: rotate(8deg)scale(1.1);
}

.resource-card:hover .resource-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.resource-card:hover .resource-external-icon {
  opacity: 1;
  transform: translate(2px, -2px);
}

.resource-card:hover .resource-title {
  color: var(--accent);
}

@media (max-width: 768px) {
  .resource-card {
    grid-template-columns: auto 1fr;
    gap: .85rem;
    padding: 1rem;
  }

  .resource-card .resource-external-icon {
    grid-column: 2;
    place-self: start end;
  }
}

.resource-favicon-wrapper {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

@media (max-width: 768px) {
  .resource-favicon-wrapper {
    width: 36px;
    height: 36px;
  }
}

.resource-favicon {
  object-fit: contain;
  filter: grayscale(.2);
  width: 20px;
  height: 20px;
  transition: filter .3s;
}

.resource-card:hover .resource-favicon {
  filter: grayscale(0);
}

.resource-favicon-fallback {
  opacity: .5;
  font-size: 1.1rem;
}

.resource-content {
  flex-direction: column;
  gap: .35rem;
  min-width: 0;
  display: flex;
}

.resource-meta {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  align-items: center;
  gap: .5rem;
  margin-bottom: .15rem;
  font-size: .75rem;
  display: flex;
}

.resource-meta .resource-index {
  font-variant-numeric: tabular-nums;
  letter-spacing: .05em;
  font-weight: 400;
}

.resource-meta .resource-arrow {
  opacity: .5;
  transition: all .3s;
  display: inline-block;
}

.resource-title {
  font-family: var(--font-spectral), serif;
  color: var(--ink);
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  transition: color .3s;
}

@media (max-width: 768px) {
  .resource-title {
    font-size: 1rem;
  }
}

.resource-description {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .resource-description {
    font-size: .85rem;
  }
}

.resource-url {
  color: var(--accent);
  opacity: .7;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: .25rem;
  font-family: Monaco, Courier New, monospace;
  font-size: .75rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .resource-url {
    font-size: .7rem;
  }
}

.resource-external-icon {
  color: var(--accent);
  opacity: .4;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  transition: all .3s;
  display: flex;
}

@media (max-width: 768px) {
  .resource-external-icon {
    opacity: .6;
  }
}

.resource-box-footer {
  border-top: 1px solid var(--line);
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.resource-box-footer .footer-note {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  opacity: .6;
  letter-spacing: .05em;
  font-size: .8rem;
  font-style: italic;
  font-weight: 300;
}

.resource-card {
  opacity: 0;
  animation: .5s ease-out forwards fadeInCard;
}

.resource-card:first-child {
  animation-delay: .1s;
}

.resource-card:nth-child(2) {
  animation-delay: .2s;
}

.resource-card:nth-child(3) {
  animation-delay: .3s;
}

.resource-card:nth-child(4) {
  animation-delay: .4s;
}

.resource-card:nth-child(5) {
  animation-delay: .5s;
}

.resource-card:nth-child(6) {
  animation-delay: .6s;
}

.resource-card:nth-child(7) {
  animation-delay: .7s;
}

.resource-card:nth-child(8) {
  animation-delay: .8s;
}

.resource-card:nth-child(9) {
  animation-delay: .9s;
}

.resource-card:nth-child(10) {
  animation-delay: 1s;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* [project]/components/TableOfContents.scss.css [app-client] (css) */
.table-of-contents {
  background: var(--paper);
  border: 1px solid var(--line);
  opacity: 0;
  border-radius: 2px;
  max-width: 280px;
  margin-left: 3rem;
  padding: 2rem 1.75rem;
  transition: opacity .8s, transform .8s;
  position: sticky;
  top: 6rem;
  transform: translateY(20px);
  box-shadow: 0 2px 12px #00000008;
}

.table-of-contents.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .table-of-contents {
    display: none;
  }
}

.table-of-contents .toc-header {
  border-bottom: 1px solid var(--line);
  justify-content: center;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  display: flex;
}

.table-of-contents .toc-header .toc-ornament {
  font-family: var(--font-cormorant), serif;
  color: var(--accent);
  opacity: .3;
  font-size: .7rem;
  animation: 3s ease-in-out infinite pulse;
}

.table-of-contents .toc-header .toc-title {
  font-family: var(--font-cormorant), serif;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin: 0;
  font-size: .95rem;
  font-weight: 500;
}

.table-of-contents .toc-nav {
  margin-bottom: 1.5rem;
}

.table-of-contents .toc-list {
  counter-reset: toc-counter;
  margin: 0;
  padding: 0;
  list-style: none;
}

.table-of-contents .toc-item {
  counter-increment: toc-counter;
  margin-bottom: .5rem;
  position: relative;
}

.table-of-contents .toc-item.active .toc-link .toc-number {
  background: var(--accent);
  color: var(--background);
  border-color: var(--accent);
  transform: scale(1.1);
}

.table-of-contents .toc-item.active .toc-link .toc-text {
  color: var(--ink);
  font-weight: 400;
}

.table-of-contents .toc-item.active:before {
  opacity: 1;
  width: 2px;
}

.table-of-contents .toc-item:before {
  content: "";
  background: var(--accent);
  opacity: 0;
  width: 1px;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.25rem;
}

.table-of-contents .toc-link {
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  align-items: flex-start;
  gap: .75rem;
  width: 100%;
  padding: .5rem 0;
  transition: all .3s;
  display: flex;
}

.table-of-contents .toc-link:hover .toc-number {
  border-color: var(--accent);
  color: var(--accent);
}

.table-of-contents .toc-link:hover .toc-text {
  color: var(--ink);
}

.table-of-contents .toc-number {
  width: 24px;
  height: 24px;
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  border: 1px solid var(--line);
  background: var(--background);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: .7rem;
  font-weight: 400;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.table-of-contents .toc-text {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.5;
  transition: all .3s;
}

.table-of-contents .toc-text strong, .table-of-contents .toc-text em, .table-of-contents .toc-text code {
  font-size: inherit;
  font-weight: inherit;
}

.table-of-contents .toc-footer {
  padding-top: 1rem;
}

.table-of-contents .toc-footer .toc-line {
  background: linear-gradient(to right, transparent, var(--line), transparent);
  opacity: .5;
  height: 1px;
}

@keyframes pulse {
  0%, 100% {
    opacity: .3;
  }

  50% {
    opacity: .6;
  }
}

@media (max-width: 1200px) {
  .table-of-contents-mobile {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    margin: 2rem 0;
    padding: 1.5rem;
    display: block;
  }

  .table-of-contents-mobile .toc-header {
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .table-of-contents-mobile .toc-header .toc-title-group {
    align-items: center;
    gap: .75rem;
    display: flex;
  }

  .table-of-contents-mobile .toc-header .toc-title-group .toc-ornament {
    font-family: var(--font-cormorant), serif;
    color: var(--accent);
    opacity: .3;
    font-size: .7rem;
  }

  .table-of-contents-mobile .toc-header .toc-title-group .toc-title {
    font-family: var(--font-cormorant), serif;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin: 0;
    font-size: .95rem;
    font-weight: 500;
  }

  .table-of-contents-mobile .toc-header .toc-toggle {
    font-family: var(--font-spectral), serif;
    color: var(--sepia);
    font-size: .75rem;
    transition: transform .3s;
  }

  .table-of-contents-mobile .toc-header .toc-toggle.open {
    transform: rotate(180deg);
  }

  .table-of-contents-mobile .toc-nav {
    max-height: 0;
    transition: max-height .4s;
    overflow: hidden;
  }

  .table-of-contents-mobile .toc-nav.open {
    border-top: 1px solid var(--line);
    max-height: 1000px;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .table-of-contents-mobile .toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .table-of-contents-mobile .toc-item {
    margin-bottom: .5rem;
  }

  .table-of-contents-mobile .toc-item.active .toc-link .toc-number {
    background: var(--accent);
    color: var(--background);
    border-color: var(--accent);
  }

  .table-of-contents-mobile .toc-item.active .toc-link .toc-text {
    color: var(--ink);
    font-weight: 400;
  }

  .table-of-contents-mobile .toc-link {
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    align-items: flex-start;
    gap: .75rem;
    width: 100%;
    padding: .5rem 0;
    display: flex;
  }

  .table-of-contents-mobile .toc-link .toc-number {
    width: 24px;
    height: 24px;
    font-family: var(--font-spectral), serif;
    color: var(--sepia);
    border: 1px solid var(--line);
    background: var(--background);
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: .7rem;
    font-weight: 400;
    transition: all .3s;
    display: flex;
  }

  .table-of-contents-mobile .toc-link .toc-text {
    font-family: var(--font-spectral), serif;
    color: var(--sepia);
    font-size: .85rem;
    font-weight: 300;
    line-height: 1.5;
    transition: all .3s;
  }
}

/* [project]/components/PassageBodyWithAnchors.scss.css [app-client] (css) */
.passage-body {
  font-family: var(--font-spectral), serif;
  color: var(--foreground);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
}

.passage-body > * + * {
  margin-top: 1.5rem;
}

.passage-body p {
  margin-bottom: 1.5rem;
}

.passage-body h2 {
  font-family: var(--font-cormorant), serif;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 500;
  transition: all .3s;
  position: relative;
}

.passage-body h2:first-child {
  margin-top: 0;
}

.passage-body h2:hover .heading-anchor {
  opacity: 1;
  margin-left: .5rem;
}

.passage-body h2 .heading-anchor {
  opacity: 0;
  color: var(--accent);
  cursor: pointer;
  margin-left: 0;
  font-size: 1rem;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.passage-body h2 .heading-anchor:hover {
  transform: scale(1.15);
}

.passage-body h2 .heading-anchor:active {
  transform: scale(.95);
}

.passage-body h3 {
  font-family: var(--font-cormorant), serif;
  color: var(--ink);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 500;
}

.passage-body h4 {
  font-family: var(--font-spectral), serif;
  color: var(--ink);
  margin-top: 1.75rem;
  margin-bottom: .75rem;
  font-size: 1.15rem;
  font-weight: 400;
}

.passage-body ul, .passage-body ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.passage-body ul li, .passage-body ol li {
  margin-bottom: .75rem;
  line-height: 1.8;
}

.passage-body ul li::marker {
  color: var(--accent);
}

.passage-body ol li::marker {
  color: var(--accent);
}

.passage-body blockquote {
  border-left: 3px solid var(--accent);
  background: var(--paper);
  color: var(--sepia);
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  font-style: italic;
}

.passage-body blockquote p:last-child {
  margin-bottom: 0;
}

.passage-body code {
  background: var(--paper);
  color: var(--accent);
  border-radius: 3px;
  padding: .2em .4em;
  font-family: Monaco, Courier New, monospace;
  font-size: .9em;
}

.passage-body pre {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  margin: 2rem 0;
  padding: 1.25rem;
  overflow-x: auto;
}

.passage-body pre code {
  color: var(--foreground);
  background: none;
  padding: 0;
}

.passage-body strong {
  color: var(--ink);
  font-weight: 500;
}

.passage-body em {
  font-style: italic;
}

.passage-body a {
  color: var(--accent);
  -webkit-text-decoration: underline #0000;
  text-decoration: underline #0000;
  transition: all .3s;
}

.passage-body a:hover {
  -webkit-text-decoration-color: var(--accent);
  text-decoration-color: var(--accent);
}

@media (max-width: 768px) {
  .passage-body {
    font-size: 1rem;
  }

  .passage-body h2 .heading-anchor {
    opacity: 1;
    margin-left: .5rem;
  }
}

.anchor-toast {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-spectral), serif;
  z-index: 1000;
  border-radius: 4px;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 300;
  animation: .3s slideUp, .3s 1.7s slideDown;
  display: flex;
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 16px #00000026;
}

.anchor-toast .toast-icon {
  font-size: 1.1rem;
  font-weight: 500;
}

.anchor-toast .toast-text {
  letter-spacing: .05em;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }

  to {
    opacity: 0;
    transform: translateX(-50%)translateY(20px);
  }
}

/* [project]/components/PassageNavigation.scss.css [app-client] (css) */
.passage-navigation {
  margin-top: 4rem;
  padding-top: 3rem;
  animation: .8s .2s backwards fadeInUp;
}

@media (max-width: 768px) {
  .passage-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
  }
}

.nav-divider {
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
}

.nav-divider .nav-ornament {
  font-family: var(--font-cormorant), serif;
  color: var(--accent);
  opacity: .3;
  font-size: .9rem;
  animation: 3s ease-in-out infinite pulse;
}

.nav-divider .divider-line {
  background: linear-gradient(to right, transparent, var(--line), transparent);
  opacity: .5;
  flex: 1;
  max-width: 200px;
  height: 1px;
}

.nav-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  display: grid;
}

@media (max-width: 768px) {
  .nav-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.nav-card {
  background: var(--paper);
  border: 1px solid var(--line);
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 1.75rem;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-card:before {
  content: "";
  background: linear-gradient(135deg, transparent 0%, var(--accent) 100%);
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  transition: opacity .4s;
  position: absolute;
  top: 0;
  left: 0;
}

.nav-card.nav-placeholder {
  pointer-events: none;
  opacity: .4;
  border-style: dashed;
}

.nav-card.nav-placeholder .nav-arrow, .nav-card.nav-placeholder .nav-label {
  opacity: .5;
}

.nav-card.nav-placeholder .nav-placeholder-text {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  margin: 0;
  font-size: .95rem;
  font-style: italic;
}

.nav-card:not(.nav-placeholder):hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--shadow-medium);
  transform: translateY(-4px);
}

.nav-card:not(.nav-placeholder):hover:before {
  opacity: .03;
}

.nav-card:not(.nav-placeholder):hover .nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

.nav-card:not(.nav-placeholder):hover .nav-title {
  color: var(--ink);
}

.nav-card:not(.nav-placeholder):hover .nav-category {
  color: var(--accent);
}

.nav-direction {
  font-family: var(--font-spectral), serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sepia);
  align-items: center;
  gap: .75rem;
  font-size: .85rem;
  font-weight: 300;
  display: flex;
}

.nav-direction .nav-arrow {
  color: var(--accent);
  font-size: 1.2rem;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}

.nav-direction .nav-label {
  font-style: italic;
}

.nav-prev .nav-arrow {
  opacity: .5;
  transform: translateX(4px);
}

.nav-next .nav-direction {
  justify-content: flex-end;
}

.nav-next .nav-content {
  text-align: right;
}

.nav-next .nav-arrow {
  opacity: .5;
  transform: translateX(-4px);
}

.nav-content {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.nav-title {
  font-family: var(--font-cormorant), serif;
  color: var(--foreground);
  letter-spacing: -.01em;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  transition: color .3s;
}

.nav-meta {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  font-size: .8rem;
  font-weight: 300;
}

.nav-meta .nav-category {
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .3s;
}

.nav-meta .nav-sep {
  opacity: .5;
  margin: 0 .5rem;
}

.nav-meta .nav-date {
  font-style: italic;
}

.nav-footer {
  border-top: 1px solid var(--line);
  justify-content: center;
  padding-top: 2rem;
  display: flex;
}

.nav-all-link {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  border: 1px solid var(--line);
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  font-size: .95rem;
  font-weight: 300;
  transition: all .3s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.nav-all-link:before {
  content: "";
  background: var(--paper);
  border-radius: 50%;
  width: 0;
  height: 0;
  transition: width .4s, height .4s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-all-link .all-link-icon {
  font-family: var(--font-cormorant), serif;
  color: var(--accent);
  opacity: .3;
  z-index: 1;
  font-size: .7rem;
  transition: all .3s;
  position: relative;
}

.nav-all-link .all-link-text {
  z-index: 1;
  letter-spacing: .05em;
  position: relative;
}

.nav-all-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 12px var(--shadow-subtle);
  transform: translateY(-2px);
}

.nav-all-link:hover:before {
  width: 300px;
  height: 300px;
}

.nav-all-link:hover .all-link-icon {
  opacity: .6;
  transform: scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: .3;
  }

  50% {
    opacity: .6;
  }
}

@media (max-width: 768px) {
  .nav-card {
    padding: 1.5rem 1.25rem;
  }

  .nav-next .nav-direction {
    justify-content: flex-start;
  }

  .nav-next .nav-content {
    text-align: left;
  }

  .nav-all-link {
    padding: .65rem 1.25rem;
    font-size: .9rem;
  }
}

/*# sourceMappingURL=_0e4811b4._.css.map*/