/*
Theme Name: winnielim.org 2019
Theme URI: https://winnielim.org
Author: Winnie Lim
Author URI: https://winnielim.org
Description: minimal theme for personal website
License: GNU General Public License
License URI: https://www.gnu.org/licenses/gpl.html
*/
@import url(scss/reset.css);
:root {
  --background-color: 255, 255, 255;
  --site-color: 34, 34, 34;
  --text-color: rgba(34, 34, 34, 0.8);
  --tag-text-color: rgba(255, 255, 255, 0.8);
  --link-color: 1, 58, 211;
  --border-color: rgba(34, 34, 34, 0.1);
  --secondary-background-color: 34, 34, 34;
  --input-background-color: 255, 255, 255;
  --menu-button-background-color: 34, 34, 34;
  --menu-background-color: 255, 255, 255;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --shadow-border-color: rgba(0, 0, 0, 0.1);
  --image-opacity: 1; }

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: 38, 37, 36;
    --site-color: 245, 235, 225;
    --text-color: rgba(245, 235, 225, 0.6);
    --tag-text-color: rgba(245, 235, 225, 0.6);
    --link-color: 155, 210, 224;
    --border-color: rgba(245, 235, 225, 0.2);
    --secondary-background-color: 26, 25, 24;
    --input-background-color: 26, 25, 24;
    --menu-background-color: 26, 25, 24;
    --menu-button-background-color: 26, 25, 24;
    --shadow-color: rgba(0, 0, 0, 0.2);
    --shadow-border-color: rgba(0, 0, 0, 0.4);
    --image-opacity: 0.8; } }

* {
  box-sizing: border-box; }

html {
  overflow-y: scroll; }

body {
  background: rgba(var(--background-color), 1);
  box-sizing: border-box;
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 25px; }
  @media (min-width: 375px) {
    body {
      font-size: 18px;
      line-height: 28px; } }
  @media (min-width: 1280px) {
    body {
      font-size: 21px;
      line-height: 35px; } }
h1, h2, h3, h4, h5 {
  line-height: 100%;
  margin: 0; }

h2 {
  font-size: 28px;
  line-height: 35px; }

h3 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  font-size: 21px;
  line-height: 24px; }

h4 {
  font-size: 18px;
  line-height: 21px;
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif;
  font-weight: bold; }

h5 {
  font-size: 18px;
  line-height: 28px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold; }

p {
  margin: 0 0 28px; }

a {
  color: rgba(var(--link-color), 0.7);
  text-decoration: none;
  border-bottom: 1px solid; }

em {
  font-style: italic; }

strong {
  font-weight: bold; }

span {
  line-height: 1em; }

hr {
  border: 0;
  height: 1px;
  background: var(--border-color);
  width: 88px;
  line-height: 1em;
  margin: 63px auto 62px; }

img {
  height: auto;
  max-width: 100%;
  opacity: var(--image-opacity); }

blockquote {
  border-left: 5px solid var(--border-color);
  padding-left: 18px;
  margin: 28px 0;
  font-family: georgia, serif; }
  blockquote p {
    font-style: italic;
    font-size: 88.8%;
    line-height: 175%;
    color: rgba(var(--site-color), 0.4);
    margin: 0; }
  blockquote cite {
    display: block;
    font-size: 16px;
    font-style: italic;
    line-height: 28px; }
  blockquote.is-style-large {
    font-weight: normal;
    padding: 0;
    border: 0; }
    blockquote.is-style-large p {
      text-align: center;
      color: rgba(var(--site-color), 0.4); }
    blockquote.is-style-large strong {
      font-weight: normal; }

input[type="submit"] {
  -webkit-appearance: none;
  border: 1px solid var(--border-color);
  background-color: rgba(var(--site-color), 0.1);
  color: rgba(var(--site-color), 0.6);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  padding: 7px;
  border-radius: 3px;
  margin-top: 7px; }

textarea, input[type="text"] {
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif;
  font-size: inherit;
  line-height: inherit;
  border: 1px solid var(--border-color);
  background-color: rgba(var(--input-background-color), 0.8);
  color: var(--text-color); }

.container {
  margin: 0 20px 20px;
  display: block; }
  @media (min-width: 768px) {
    .container {
      margin: 0 40px 20px; } }
  @media (min-width: 1024px) {
    .container {
      display: grid;
      grid-gap: 20px;
      grid-template-areas: "header" "content"; } }
  @media (min-width: 1024px) {
    .container {
      width: 960px;
      margin: 20px auto; } }
