@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  font-size: 110%;
  line-height: 1.2;
  min-height: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: hsl(275, 80%, 10%);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4, h5, h6 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

.icon-button {
  display: flex;
  flex-direction: row;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}
.icon-button i {
  color: inherit;
}

.logo-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--logo-image-height);
  max-width: 100%;
  user-select: none;
  -webkit-user-select: none;
}
.logo-image img {
  height: 100%;
  width: auto;
  display: block;
}

@font-face {
  font-family: "Apalu";
  src: url("../fonts/Apalu.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
.logo-text {
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--logo-text-height);
  flex-shrink: 0;
}
.logo-text .line1 {
  color: white;
  font-size: calc(0.7875 * var(--logo-text-height));
  font-family: "Apalu";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin-top: calc(0.0225 * var(--logo-text-height));
  margin-bottom: calc(-0.1125 * var(--logo-text-height));
  display: block;
  user-select: none;
  -webkit-user-select: none;
}
.logo-text .line2 {
  font-size: calc(0.225 * var(--logo-text-height));
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: calc(-0.1125 * var(--logo-text-height));
  color: rgb(235, 200, 0);
  display: block;
  user-select: none;
  -webkit-user-select: none;
}
.logo-text .line2.hero {
  animation: hero-text-color-fade 4s ease-in-out infinite;
}

@keyframes hero-text-color-fade {
  0% {
    color: rgb(235, 200, 0);
  }
  30% {
    color: rgb(235, 200, 0);
  }
  50% {
    color: rgb(255, 119, 0);
  }
  70% {
    color: rgb(235, 200, 0);
  }
  100% {
    color: rgb(235, 200, 0);
  }
}
.site-logo {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(0.15 * var(--site-logo-height));
  text-decoration: none;
  --logo-image-height: calc(1.0 * var(--site-logo-height));
  --logo-text-height: calc(0.8 * var(--site-logo-height));
}

.main-header-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 80px;
  position: absolute;
  z-index: 10;
  background-color: transparent;
  border-bottom: 1px solid rgb(80, 80, 80);
}
.main-header-wrapper.menu-header {
  position: relative;
  border-bottom-color: transparent;
}

.main-header {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  padding-left: 1rem;
  padding-right: 1rem;
  --site-logo-height: 64px;
}

.header-icons {
  display: flex;
  flex-direction: row;
  margin-right: 16px;
}
.header-icons .icon-button .icon {
  display: block;
  width: 28px;
  height: 28px;
  fill: white;
}

.site-footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  background-color: hsl(275, 80%, 10%);
  border-top: 1px solid rgb(80, 80, 80);
}

.site-footer {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  height: 80px;
  color: rgb(128, 128, 128);
}

body.no-scroll {
  overflow: hidden;
}

.menu {
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  flex-direction: column;
  background: rgba(148, 148, 148, 0.5);
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  margin: 0;
  width: 350px;
  min-width: min-content;
  border: none;
  outline: none;
  backdrop-filter: blur(20px);
  max-height: 100dvh;
  overflow-y: auto;
  transform: translateY(-110%);
  opacity: 0;
}

.menu[open] {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@starting-style {
  .menu[open] {
    transform: translateY(-110%);
    opacity: 0;
  }
}

.menu:not([open]) {
  display: none;
}

.menu::backdrop {
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
  opacity: 0;
}

.menu[open]::backdrop {
  opacity: 1;
  transition: opacity 0.2s ease;
}
@starting-style {
  .menu[open]::backdrop {
    opacity: 0;
  }
}

.menu-content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1rem;
}

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

.menu-group-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgb(192, 192, 192);
  letter-spacing: 0.02em;
  padding: 0.6rem 0;
}

.menu-list {
  display: flex;
  flex-direction: column;
  width: max-content;
  list-style: none;
}
.menu-list.with-icons {
  display: grid;
  grid-template-columns: auto auto;
}

