:root {
  --site-padding: 22px;
  --btn-bg: #111;
  --btn-text: #fff;
  --border: rgba(0,0,0,0.1);
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: #333;
  font-size: 1em;
  background: #fff;
}

#outer-wrapper {
  min-height: 100%;
  margin-bottom: -40px;
}
#outer-wrapper::after {
  content: "";
  display: block;
  height: 100%;
}

#wrapper {
  margin: 10px auto;
  width: 100%;
  max-width: 760px;
  box-sizing: border-box;
  padding: 0 var(--site-padding);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --text: #fafafa;
    --text-secondary: #d4d4d4;
    --text-muted: #a3a3a3;
    --border: rgba(255,255,255,0.1);
    --lightGray: #1a1a1a;
    --btn-bg: #fafafa;
    --btn-text: #0a0a0a;
  }
  html, body {
    background: var(--bg);
    color: var(--text);
  }
  #outer-wrapper, #wrapper {
    background: var(--bg);
  }
  .site-header {
    border-color: var(--border);
    background: var(--bg);
  }
  .site-nav a,
  .site-action,
  .site-menu-panel a {
    color: var(--text);
  }
  .site-nav a.active {
    color: var(--text);
  }
  .site-action svg,
  .site-menu summary svg {
    stroke: var(--text);
  }
  .site-menu-panel {
    background: var(--bg);
    border-color: var(--border);
  }
  .subscribe-section {
    background: var(--bg);
    border-color: var(--border);
  }
  .subscribe-section input[type=email] {
    color: var(--text);
    background: transparent;
  }
  .subscribe-section input[type=email]::placeholder {
    color: var(--text-muted);
  }
  #subscribeButton svg path {
    stroke: var(--text);
  }
  a {
    color: #6cb4d4;
  }
  h2 a {
    color: var(--text-secondary);
  }
  .post-title a {
    color: var(--text);
  }
  .post-item .long-title {
    color: var(--text);
  }
  .post-date, .post-num-words {
    color: var(--text-muted);
  }
  .post-date span {
    color: var(--text-muted);
  }
  blockquote {
    border-color: var(--border);
  }
  hr {
    border-color: var(--border);
  }
  code {
    background: #2a2a2a;
  }
  .post-item {
    border-color: var(--border);
  }
  .date-separator {
    color: var(--text-muted);
    border-color: var(--border);
  }
  .filter {
    border-color: var(--border);
  }
  .filter a {
    color: var(--text-muted);
  }
}
header.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0;
  min-height: 44px;
  padding: 0 20px;
  box-sizing: border-box;
  background: var(--bg, #fff);
  width: 100%;
  position: relative;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  justify-content: flex-start;
  min-height: 44px;
}

.site-logo img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
}

.site-nav a {
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.site-nav a:hover {
  opacity: 0.6;
}

.site-nav a.active {
  font-weight: 600;
}

.site-nav-divider {
  display: none;
}

.site-nav .site-nav-divider ~ a {
  display: none;
}

@media (min-width: 768px) {
  header.site-header {
    grid-template-columns: auto auto auto;
    justify-content: center;
    gap: 24px;
  }
  .site-logo,
  .site-actions {
    justify-self: auto;
  }
  .site-actions {
    justify-content: flex-start;
  }
  .site-nav a {
    font-size: 0.75rem;
  }
  .site-nav .site-nav-divider ~ a {
    display: inline;
  }
  .site-menu {
    display: none;
  }
}
@media (min-width: 768px) {
  .site-nav-divider {
    display: inline-block;
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.15);
    margin: 0 8px;
  }
}
@media (min-width: 768px) and (prefers-color-scheme: dark) {
  .site-nav-divider {
    background: rgba(255, 255, 255, 0.15);
  }
}
.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 26px;
  min-width: 0;
  position: relative;
}

.site-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.site-action:hover {
  opacity: 0.6;
}

