/* [project]/components/TagBadge.scss.css [app-client] (css) */
.tag-badge {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  border: 1px solid var(--line);
  white-space: nowrap;
  background: none;
  border-radius: 2px;
  align-items: center;
  gap: .15em;
  font-weight: 300;
  text-decoration: none;
  transition: all .3s;
  display: inline-flex;
}

.tag-badge .tag-hash {
  color: var(--accent);
  opacity: .6;
  font-weight: 400;
  transition: opacity .3s;
}

.tag-badge .tag-name {
  letter-spacing: .02em;
}

.tag-badge .tag-count {
  color: var(--sepia);
  opacity: .6;
  margin-left: .25em;
  font-size: .85em;
}

.tag-badge .tag-count:before {
  content: "(";
}

.tag-badge .tag-count:after {
  content: ")";
}

.tag-badge[href]:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.tag-badge[href]:hover .tag-hash {
  opacity: 1;
}

.tag-badge[href]:hover .tag-count {
  color: var(--accent);
  opacity: .8;
}

.tag-badge--default {
  padding: .35em .65em;
  font-size: .85rem;
}

.tag-badge--small {
  padding: .25em .5em;
  font-size: .75rem;
}

.tag-badge--small .tag-hash {
  font-size: .9em;
}

.tags-list {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.tag-cloud-item {
  display: inline-block;
}

.tag-cloud-item .tag-badge {
  transition: all .3s, transform .2s;
}

.tag-cloud-item .tag-badge:hover {
  transform: translateY(-2px)scale(1.02);
}

/* [project]/app/tags/[tag]/tag.scss.css [app-client] (css) */
.tag-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  animation: .8s fadeIn;
}

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

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

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

.tag-header {
  text-align: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4rem;
  padding-bottom: 3rem;
}

.breadcrumb-nav {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  margin-bottom: 2rem;
  font-size: .85rem;
  font-weight: 300;
}

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

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

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

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

.header-ornament {
  font-family: var(--font-cormorant), serif;
  color: var(--accent);
  opacity: .4;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.tag-title {
  font-family: var(--font-cormorant), serif;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: .75rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 300;
}

.tag-title .tag-hash {
  color: var(--accent);
  opacity: .5;
  font-weight: 300;
}

.tag-count-label {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  letter-spacing: .02em;
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
}

.header-line {
  background: linear-gradient(to right, transparent, var(--line), transparent);
  opacity: .5;
  width: 120px;
  height: 1px;
  margin: 2rem auto;
}

.back-to-tags {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  font-size: .9rem;
  font-weight: 300;
  transition: color .3s;
}

.back-to-tags:hover {
  color: var(--accent);
}

.passages-section {
  margin-bottom: 5rem;
}

.passages-list {
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
}

.passage-note {
  border: 1px solid var(--line);
  background: var(--background);
  padding: 1.5rem;
  text-decoration: none;
  transition: all .3s;
  display: block;
}

.passage-note:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 12px var(--shadow-subtle);
}

.passage-note:hover .note-number {
  color: var(--gold);
}

.passage-note:hover .note-title {
  color: var(--accent);
}

.passage-note article {
  gap: 1.5rem;
  width: 100%;
  display: flex;
}

.passage-note .note-number {
  font-family: var(--font-cormorant), serif;
  color: var(--accent);
  opacity: .5;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  transition: color .3s;
}

.passage-note .note-content {
  flex-direction: column;
  flex: 1;
  gap: .75rem;
  display: flex;
}

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

@media (max-width: 768px) {
  .passage-note .note-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

.passage-note .note-title {
  font-family: var(--font-cormorant), serif;
  color: var(--ink);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 500;
  transition: color .3s;
}

.passage-note .note-date {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  white-space: nowrap;
  font-size: .85rem;
  font-style: italic;
  font-weight: 300;
}

.passage-note .note-description {
  font-family: var(--font-spectral), serif;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.passage-note .note-footer {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-top: .5rem;
  display: flex;
}

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

.passage-note .note-meta .meta-category {
  color: var(--accent);
  font-weight: 400;
}

.passage-note .note-meta .meta-sep {
  margin: 0 .5rem;
}

.passage-note .note-tags {
  flex-wrap: wrap;
  gap: .35rem;
  display: flex;
}

.passage-note .note-reading-time {
  font-family: var(--font-spectral), serif;
  color: var(--sepia);
  opacity: .7;
  font-size: .8rem;
  font-style: italic;
  font-weight: 300;
}

@media (max-width: 768px) {
  .passage-note {
    gap: 1rem;
    padding: 1.25rem;
  }

  .passage-note article {
    flex-direction: column;
    gap: 1rem;
  }

  .passage-note .note-number {
    font-size: 1.2rem;
  }

  .passage-note .note-footer {
    flex-direction: column;
    gap: .75rem;
  }
}

.section-label {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.section-label span {
  font-family: var(--font-cormorant), serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--background);
  z-index: 1;
  padding: 0 1.5rem;
  font-size: .9rem;
  font-weight: 500;
  position: relative;
}

.section-label .label-line {
  background-image: repeating-linear-gradient(to right, var(--line) 0, var(--line) 3px, transparent 3px, transparent 7px);
  opacity: .5;
  z-index: 0;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.related-tags-section {
  margin-top: 4rem;
  padding-top: 2rem;
}

.related-tags {
  text-align: center;
}

.explore-all-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;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.explore-all-link:hover {
  background: var(--accent);
  color: var(--background);
}

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