#header {
  grid-area: header;
  position: relative;
  top: 0;
  width: 100%;
  left: 0;
  background: rgba(var(--background-color), 0.9);
  height: 48px; }
  #header h1 {
    font-style: italic;
    margin: 0;
    position: relative;
    font-size: 14px;
    line-height: 100%;
    top: 14px;
    left: 20px;
    display: inline; }
    @media (min-width: 1024px) {
      #header h1 {
        margin: 8px 0;
        position: absolute;
        left: 25px;
        top: 8px; } }
  @media (min-width: 768px) {
    #header {
      position: fixed; } }
.admin-bar #header {
  top: 0; }
  @media (min-width: 768px) {
    .admin-bar #header {
      top: 36px; } }
#content {
  grid-area: content;
  margin-top: 0; }
  @media (min-width: 768px) {
    #content {
      margin: 84px auto 0;
      width: 100%;
      max-width: 1088px; } }
.home .entry-content {
  max-width: 500px;
  margin: auto auto; }
  .home .entry-content h2 {
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
    font-size: 21px; }
  .home .entry-content h3 {
    margin-top: 14px;
    font-size: 16px;
    font-style: italic;
    font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    float: left;
    clear: both;
    margin-bottom: 14px; }
  .home .entry-content ul {
    padding-right: 28px; }
  .home .entry-content li {
    clear: both;
    font-size: 16px;
    line-height: 21px;
    list-style: none;
    margin-left: 0;
    margin-bottom: 7px; }
    @media (min-width: 400px) {
      .home .entry-content li {
        font-size: 18px;
        line-height: 24px; } }
  .home .entry-content p {
    clear: both;
    font-size: 16px;
    line-height: 21px; }
    .home .entry-content p.more-link {
      font-size: 14px;
      font-style: italic; }
    @media (min-width: 400px) {
      .home .entry-content p {
        font-size: 18px;
        line-height: 28px; } }
  .home .entry-content .post-with-thumbnail {
    float: left;
    clear: both;
    width: 100%;
    padding-bottom: 21px;
    position: relative;
    font-size: 16px;
    line-height: 21px; }
    @media (min-width: 400px) {
      .home .entry-content .post-with-thumbnail {
        font-size: 18px;
        line-height: 24px; } }
  .home .entry-content .post-title {
    max-width: 75%; }
  .home .entry-content .post-thumbnail {
    float: right;
    margin-left: 14px; }
    @media (min-width: 375px) {
      .home .entry-content .post-thumbnail {
        min-width: 128px;
        min-height: 64px; } }
    @media (min-width: 400px) {
      .home .entry-content .post-thumbnail {
        min-width: 148px;
        min-height: 74px; } }
    @media (min-width: 768px) {
      .home .entry-content .post-thumbnail {
        min-width: 168px;
        min-height: 84px; } }
.section-title {
  font-size: 18px;
  margin-top: 28px; }

.section-description {
  display: block;
  font-size: 14px;
  font-style: italic;
  line-height: 1.25em;
  margin-bottom: 35px; }
  .section-description p {
    margin: 0; }

article {
  margin: 24px 0 70px; }
  article.post {
    margin: 24px 0 70px; }

.entry-title {
  margin: 0 auto; }

.entry-category {
  font-size: 11px;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 7px 0 7px;
  text-transform: lowercase; }
  .entry-category a {
    background: rgba(var(--secondary-background-color), 0.9);
    padding: 1px 2px 2px 3px;
    border-radius: 2px;
    color: var(--tag-text-color);
    text-decoration: none; }

.entry-tags {
  font-size: 14px;
  font-style: italic;
  line-height: 21px; }

.entry-header, .entry-meta, .entry-title, .entry-summary, .searchform, .pagination, .section-header, .card-generic, .pods-pagination-advanced, .tag-filter, .twitter-tweet, .fixed-container, .highlight {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; }

