.PostDate {
  font-variant-caps: small-caps;
}

.PostMeta {
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-block-start: calc(var(--paragraph-spacing) * -1);
  display: flex;
  justify-content: start;
  align-items: center;
}
.PostTags {
  text-align: center;
  list-style: none;
  margin: 0;
  padding: var(--size-default) 0;
  margin-block-start: calc(var(--paragraph-spacing) * -1);
  display: grid;
  justify-content: start;
  align-items: center;
  grid-template-columns: repeat(auto-fill, minmax(10rem, min-content));
  gap: var(--size-small);
  hyphens: manual;
  max-inline-size: none;
}
.PostTags li {
  display: inline-block;
}

.PostBottom {
  margin-top: var(--paragraph-spacing);
  display: flex;
  flex-direction: column;
}

/*@media (min-width: 800px) {*/
/*  .Post a {*/
/*    animation: var(--animation-act-small);*/
/*    display: inline-flex;*/
/*  }*/
/*}*/

.Post {
  background-color: var(--background-color);
  background-image: var(--post-back);
  text-wrap: pretty;
}

.Post > blockquote,
.Post > figure {
  background-color: var(--background-color);
  background: var(--background-gradient);
  border: 1px solid var(--border-color);
  padding: var(--size-default);
  width: 100%;
  box-shadow: var(--shadow-elevation-medium-with-inset);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.Post > figure figcaption,
.Post > figure figcaption p {
  font-size: var(--font-size);
  font-weight: 600;
  text-wrap: balance;
  text-align: right;
}

.Post figure table {
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
  grid-column: 1/-1;
}

.Post th,
.Post td {
  padding: var(--size-xsmall);
}

@media (min-width: 500px) {
  .Post blockquote > p:first-child::after {
    content: "“";
    position: absolute;
    top: -4rem;
    left: -4rem;
    font-size: 10rem;
    color: var(--orange-border);
  }
  .Post blockquote {
    padding: var(--size-l1) var(--size-l1) var(--size-l1) var(--size-l3);
  }
}
.Post blockquote > p {
  max-inline-size: var(--measure);
  font-size: var(--font-size-small);
  line-height: 1.35;
  position: relative;
}

/* .Post a::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  transform: translateY(101%);
  transition: transform 250ms var(--elastic-easing);
  background-color: #fff9c640;
  z-index: 0;
} */
/*.Post a:hover,*/
/*.Post a:focus,*/
/*.Post a:active {*/
/*  animation: var(--animation-bounce-small);*/
/*}*/

/* .Post a:hover::before {
  transform: translateY(0);
} */

.Post .footnotes ol {
  padding: 0;
}

.Post .footnotes > ol > li {
  background-color: var(--background-color);
  background: var(--background-gradient);
  border: 1px solid var(--border-color);
  padding: var(--size-l1) var(--size-l2) var(--size-l2);
  width: 100%;
  margin-inline-start: var(--size-l1);
  position: relative;
  max-inline-size: none;
}

.Post .footnotes > ol > li::marker {
  font-size: var(--font-size-large);
  color: var(--text-color);
  font-weight: 900;
  line-height: 0.01;
}