.menu-item {
  display: flex;
  flex-direction: row;
  padding: 0 0;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.75em;
  text-decoration: none;
  color: rgb(235, 200, 0);
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition: border-color 0.1s ease;
}
.menu-item:hover, .menu-item:focus {
  outline: none;
  border-color: rgb(235, 200, 0);
}
.menu-item .icon {
  display: block;
  width: 28px;
  height: 28px;
  fill: rgb(192, 192, 192);
}

.post-hdr-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  position: relative;
  background: linear-gradient(to bottom, hsl(275, 80%, 35%), hsl(275, 80%, 15%));
  padding-top: 80px;
  border-bottom: 1px solid rgb(80, 80, 80);
}

.post-hdr {
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  color: white;
  gap: 1.5rem;
  padding-top: 2rem;
  padding-bottom: 3rem;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}
.post-hdr .title-subtitle {
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  text-wrap: balance;
}
.post-hdr .title-subtitle .title {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 2.2rem;
  color: white;
}
.post-hdr .title-subtitle .subtitle {
  color: rgb(192, 192, 192);
}
.post-hdr .date {
  text-align: center;
  color: rgb(192, 192, 192);
}
.post-hdr .breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 1rem;
}
.post-hdr .breadcrumb a {
  color: rgb(235, 200, 0);
  text-decoration: none;
}
.post-hdr .breadcrumb a:hover, .post-hdr .breadcrumb a:focus {
  text-decoration: underline;
}
.post-hdr .breadcrumb a:visited {
  color: rgb(235, 200, 0);
}
.post-hdr .breadcrumb li {
  display: flex;
  align-items: center;
}
.post-hdr .breadcrumb li.current {
  color: #b1b0b0;
}
.post-hdr .breadcrumb li::after {
  content: "»";
  padding: 0 0.2em;
  color: #969696;
}
.post-hdr .breadcrumb li:last-child::after {
  content: "";
  padding: 0;
}

.post-hdr-nav {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}
.post-hdr-nav a {
  color: rgb(235, 200, 0);
  text-decoration: none;
}
.post-hdr-nav a:hover, .post-hdr-nav a:focus {
  text-decoration: none;
}
.post-hdr-nav a:visited {
  color: rgb(235, 200, 0);
}

.post-hdr-nav-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgb(133, 113.1914893617, 0);
  border-radius: 0.3rem;
  background: hsl(275, 80%, 20%);
  color: rgb(235, 200, 0);
  overflow: hidden;
  text-decoration: none;
}
.post-hdr-nav-item:hover, .post-hdr-nav-item:focus {
  background: hsl(275, 80%, 30%);
  box-shadow: 0 0 2px 2px rgba(235, 200, 0, 0.7);
}
.post-hdr-nav-item .icon {
  display: block;
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.post-hdr-nav-item .icon path {
  transform: scale(1.2);
  transform-origin: center;
  transform-box: fill-box;
}
.post-hdr-nav-item.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.post-content ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 40px;
}
.post-content ol > * + * {
  margin-top: 1em;
}
.post-content ol li {
  line-height: 1.6;
}

.post-content ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 40px;
}
.post-content ul > * + * {
  margin-top: 1em;
}
.post-content ul li {
  line-height: 1.6;
}

.post-content li > ul,
.post-content li > ol {
  margin-left: 40px;
}

.post-content ol.tight-list,
.post-content ul.tight-list {
  margin: 1em 0 0 0;
  list-style-position: outside;
  padding-left: 40px;
}
.post-content ol.tight-list > * + *,
.post-content ul.tight-list > * + * {
  margin-top: 0;
}
.post-content ol.tight-list li,
.post-content ul.tight-list li {
  line-height: 1.6;
}
.post-content ol.tight-list li,
.post-content ul.tight-list li {
  margin: 0;
}
.post-content ol.tight-list li:first-child,
.post-content ul.tight-list li:first-child {
  margin-top: 0;
}