.site-action svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-inline-field {
  display: none;
  align-items: center;
  min-width: 0;
  height: 36px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.site-inline-field input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 0 0 18px;
  color: #333;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
}

.site-inline-field input::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.site-inline-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 100%;
  border: none;
  background: transparent;
  color: inherit;
  padding: 0 14px 0 10px;
  cursor: pointer;
}

.site-inline-submit svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-inline-subscribe-btn {
  flex: 0 0 auto;
  height: 32px;
  margin-left: 12px;
  margin-right: 2px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: #d1d1d6;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-menu {
  position: relative;
}

.site-menu summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.site-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon .menu-top, .menu-icon .menu-bottom {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  transform-box: fill-box;
}

.site-menu[open]:not(.closing) .menu-icon .menu-top {
  transform: translateY(4px) rotate(45deg);
}
.site-menu[open]:not(.closing) .menu-icon .menu-bottom {
  transform: translateY(-4px) rotate(-45deg);
}

.site-menu[open] .site-action {
  opacity: 1;
  z-index: 102;
  position: relative;
}

.site-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
}

.site-menu[open] .site-menu-overlay {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear;
}

.site-menu[open].closing .site-menu-overlay {
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.4s;
}

.site-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-width: auto;
  padding: 50px 0;
  border: none;
  border-radius: 0;
  background: #fff;
  z-index: 101;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-menu[open] .site-menu-panel {
  clip-path: inset(0 0 0 0);
}

.site-menu[open].closing .site-menu-panel {
  clip-path: inset(0 0 100% 0);
}

.site-menu-panel a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.03em;
  padding: 10px 48px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.15s ease;
}

.site-menu[open] .site-menu-panel a {
  opacity: 1;
  transform: translateY(0);
}

.site-menu[open] .site-menu-panel a:nth-child(1) {
  transition-delay: 0.06s;
}

.site-menu[open] .site-menu-panel a:nth-child(2) {
  transition-delay: 0.1s;
}

.site-menu[open] .site-menu-panel a:nth-child(3) {
  transition-delay: 0.14s;
}

.site-menu[open] .site-menu-panel a:nth-child(4) {
  transition-delay: 0.18s;
}

.site-menu[open] .site-menu-panel a:nth-child(5) {
  transition-delay: 0.22s;
}

.site-menu[open] .site-menu-panel a:nth-child(6) {
  transition-delay: 0.26s;
}

.site-menu[open].closing .site-menu-panel a {
  opacity: 0;
  transform: translateY(-8px);
  transition-delay: 0s;
}

.site-menu-panel a:hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
  header.site-header {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 48px;
    padding: 0 14px;
  }
  .site-logo {
    min-height: 48px;
  }
  .site-logo img {
    width: 24px;
    height: 24px;
  }
  .site-nav {
    gap: 26px;
  }
  .site-nav a {
    font-size: 0.9rem;
  }
  .site-nav .site-nav-divider,
  .site-nav .site-nav-divider ~ a {
    display: none;
  }
  .site-actions {
    position: static;
    transform: none;
  }
  .site-action svg {
    width: 22px;
    height: 22px;
  }
  .site-inline-field {
    position: absolute;
    top: 50%;
    right: 42px;
    left: 48px;
    transform: translateY(-50%) scaleX(0);
    transform-origin: right center;
    opacity: 0;
    display: flex !important;
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.15s ease;
    pointer-events: none;
  }
  .site-actions[data-inline-open=search] .site-inline-field-search,
  .site-actions[data-inline-open=subscribe] .site-inline-field-subscribe {
    transform: translateY(-50%) scaleX(1);
    opacity: 1;
    pointer-events: auto;
  }
  .site-actions[data-inline-open=search] .site-action-toggle[data-inline-toggle=search] {
    opacity: 0;
    pointer-events: none;
  }
  .site-actions[data-inline-open=subscribe] .site-action-toggle[data-inline-toggle=subscribe] {
    opacity: 0;
    pointer-events: none;
  }
  .site-menu-panel a {
    font-size: 24px;
    font-family: "Inter", sans-serif;
    letter-spacing: -0.03em;
  }
}
@media (prefers-color-scheme: dark) {
  .site-menu-overlay {
    background: rgba(0, 0, 0, 0.5);
  }
  .site-menu-panel {
    background: #1d1d1f;
  }
  .site-inline-field {
    background: #111214;
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  }
  .site-inline-field input {
    color: var(--text);
  }
  .site-inline-field input::placeholder {
    color: rgba(255, 255, 255, 0.38);
  }
  .site-menu-panel a:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .site-menu[open] .menu-icon .menu-top, .site-menu[open] .menu-icon .menu-bottom {
    stroke: var(--text);
  }
}
article.page {
  margin-top: 40px;
}