.entry-content {
  padding: 14px 0;
  /* post content styles*/ }
  .entry-content h2, .entry-content h3, .entry-content h4, .entry-content p, .entry-content ul, .entry-content ol, .entry-content blockquote, .entry-content .wp-block-embed, .entry-content .highlight {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto; }
  .entry-content h2 {
    margin: 56px auto 7px; }
    .entry-content h2 + h3 {
      margin-top: 0; }
  .entry-content h3 {
    margin: 49px auto 7px auto; }
  .entry-content h4 {
    margin: 35px auto 7px auto; }
  .entry-content ul, .entry-content ol {
    margin-bottom: 28px; }
  .entry-content li {
    list-style: disc outside;
    margin-left: 18px;
    padding-bottom: 7px; }
    @media (min-width: 1024px) {
      .entry-content li {
        margin-left: 0;
        padding-bottom: 14px; } }
  .entry-content ol li {
    list-style-type: lower-roman; }
  .entry-content table {
    font-size: 14px;
    line-height: 18px; }
    .entry-content table th {
      font-weight: bold;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      border-bottom: 3px solid rgba(var(--site-color), 1);
      padding: 7px; }
    .entry-content table tr {
      border-bottom: 1px solid var(--border-color);
      text-align: center; }
    .entry-content table td {
      padding: 7px;
      border-spacing: 1px;
      border-right: 7px solid rgba(var(--background-color), 1); }
  .entry-content .wp-block-table {
    margin: auto auto 35px auto; }
    .entry-content .wp-block-table table {
      width: 98%; }
    .entry-content .wp-block-table figcaption {
      text-align: center;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      font-size: 14px;
      color: rgba(var(--site-color), 0.7); }
  .entry-content .section-title {
    font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif;
    font-weight: normal;
    margin: 0;
    font-size: 18px; }
    @media (min-width: 768px) {
      .entry-content .section-title {
        margin: 0; } }
  .entry-content .wp-block-quote.is-style-large {
    margin-left: auto;
    margin-right: auto; }
  @media (min-width: 768px) {
    .entry-content .wp-block-column {
      flex-basis: calc(50% - 7px); }
    .entry-content .wp-block-column:not(:last-child) {
      margin-right: 7px; }
    .entry-content .wp-block-column:not(:first-child) {
      margin-left: 7px; } }
  @media (max-width: 1023px) {
    .entry-content .wp-block-column:nth-child(2n) {
      margin-left: 0; }
    .entry-content .wp-block-column:not(:last-child) {
      margin-right: 0; }
    .entry-content .wp-block-column:not(:first-child) {
      margin-left: 0; } }
  @media (max-width: 767px) {
    .entry-content .wp-block-column {
      flex-basis: 100% !important; }
    .entry-content .wp-block-column:nth-child(2n) {
      margin-left: 0; }
    .entry-content .wp-block-column:not(:last-child) {
      margin-right: 0; }
    .entry-content .wp-block-column:not(:first-child) {
      margin-left: 0; } }
  .entry-content .wp-block-columns {
    margin-bottom: 0; }

.post-thumbnail {
  min-width: 88px;
  min-height: 44px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-color); }
  .post-thumbnail img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    object-fit: cover; }
  @media (min-width: 375px) {
    .post-thumbnail {
      min-width: 128px;
      min-height: 64px; } }
  @media (min-width: 400px) {
    .post-thumbnail {
      min-width: 148px;
      min-height: 74px; } }
  @media (min-width: 768px) {
    .post-thumbnail {
      min-width: 168px;
      min-height: 84px; } }
.posts-with-image {
  display: grid; }
  @media (min-width: 400px) {
    .posts-with-image {
      display: grid;
      grid-template-columns: repeat(2, auto);
      column-gap: 28px; } }
  @media (min-width: 768px) {
    .posts-with-image {
      grid-template-columns: repeat(3, auto);
      column-gap: 28px; } }
.post-with-image {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 2fr 3fr;
  grid-template-areas: "title" "thumbnail";
  column-gap: 14px;
  row-gap: 7px;
  margin-bottom: 28px; }
  .post-with-image .post-thumbnail {
    min-height: 128px; }
  @media (min-width: 400px) {
    .post-with-image {
      grid-template-columns: auto;
      grid-template-rows: 4fr 3fr;
      grid-template-areas: "title" "thumbnail"; }
      .post-with-image .post-thumbnail {
        min-height: 88px; } }
  .post-with-image .entry-title {
    font-size: 16px;
    line-height: 21px; }
    @media (min-width: 768px) {
      .post-with-image .entry-title {
        font-size: 18px;
        line-height: 24px; } }
  .post-with-image .post-with-image-title {
    grid-area: title; }
  .post-with-image .post-with-image-image {
    grid-area: thumbnail; }