.post-content .tight-list > ol,
.post-content .tight-list > ul {
  margin: 1em 0 0 0;
  list-style-position: outside;
  padding-left: 40px;
}
.post-content .tight-list > ol > * + *,
.post-content .tight-list > ul > * + * {
  margin-top: 0;
}
.post-content .tight-list > ol li,
.post-content .tight-list > ul li {
  line-height: 1.6;
}
.post-content .tight-list > ol li,
.post-content .tight-list > ul li {
  margin: 0;
}
.post-content .tight-list > ol li:first-child,
.post-content .tight-list > ul li:first-child {
  margin-top: 0;
}

.post-content table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
}
.post-content table tr {
  background-color: transparent;
}
.post-content table tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.post-content table tr:nth-child(even) {
  background-color: #ffffff;
}
.post-content table th,
.post-content table td {
  text-align: left;
  padding: 0.2rem 0.5rem;
  border: 1px solid #ddd;
}
.post-content table th {
  background-color: #A62020;
  color: #FFFFFF;
  font-weight: bold;
}

.post-content-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1em;
  margin-bottom: 1em;
}

.source-toggle-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: rgb(160, 160, 160);
  cursor: pointer;
}
.source-toggle-button:focus {
  outline: none;
}
.source-toggle-button .icon {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  fill: rgb(160, 160, 160);
}
.source-toggle-button .icon-on {
  display: none;
}
.source-toggle-button[aria-pressed=true] .icon-on {
  display: inline;
}
.source-toggle-button[aria-pressed=true] .icon-off {
  display: none;
}

span.bible {
  display: inline-block;
  position: relative;
  color: hsl(275, 80%, 40%);
  padding: 0 0.1em;
  border-radius: 0.2em;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
span.bible:hover .bible-label::after {
  transform: scaleY(-1);
}
span.bible .bible-label {
  display: inline-block;
}
span.bible .bible-label::after {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.5em;
  margin-left: 0.2em;
  vertical-align: 0.1em;
  pointer-events: none;
  transition: transform 0.2s;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="10" xmlns="http://www.w3.org/2000/svg"><polyline points="2,2 10,8 18,2" fill="none" stroke="gray" stroke-width="4"/></svg>') center/contain no-repeat;
}
span.bible .bible-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: hsl(275, 80%, 15%);
  border: 1px solid rgb(184, 156.5957446809, 0);
  border-radius: 0.2em;
  padding: 0.5em 0;
  min-width: 100%;
  z-index: 1000;
}
span.bible .bible-dropdown a {
  display: block;
  padding: 0.3em 1em;
  text-decoration: underline;
}
span.bible .bible-dropdown a.current {
  pointer-events: none;
}
span.bible:hover .bible-dropdown, span.bible:focus-within .bible-dropdown {
  display: block;
}

/* post-user */
.post-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: auto;
}

.post-content {
  width: 100%;
  max-width: 800px;
  color: rgb(160, 160, 160);
  hyphens: auto;
  word-wrap: break-word;
  line-height: 1.6;
  padding: 1em 1rem;
}
.post-content a {
  color: rgb(235, 200, 0);
  text-decoration: none;
}
.post-content a:hover, .post-content a:focus {
  text-decoration: underline;
}
.post-content a:visited {
  color: rgb(184, 156.5957446809, 0);
}
.post-content > * + * {
  margin-top: 1em;
}
.post-content p.source + p {
  margin-top: 0.5em;
}
.post-content p {
  text-align: justify;
}
.post-content p.source {
  color: rgb(100, 100, 100);
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-weight: 700;
  line-height: 1.25;
  color: rgb(200, 200, 200);
}
.post-content h1 {
  font-size: 1.3rem;
}
.post-content h2 {
  font-size: 1.1rem;
}
.post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-size: 1rem;
}
.post-content blockquote {
  color: hsl(275, 80%, 70%);
  border-left: 0.3em solid hsl(275, 80%, 35%);
  padding-left: 1em;
}
.post-content blockquote > * + * {
  margin-top: 1em;
}
.post-content iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  border: none;
}