h1 {
  font-size: 18px;
}
@media screen and (min-width: 570px) {
  h1 {
    font-size: 20px;
  }
}

h2, h3, h4, h5 {
  position: relative;
  font-family: Helvetica, Arial, sans-serif;
  margin-bottom: -5px;
  padding-top: 10px;
}

h2 {
  font-size: 1.25em;
}
h2 a {
  color: #555;
}

h3 {
  font-size: 1.2em;
}

h4 {
  margin-left: -25px;
  padding-left: 25px;
}

h5 {
  font-size: 1.1em;
  margin-left: -25px;
  padding-left: 25px;
}

p {
  line-height: 30px;
}

a {
  color: #004c64;
}
a:hover {
  text-decoration: none;
}

hr {
  border: 0.5px solid #eaeaea;
  margin: 15px 0;
}

ol li, ul li {
  margin-bottom: 7px;
  line-height: 1.6em;
  list-style-type: disc;
}

ul ul, ol ol, ol ul, ul ol {
  margin: 10px 0;
}

figure {
  margin: 5px 0 0 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figcaption {
  font-style: italic;
  text-align: center;
  font-size: 0.85em;
  margin: 10px 0 15px;
  line-height: 1.45em;
}

.video-holder {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video-holder iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

code {
  font-family: Courier, monospace;
  font-size: 0.9em;
  background: #e0e0e0;
  padding: 1px 4px;
}

pre {
  background: rgb(200, 200, 200);
  margin: 22px 0;
  padding: 1px;
  border-radius: 4px;
}
pre code {
  font-size: 0.9em;
  display: block;
  overflow: auto;
  background: rgb(100, 100, 100);
  padding: 0 0 18px 10px;
  color: #eee;
  border: 2px solid #fff;
  border-radius: 3px;
}

blockquote {
  margin: 15px 0 25px;
  border-left: 1.5px solid #eaeaea;
  line-height: 1.6em;
}
blockquote p {
  display: inline;
  margin: 0 0 0 1.25em;
}

.post {
  position: relative;
  padding-top: 50px;
}
.post > h2 {
  margin-top: 60px;
}
@media screen and (min-width: 570px) {
  .post > h2 {
    margin-right: 130px;
  }
}

.meta {
  color: #555;
  font-size: 0.75em;
}
@media screen and (min-width: 570px) {
  .meta {
    position: absolute;
    top: 18px;
    right: 0;
  }
}

.entry {
  margin: -10px 0 20px;
}
.entry p, .entry ol li, .entry ul li {
  font-size: 18px;
  line-height: 1.5;
}
.entry p {
  font-family: ui-serif, serif;
}

.post-title {
  font-size: 20px;
  margin-bottom: 5px;
}
.post-title a {
  color: #000;
  text-decoration: none;
}
@media screen and (min-width: 570px) {
  .post-title {
    font-size: 20px;
  }
}

.post-info {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
}

.post-image {
  width: 100px;
  margin-right: 10px;
}

.post-date, .post-num-words {
  color: #888;
  font-size: 16px;
  margin-top: 0px;
}
.post-date span, .post-num-words span {
  color: #ccc;
}

#post-list {
  padding: 0;
  list-style: none;
  margin: 0;
}

.post-item {
  border-top: 1px dashed #A9A9A9;
  padding: 25px 0 5px;
  list-style: none;
}
.post-item .long-title {
  font-weight: bold;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}
@media screen and (min-width: 570px) {
  .post-item .long-title {
    font-size: 20px;
  }
}
.post-item .post-date {
  font-size: 14px;
  color: #888;
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
}
.post-item p {
  font-family: ui-serif, serif;
  font-size: 16px;
  line-height: 1.5;
}

.posts {
  padding: 0;
  list-style: none;
}
.posts li {
  list-style: none;
}
.posts li a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.posts li.hidden {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
}
.posts .date {
  display: block;
  font-weight: 400;
}
.posts .num-words {
  display: block;
  color: #ccc;
}
.posts .num-words em {
  color: #888;
}
.posts .popular::before, .posts .new::before {
  content: attr(class);
  position: absolute;
  top: -1px;
  left: 0;
  font-size: 0.7em;
  border-radius: 5px;
  color: #fff;
  padding: 3px 6px;
}
.posts .popular::before {
  background: rgb(155, 177, 213);
}
.posts .new::before {
  background: rgb(152, 203, 74);
  left: 15px;
}

.archive {
  font-size: 14px;
  margin-top: 40px;
}
@media screen and (min-width: 570px) {
  .archive {
    font-size: 18px;
  }
}

.year-month {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.year, .month {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
  padding-top: 10px;
}
@media screen and (min-width: 570px) {
  .year, .month {
    font-size: 16px;
  }
}

.month {
  text-align: right;
  padding-top: 0;
}

.archive-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.archive-list li {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  font-family: ui-serif, serif;
  align-items: center;
}

.post-title-archive {
  display: flex;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
.post-title-archive a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
}

.dots-archive {
  flex-grow: 1;
  border-bottom: 1px dotted #999;
  margin: 0 10px 6px;
}

.post-date-archive {
  white-space: nowrap;
}

form {
  display: flex;
  font-family: Helvetica, Arial, sans-serif;
}

.form-container {
  display: flex;
  overflow: hidden;
}

input[type=email] {
  flex: 1;
  font-size: 13px;
}
@media screen and (min-width: 570px) {
  input[type=email] {
    font-size: 16px;
  }
}
input[type=email] {
  border: none;
  outline: none;
  max-width: 190px;
  background: transparent;
}

.subscribe-text {
  font-size: 13px;
  line-height: 1.4;
}

.subscribe-section-header {
  font-weight: bold;
  font-size: 0.8em;
  padding-top: 20px;
}

.subscribe-message {
  font-size: 12px;
}

button#subscribeButton {
  display: none;
  background: transparent;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: none;
}
button#subscribeButton.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.p-section {
  padding: 32px 0;
}
.p-section p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 16px;
  text-align: center;
}