.page-archive article, .search-results article, .category-essays article, .category-experiments article, .category-website article {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas: "meta" "thumbnail" "content";
  row-gap: 14px; }
  .page-archive article .post-meta, .search-results article .post-meta, .category-essays article .post-meta, .category-experiments article .post-meta, .category-website article .post-meta {
    grid-area: meta; }
  .page-archive article .post-content, .search-results article .post-content, .category-essays article .post-content, .category-experiments article .post-content, .category-website article .post-content {
    grid-area: content; }
  .page-archive article .post-with-image-image, .search-results article .post-with-image-image, .category-essays article .post-with-image-image, .category-experiments article .post-with-image-image, .category-website article .post-with-image-image {
    grid-area: thumbnail; }
  .page-archive article .post-thumbnail, .search-results article .post-thumbnail, .category-essays article .post-thumbnail, .category-experiments article .post-thumbnail, .category-website article .post-thumbnail {
    min-height: 168px; }
  @media (min-width: 768px) {
    .page-archive article, .search-results article, .category-essays article, .category-experiments article, .category-website article {
      grid-template-columns: 4fr auto;
      grid-template-rows: auto;
      column-gap: 28px;
      row-gap: 0px;
      grid-template-areas: "meta meta" "content thumbnail"; }
      .page-archive article .post-thumbnail, .search-results article .post-thumbnail, .category-essays article .post-thumbnail, .category-experiments article .post-thumbnail, .category-website article .post-thumbnail {
        min-height: 88px; } }
.entry-footer {
  max-width: 700px;
  margin: 7px auto 28px; }

.pods-pagination-advanced {
  display: block; }

.wp-block-image {
  margin: 14px auto 35px;
  text-align: center; }
  @media (max-width: 767px) {
    .wp-block-image.breakout {
      left: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      max-width: 100vw;
      position: relative;
      right: 50%;
      width: 100vw; } }
  .wp-block-image.outline {
    border: 1px solid var(--border-color);
    box-shadow: 2px 2px var(--shadow-color);
    border-radius: 3px; }
  .wp-block-image .aligncenter > figcaption,
  .wp-block-image .alignright > figcaption,
  .wp-block-image .is-resized > figcaption,
  .wp-block-image figcaption {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 125%;
    font-size: 14px;
    margin-top: 0; }

.wp-block-embed {
  text-align: center;
  opacity: var(--image-opacity); }

.wp-block-code {
  background: #eee;
  padding: 15px;
  font-family: monospace;
  font-size: 14px;
  white-space: pre-wrap;
  line-height: 1.28em;
  tab-size: 4;
  margin-bottom: 2em; }

.entry-summary {
  font-style: italic; }
  .entry-summary p {
    margin-top: 4px;
    margin-bottom: 0;
    line-height: 150%; }
    @media (min-width: 1024px) {
      .entry-summary p {
        font-size: 100%; } }
.entry-meta {
  display: block; }

.entry-date {
  display: block;
  font-size: 11px;
  line-height: 14px;
  font-style: italic;
  margin-bottom: 7px; }

.entry-comment-link {
  font-size: 80%;
  font-style: italic; }

.query-archive li {
  margin: 0 0 35px 0;
  list-style: none; }

.query-archive h2 {
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif;
  font-weight: normal; }

.category-journal article.post {
  margin-bottom: 168px; }

.category-poetry article.post {
  margin-bottom: 105px; }

.category-poetry .entry-content {
  padding-bottom: 0; }

.page-notebooks ul {
  margin: 0; }

.page-notebooks li {
  list-style: disc outside; }
  .page-notebooks li article {
    display: inline; }
  .page-notebooks li h4 {
    display: inline; }

.collection-list li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0; }

.collection-list .card-generic {
  margin: 21px auto; }

.card-generic {
  list-style: none;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  padding: 25px 25px 20px;
  margin: 25px auto;
  position: relative; }
  .card-generic h5 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: bold;
    margin-top: 15px; }
  .card-generic blockquote {
    margin-right: 25px; }
    .card-generic blockquote p {
      font-size: 100%; }

.resource-source {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  margin: 15px auto -10px;
  display: block; }

.resource-author, .resource-date-read {
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif;
  font-size: 14px;
  font-style: italic;
  line-height: 14px;
  display: block;
  float: left;
  margin-right: 14px;
  margin: 3px 14px 14px 0; }

.resource-snippet {
  clear: both;
  font-size: 16px;
  margin-top: 15px; }
  .resource-snippet p {
    line-height: 168%; }
  .resource-snippet img {
    max-width: 100%;
    width: auto;
    height: auto; }

.resource-description {
  font-size: 18px;
  line-height: 28px;
  margin: 7px 0 7px 0;
  clear: both; }

.resource-type {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 11px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding: 5px;
  background: rgba(var(--secondary-background-color), 0.9);
  color: var(--tag-text-color);
  border-radius-left: 3px; }