.block-audio {
  width: 100%;
}
.block-audio audio {
  width: 100%;
  display: block;
}
.block-audio .element-caption {
  margin-top: 0.5em;
  font-size: 0.8em;
  color: rgb(100, 100, 100);
  text-align: center;
}

.post-cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.post-card {
  border: 1px solid rgb(235, 200, 0);
  border-radius: 0.5rem;
  background: hsl(275, 80%, 20%);
  color: inherit;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0.3em 1em;
  gap: 0.2em;
}
.post-card:hover, .post-card:focus {
  background: hsl(275, 80%, 30%);
  box-shadow: 0 0 5px 5px rgba(235, 200, 0, 0.7);
}

.post-content a.post-card {
  text-decoration: none;
}

.post-card-date {
  font-size: 0.9em;
  color: rgb(200, 200, 200);
  text-align: left;
}

.post-card-title {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}

.post-card-read-time {
  font-size: 0.9em;
  color: rgb(200, 200, 200);
  text-align: right;
}

.post-nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.post-nav {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1em 1rem;
}
.post-nav a {
  color: rgb(235, 200, 0);
  text-decoration: none;
}
.post-nav a:hover, .post-nav a:focus {
  text-decoration: none;
}
.post-nav a:visited {
  color: rgb(235, 200, 0);
}
.post-nav.top {
  border-bottom: 1px solid rgb(80, 80, 80);
}
.post-nav.bottom {
  border-top: 1px solid rgb(80, 80, 80);
}

.post-nav-item {
  border: 1px solid rgb(133, 113.1914893617, 0);
  border-radius: 0.3rem;
  background: hsl(275, 80%, 20%);
  color: rgb(235, 200, 0);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.5em;
  width: 48%;
  gap: 0.4em;
}
.post-nav-item:hover, .post-nav-item:focus {
  background: hsl(275, 80%, 30%);
  box-shadow: 0 0 2px 2px rgba(235, 200, 0, 0.7);
}
.post-nav-item.prev {
  flex-direction: row;
  text-align: left;
}
.post-nav-item.next {
  flex-direction: row-reverse;
  text-align: right;
}
.post-nav-item.is-disabled {
  opacity: 0;
}

.post-nav-title {
  text-wrap: balance;
}

.pagination-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.pagination {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  padding: 1em 1rem;
  gap: 1em;
  justify-content: space-between;
}
.pagination.top {
  border-bottom: 1px solid rgb(80, 80, 80);
}
.pagination.bottom {
  border-top: 1px solid rgb(80, 80, 80);
}

.pagination-pages {
  display: flex;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  flex-wrap: nowrap;
}

.page-slot {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgb(133, 113.1914893617, 0);
  border-radius: 0.3rem;
  background: hsl(275, 80%, 20%);
  color: rgb(235, 200, 0);
  overflow: hidden;
  text-decoration: none;
}
.page-slot:hover, .page-slot:focus {
  background: hsl(275, 80%, 30%);
  box-shadow: 0 0 2px 2px rgba(235, 200, 0, 0.7);
}
.page-slot .icon {
  display: block;
  width: 36px;
  height: 36px;
  fill: currentColor;
}
.page-slot .icon path {
  transform: scale(1.2);
  transform-origin: center;
  transform-box: fill-box;
}
.page-slot.current {
  background: none;
  border: none;
  color: white;
  font-weight: 700;
  pointer-events: none;
}
.page-slot.ellipsis {
  border-color: transparent;
  background-color: transparent;
  font-weight: 700;
  pointer-events: none;
}
.page-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
.page-slot.hidden {
  visibility: hidden;
  border-color: transparent;
}