#search-input {
  border: none;
  border-bottom: 1px solid #d3d3d3;
  font-size: 20px;
  padding: 0;
}

.searchInput.active {
  padding-bottom: 18px;
}

#result-count {
  font-size: 10px;
  font-family: Helvetica, Arial, sans-serif;
}

.suggestion-item {
  list-style: none;
}

.p-subscribe-form form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: min(100%, 540px);
  max-width: 540px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 6px;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.3s ease;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.p-subscribe-form form:focus-within {
  border-color: var(--text-secondary);
  box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.p-subscribe-form input[type=email] {
  font-size: 1.05rem;
  padding: 12px 0 12px 24px;
  border: none;
  background: transparent;
  color: var(--text);
  width: 100%;
  max-width: none;
  min-width: 0;
  outline: none;
}

.p-subscribe-form input[type=email]::placeholder {
  color: var(--text-muted);
}

.p-subscribe-form button {
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 30px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.p-subscribe-form button:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.p-subscribe-form button:active {
  transform: translateY(0);
}

.front-page-content {
  margin: 10px auto;
  box-sizing: border-box;
}

.filter {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 0.8em;
  border-bottom: 1px dashed #A9A9A9;
  padding-bottom: 10px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(30px, 1fr));
  text-align: center;
}
.filter a {
  text-decoration: none;
  color: #A9A9A9;
  font-weight: bold;
}

.topic.selected {
  border-radius: 5px;
  background: #fff;
  color: #000;
  text-decoration: none;
}

.back-to-front {
  position: absolute;
  left: 0;
  top: -30px;
  text-decoration: none;
  font-size: 0.9em;
}
@media screen and (min-width: 1000px) {
  .back-to-front {
    left: -65px;
    top: 8px;
  }
}
.back-to-front:hover {
  text-decoration: underline;
}

.post-navigation {
  padding: 15px 0 25px;
  font-size: 13px;
  font-style: italic;
  border-bottom: 1px dashed #A9A9A9;
}
.post-navigation a {
  display: block;
  margin-bottom: 10px;
}
.post-navigation .read-more {
  font-style: italic;
  font-size: 15px;
  margin: 10px;
}

.PageNavigation {
  padding-top: 20px;
}

.PageNavigation-Next, .PageNavigation-Previous {
  font-size: 14px;
  margin-top: 10px;
}
.PageNavigation-Next p, .PageNavigation-Previous p {
  font-weight: bold;
  margin: 0;
}

.PageNavigation-Next {
  padding-bottom: 10px;
}

.site-footer {
  background: #f5f5f7;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 100px;
  padding: 20px var(--site-padding);
  box-sizing: border-box;
  color: #86868b;
}

.footer-content {
  max-width: 980px;
  margin: 0 auto;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d2d7;
}

.footer-directory-column {
  min-width: 0;
}

.footer-directory-section {
  margin-bottom: 10px;
}

.footer-directory-title {
  font-size: 12px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0 0 10px 0;
  padding: 0;
}

.footer-directory-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-directory-list li {
  margin-bottom: 8px;
  list-style: none;
}
.footer-directory-list a {
  color: #424245;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s ease;
}
.footer-directory-list a:hover {
  color: #1d1d1f;
  text-decoration: underline;
}

.footer-directory-text {
  color: #86868b;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

.footer-bottom {
  padding-top: 15px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-copyright {
  color: #86868b;
  font-size: 12px;
  margin: 0;
}

.footer-legal-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}
.footer-legal-links li {
  list-style: none;
  margin: 0;
}
.footer-legal-links a {
  color: #424245;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s ease;
}
.footer-legal-links a:hover {
  color: #1d1d1f;
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    background: #161617;
    color: #86868b;
  }
  .footer-directory-title {
    color: #f5f5f7;
  }
  .footer-directory-list a {
    color: #a1a1a6;
  }
  .footer-directory-list a:hover {
    color: #f5f5f7;
  }
  .footer-directory-text {
    color: #86868b;
  }
  .footer-copyright {
    color: #86868b;
  }
  .footer-legal-links a {
    color: #a1a1a6;
  }
  .footer-legal-links a:hover {
    color: #f5f5f7;
  }
  .footer-directory {
    border-bottom-color: #424245;
  }
}
@media (max-width: 767px) {
  .site-footer {
    padding: 20px;
  }
  .footer-directory {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .footer-legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-legal-links {
    gap: 15px;
  }
}
form[action*=embed-subscribe] button[type=submit] {
  transition: background-color 0.2s ease, color 0.2s ease;
}

form[action*=embed-subscribe] button[type=submit].valid {
  background-color: #0071E3 !important;
  color: #fff !important;
}

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