.resource-comment-link, .resource-meta-links {
  font-size: 11px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; }

.resource-comment-link {
  margin-top: 14px;
  display: block;
  clear: both; }

.resource-highlights li {
  display: inline-block;
  list-style: none;
  margin: 14px 0 28px; }

.resource-highlights .resource-meta-links {
  display: block;
  margin-top: -14px; }

.highlight {
  margin-bottom: 28px; }
  .highlight blockquote {
    margin-bottom: 0; }
  .highlight cite {
    display: inline-block;
    border-left: 5px solid var(--border-color);
    padding-left: 18px;
    line-height: 2em;
    margin-top: -14px;
    font-size: 90%;
    font-style: italic; }

.highlight-note {
  margin-bottom: -21px;
  font-style: italic; }

.entry-content .booklist li, .archive-list-item {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  padding-bottom: 21px;
  margin-left: 0; }
  .entry-content .booklist li .resource-date-read, .archive-list-item .resource-date-read {
    margin: 0; }
  @media (min-width: 768px) {
    .entry-content .booklist li, .archive-list-item {
      grid-template-columns: 1fr 6fr; } }
  .entry-content .booklist li span, .archive-list-item span {
    line-height: 28px; }

.archive-list .archive-list-item {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; }

.archive-list .entry-date {
  margin: 0;
  padding: 0;
  line-height: 21px; }

.archive-list .entry-category {
  margin: 0; }

.archive-list .archive-post-title {
  margin: 0;
  padding: 0;
  line-height: 24px; }

.archive-list .post-edit-link {
  width: 100%;
  display: block; }

.archive-view-toggle {
  font-size: 14px;
  font-style: italic; }

@media (min-width: 1024px) {
  #sidebar {
    margin-right: 8%;
    max-width: 288px; } }

.widget {
  margin: 25px 0; }

#menu li {
  padding: 14px 0 0 0; }
  @media (min-width: 768px) {
    #menu li {
      display: inline;
      padding: 0 0 0 3px;
      font-size: 16px; } }
@media (min-width: 768px) {
  .menu-container {
    width: auto;
    position: absolute;
    right: 35px;
    top: 7px; } }

/* credit to https://codepen.io/erikterwan/pen/EVzeRP */
#menu-toggle input {
  display: none; }

#menu-toggle span {
  display: none; }

@media (max-width: 767px) {
  #menu-toggle {
    display: block;
    position: fixed;
    top: 0px;
    right: 0px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none; }
    #menu-toggle input {
      display: block;
      width: 55px;
      height: 32px;
      position: absolute;
      top: -7px;
      right: 0px;
      cursor: pointer;
      opacity: 0;
      /* hide this */
      z-index: 2;
      /* and place it over the hamburger */
      -webkit-touch-callout: none; }
      #menu-toggle input:checked ~ .menu-container {
        transform: translate(-100%, 0); }
    #menu-toggle span {
      display: block;
      width: 55px;
      height: 28px;
      margin-bottom: 5px;
      position: relative;
      cursor: pointer;
      z-index: 1;
      background: rgba(var(--menu-button-background-color), 0.9);
      padding: 5px;
      text-align: center;
      color: var(--tag-text-color);
      line-height: 19px;
      font-style: italic; }
    #menu-toggle .menu-container {
      position: absolute;
      width: 280px;
      height: 100vh;
      margin: -60% 0 0 125%;
      padding: 56px 20px;
      background: rgba(var(--menu-background-color), 1);
      border-left: 1px solid var(--shadow-border-color);
      box-shadow: -3px 0 0 0 var(--shadow-color);
      list-style-type: none;
      -webkit-font-smoothing: antialiased;
      /* to stop flickering of text in safari */
      transform-origin: 0% 0%;
      transform: translate(0%, 0);
      transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
      z-index: -1; } }

#comments {
  margin-top: 56px; }
  #comments h3 {
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0 0 7px 0; }
  #comments label {
    display: block; }
  #comments textarea, #comments input[type="text"] {
    width: 100%;
    padding: 7px; }
  @media (min-width: 1024px) {
    #comments input[type="text"] {
      max-width: 600px; } }
  #comments .comment, #comments .pingback {
    border-top: 1px solid var(--border-color);
    padding: 14px 0 0 0;
    margin: 14px 0 49px; }
    #comments .comment .comment, #comments .pingback .comment {
      margin: 14px 0 0 14px;
      padding-left: 14px;
      border-top: 1px dotted var(--border-color); }
  #comments .comment-body {
    position: relative; }
    #comments .comment-body p {
      clear: both; }
  #comments .comment-meta {
    font-size: 11px;
    position: absolute;
    top: -14px;
    right: 0; }
    @media (min-width: 1024px) {
      #comments .comment-meta {
        top: 0; } }
  #comments .comment-author {
    font-size: 14px;
    margin-bottom: 8px; }
    #comments .comment-author .avatar {
      float: left;
      margin-right: 8px;
      border-radius: 3px; }
    #comments .comment-author cite, #comments .comment-author span {
      line-height: 42px; }
    #comments .comment-author span {
      font-style: italic; }

.screen-reader-text {
  text-indent: -999999px; }

#searchform input[type="text"] {
  padding: 8px 7px 5px;
  font-size: 16px;
  line-height: 21px;
  min-width: 180px; }
  @media (min-width: 375px) {
    #searchform input[type="text"] {
      width: 77%;
      max-width: 600px; } }
.tag-filter {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 21px; }

.error404 .searchform {
  margin-bottom: 28px; }

#ez-toc-container {
  display: table;
  margin: 0 0 14px;
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; }

.ez-toc-widget-container {
  /*padding: 0 10px;*/
  position: relative;
  white-space: nowrap; }

.ez-toc-widget-container ul.ez-toc-list {
  padding: 0 14px; }

#ez-toc-container ul ul,
.ez-toc div.ez-toc-widget-container ul ul {
  margin-left: 1.5em; }

#ez-toc-container ul,
#ez-toc-container li {
  margin: 0;
  padding: 0; }

#ez-toc-container ul,
#ez-toc-container li,
#ez-toc-container ul li,
.ez-toc-widget-container,
.ez-toc-widget-container li {
  background: none;
  list-style-type: none;
  list-style: none;
  line-height: 1.6;
  margin: 0;
  overflow: hidden;
  z-index: 1; }

/*#ez-toc-container.have_bullets li {*/
/*padding-left: 12px;*/
/*}*/
#ez-toc-container p.ez-toc-title {
  text-align: left;
  margin: 0;
  padding: 0; }

.ez-toc-title-container {
  display: table;
  width: 100%; }

.ez-toc-title,
.ez-toc-title-toggle {
  display: table-cell;
  text-align: left;
  vertical-align: middle; }

.ez-toc-wrap-left {
  float: left;
  margin-right: 10px; }

.ez-toc-wrap-right {
  float: right;
  margin-left: 10px; }

#ez-toc-container a:visited {
  color: #9f9f9f; }

#ez-toc-container.counter-hierarchy ul,
.ez-toc-widget-container.counter-hierarchy ul,
#ez-toc-container.counter-flat ul,
.ez-toc-widget-container.counter-flat ul {
  counter-reset: item; }

#ez-toc-container.counter-numeric li,
.ez-toc-widget-container.counter-numeric li {
  list-style-type: decimal;
  list-style-position: inside; }

#ez-toc-container.counter-decimal ul.ez-toc-list li a::before,
.ez-toc-widget-container.counter-decimal ul.ez-toc-list li a::before {
  content: counters(item, ".") ". ";
  counter-increment: item; }

#ez-toc-container.counter-roman li a::before,
.ez-toc-widget-container.counter-roman ul.ez-toc-list li a::before {
  content: counters(item, ".", upper-roman) ". ";
  counter-increment: item; }

.ez-toc-widget-container ul.ez-toc-list li::before {
  content: ' ';
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
  line-height: 28px;
  z-index: -1; }

.ez-toc-widget-container ul.ez-toc-list li.active::before {
  background-color: rgba(var(--site-color), 0.6); }

.ez-toc-widget-container li.active > a {
  font-weight: 900; }

.ez-toc-btn {
  display: inline-block;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-decoration: underline;
  margin: 0em 0 0em; }

.ez-toc-btn-default:before {
  content: "table of contents"; }

.ez-toc-btn:active, .btn.active {
  background-image: none; }

.comment-form-comment-subscribe {
  display: block;
  margin-top: -21px; }
  .comment-form-comment-subscribe input {
    margin-right: 7px; }
  .comment-form-comment-subscribe label {
    font-style: italic; }

.editor-styles-wrapper {
  font-family: Palatino, "Palatino Linotype", "Palatino LT STD", georgia, serif; }

.editor-post-title .editor-post-title__input {
  font-size: 28px;
  font-weight: normal; }

.wp-block {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto; }

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