html {
  -webkit-font-smoothing: antialiased;
}

.ashe-astro .screen-reader-text {
  position: absolute;
}

.ashe-astro .post-media img {
  width: 100%;
}

.ashe-astro .blog-grid .post-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.ashe-astro .blog-grid .post-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ashe-astro .post-share a:first-child {
  margin-left: 0;
}

.ashe-astro .blog-pagination.numeric {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 10px;
}

.ashe-astro .blog-pagination.numeric .numeric-prev-page,
.ashe-astro .blog-pagination.numeric .numeric-next-page {
  position: static;
}

.ashe-astro .blog-pagination.numeric a,
.ashe-astro .blog-pagination.numeric span {
  margin: 0;
}

.ashe-astro .blog-pagination.numeric .pagination-ellipsis {
  padding-right: 8px;
  padding-left: 8px;
}

.ashe-astro .main-nav-icons {
  display: flex;
  align-items: center;
  gap: 0;
}

.ashe-astro .main-nav-icons > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 60px;
  margin: 0 !important;
  float: none !important;
  line-height: 1;
}

.ashe-astro .main-nav-icons > * i {
  line-height: 1;
}

.ashe-astro .main-nav-rss {
  text-decoration: none;
  user-select: none;
  transition-duration: 160ms;
  transition-property: color, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .main-nav-rss:active {
  transform: scale(0.96);
}

.ashe-astro .language-switcher {
  z-index: 15;
}

.ashe-astro.single-post .post-content {
  font-size: 16px;
  line-height: 1.82;
}

.ashe-astro.single-post .post-content > p,
.ashe-astro.single-post .post-content li,
.ashe-astro.single-post .post-content blockquote {
  font-size: 16px;
  line-height: 1.82;
}

.ashe-astro.single-post .post-content blockquote {
  position: relative;
  margin: 0 0 24px;
  padding: 8px 42px 10px;
  border-left: 0;
  color: #666666;
  font-size: 14px;
  font-style: italic;
  line-height: 1.75;
}

.ashe-astro.single-post .post-content blockquote::before,
.ashe-astro.single-post .post-content blockquote::after {
  position: absolute;
  color: var(--ashe-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-style: normal;
  line-height: 1;
  opacity: 0.35;
}

.ashe-astro.single-post .post-content blockquote::before {
  content: "“";
  top: -2px;
  left: 8px;
}

.ashe-astro.single-post .post-content blockquote::after {
  content: "”";
  right: 8px;
  bottom: -14px;
}

.ashe-astro.single-post .post-content blockquote p {
  margin-bottom: 0;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  line-height: inherit;
  letter-spacing: 0;
  opacity: 1;
}

.ashe-astro.single-post .post-content blockquote p + p {
  margin-top: 10px;
}

.ashe-astro.single-post .post-content blockquote a {
  font-style: inherit;
}

.ashe-astro.single-post .post-content pre,
.ashe-astro.single-post .post-content code {
  font-size: 14px;
}

.ashe-astro.single-post .post-content pre {
  position: relative;
}

.ashe-astro.single-post .post-content .ashe-code-block {
  position: relative;
  margin: 0 0 25px;
}

.ashe-astro.single-post .post-content .ashe-code-block pre {
  margin-bottom: 0;
  padding-top: 44px;
}

.ashe-astro.single-post .post-content .ashe-post-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 25px;
}

.ashe-astro.single-post .post-content .ashe-post-image-grid-button {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #f3f3f3;
  cursor: zoom-in;
}

.ashe-astro.single-post .post-content .ashe-post-image-grid-button img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.ashe-astro.single-post .post-content .ashe-post-image-grid-button:hover img,
.ashe-astro.single-post .post-content .ashe-post-image-grid-button:focus-visible img {
  transform: scale(1.04);
}

.ashe-astro.single-post .post-content .ashe-post-image-grid-button:focus-visible {
  outline: 2px solid var(--ashe-accent);
  outline-offset: 3px;
}

body.ashe-post-lightbox-open {
  overflow: hidden;
}

.ashe-post-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 64px;
  background: rgba(0, 0, 0, 0.86);
}

.ashe-post-lightbox[hidden] {
  display: none;
}

.ashe-post-lightbox-figure {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: min(100%, 1180px);
  max-height: 100%;
  margin: 0;
}

.ashe-post-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}

.ashe-post-lightbox-figure figcaption {
  max-width: 820px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.ashe-post-lightbox-close,
.ashe-post-lightbox-nav {
  position: fixed;
  z-index: 1;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.ashe-post-lightbox-close:hover,
.ashe-post-lightbox-close:focus-visible,
.ashe-post-lightbox-nav:hover,
.ashe-post-lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: 0;
}

.ashe-post-lightbox-close {
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 30px;
  line-height: 42px;
}

.ashe-post-lightbox-nav {
  top: 50%;
  width: 44px;
  height: 58px;
  margin-top: -29px;
  border-radius: 4px;
}

.ashe-post-lightbox-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.ashe-post-lightbox-prev {
  left: 18px;
}

.ashe-post-lightbox-prev::before {
  left: 17px;
  transform: translateY(-50%) rotate(-45deg);
}

.ashe-post-lightbox-next {
  right: 18px;
}

.ashe-post-lightbox-next::before {
  right: 17px;
  transform: translateY(-50%) rotate(135deg);
}

.ashe-astro .ashe-code-copy {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 1;
  height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--ashe-accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.18);
  transition: background-color 160ms ease, transform 160ms ease;
}

.ashe-astro .ashe-code-copy:hover,
.ashe-astro .ashe-code-copy:focus {
  background: var(--ashe-accent-hover);
  color: #ffffff;
  outline: 0;
  transform: translateY(-1px);
}

.ashe-astro .ashe-code-copy.is-copied {
  background: #333333;
  color: #ffffff;
}

.ashe-astro .language-switcher-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition-duration: 160ms;
  transition-property: color, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .language-switcher-button:active {
  transform: scale(0.96);
}

.ashe-astro .language-switcher-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 136px;
  padding: 6px 0;
  border-width: 1px;
  border-style: solid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  text-align: left;
  transition-duration: 160ms;
  transition-property: opacity, transform, visibility;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .language-switcher.is-open .language-switcher-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.ashe-astro .language-switcher-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.ashe-astro .language-switcher-menu i {
  font-size: 11px;
}

.ashe-astro .language-switcher-menu .language-option-check {
  opacity: 0;
}

.ashe-astro .language-switcher-menu a[aria-current="true"] .language-option-check {
  opacity: 1;
}

.ashe-astro .footer-menu-container ul,
.ashe-astro .main-menu-container ul {
  list-style: none;
}

.ashe-astro #featured-slider.ashe-astro-slider {
  position: relative;
  overflow: hidden;
}

.ashe-astro #featured-slider.ashe-astro-slider .slider-item {
  display: none;
}

.ashe-astro #featured-slider.ashe-astro-slider .slider-item.slick-current {
  display: block;
}

.ashe-astro #featured-slider.ashe-astro-slider .slider-dots li.slick-active {
  background: #fff;
}

.ashe-astro .search-page-form {
  max-width: 620px;
  margin: 0 auto 40px;
}

.ashe-astro .search-page-form input {
  width: 100%;
}

.ashe-astro .archive-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 24px;
}

.ashe-astro .archive-timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 3px;
  width: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.ashe-astro .archive-timeline-item {
  position: relative;
  margin: 0;
  padding: 0;
}

.ashe-astro .archive-timeline-card {
  position: relative;
  display: block;
  padding: 0 0 22px;
}

.ashe-astro .archive-timeline-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ashe-accent);
  box-shadow: 0 0 0 3px var(--ashe-accent-timeline);
}

.ashe-astro .archive-timeline-date {
  display: inline-block;
  margin: 0;
  color: #9b9b9b;
  font-size: 12px;
  line-height: 1.75;
  font-style: italic;
  white-space: nowrap;
}

.ashe-astro .archive-timeline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  margin-bottom: 7px;
}

.ashe-astro .archive-timeline-year,
.ashe-astro .archive-timeline-day {
  display: inline;
}

.ashe-astro .widget_recent_entries ul li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  line-height: 1.8;
  border-bottom: none;
  padding: 6px 0;
}

.ashe-astro .widget_recent_entries .rpwwt-post-title {
  display: inline-block;
  margin-bottom: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.ashe-astro .widget_recent_entries .rpwwt-post-date {
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: 400;
}

.ashe-astro .archive-timeline-title {
  font-size: 26px;
  line-height: 31px;
  margin-bottom: 8px;
}

.ashe-astro .archive-timeline-title a {
  color: inherit;
}

.ashe-astro .archive-timeline-categories,
.ashe-astro .archive-timeline-tags {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: none;
}

.ashe-astro .archive-timeline-categories {
  margin-bottom: 0;
}

.ashe-astro .archive-timeline-tags {
  margin-bottom: 0;
  margin-top: 10px;
}

.ashe-astro .archive-timeline-tags span {
  display: inline-block;
  margin-right: 8px;
}

.ashe-astro .archive-timeline-excerpt {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
  color: inherit;
}

.ashe-astro .archive-year-groups {
  display: grid;
  gap: 12px;
  margin: 0 0 36px;
}

.ashe-astro .archive-year-group {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.ashe-astro .archive-year-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 0;
  color: #111111;
  font-family: var(--ashe-heading-font);
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
  transition: color 160ms ease;
}

.ashe-astro .archive-year-heading:hover,
.ashe-astro .archive-year-heading:focus-visible {
  color: var(--ashe-accent-hover);
  outline: 0;
}

.ashe-astro .archive-year-heading::-webkit-details-marker {
  display: none;
}

.ashe-astro .archive-year-heading::after {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.ashe-astro .archive-year-group[open] .archive-year-heading::after {
  transform: rotate(225deg);
}

.ashe-astro .archive-year-label {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
}

.ashe-astro .archive-year-heading small {
  color: #9b9b9b;
  font-family: var(--ashe-body-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.ashe-astro .archive-year-list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 4px 0 0 24px;
}

.ashe-astro .archive-year-list::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 24px;
  left: 3px;
  width: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.ashe-astro .archive-year-item {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0 0 16px;
}

.ashe-astro .archive-year-item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -24px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ashe-accent);
  box-shadow: 0 0 0 3px var(--ashe-accent-timeline);
}

.ashe-astro .archive-year-date {
  color: #9b9b9b;
  font-size: 12px;
  line-height: 27px;
  white-space: nowrap;
}

.ashe-astro .archive-year-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.ashe-astro .archive-year-title a {
  color: inherit;
}

.ashe-astro .links-page-groups {
  display: grid;
  gap: 38px;
  margin: 8px 0 36px;
  clear: both;
}

.ashe-astro .ashe-link-cards .links-page-group h2 {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.4;
  color: #222222;
}

.ashe-astro .ashe-link-cards .links-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ashe-astro .ashe-link-cards .links-page-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 112px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--ashe-accent-border);
  border-radius: 8px;
  color: #222222;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.04);
  transition-duration: 160ms;
  transition-property: background-color, border-color, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .ashe-link-cards .links-page-card:hover {
  transform: translateY(-2px);
  border-color: var(--ashe-accent-line-strong);
  background: var(--ashe-accent-soft-light);
  color: #222222;
  box-shadow: 0 14px 30px var(--ashe-accent-soft);
}

.ashe-astro .ashe-link-cards .links-page-card:active {
  transform: scale(0.96);
}

.ashe-astro .ashe-link-cards .links-page-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ashe-accent-soft);
  color: var(--ashe-accent);
  font-size: 16px;
  transition-duration: 160ms;
  transition-property: background-color, color;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .ashe-link-cards .links-page-card:hover .links-page-card-icon {
  background: var(--ashe-accent-soft-strong);
  color: var(--ashe-accent-hover);
}

.ashe-astro .ashe-link-cards .links-page-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.ashe-astro .ashe-link-cards .links-page-card-initial {
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.ashe-astro .ashe-link-cards .links-page-card-content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.ashe-astro .ashe-link-cards .links-page-card-content strong {
  color: #222222;
  font-size: 15px;
  line-height: 1.35;
  transition: color 160ms cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .ashe-link-cards .links-page-card-content span {
  color: #777777;
  font-size: 13px;
  line-height: 1.7;
  transition: color 160ms cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .ashe-link-cards .links-page-card:hover .links-page-card-content strong,
.ashe-astro .ashe-link-cards .links-page-card:hover .links-page-card-content span {
  color: #222222;
}

body.ashe-dark-mode .ashe-link-cards .links-page-card-content span {
  color: #c4c4c4;
}

body.ashe-dark-mode .ashe-link-cards .links-page-card {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: #222222;
}

body.ashe-dark-mode .ashe-link-cards .links-page-card:hover {
  background: var(--ashe-accent-soft-medium);
  border-color: var(--ashe-accent-border-heavy);
  color: #f0f0f0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

body.ashe-dark-mode .ashe-link-cards .links-page-card-content strong,
body.ashe-dark-mode .ashe-link-cards .links-page-card-content span {
  color: #222222;
}

body.ashe-dark-mode .ashe-link-cards .links-page-card:hover .links-page-card-content strong,
body.ashe-dark-mode .ashe-link-cards .links-page-card:hover .links-page-card-content span {
  color: #f0f0f0;
}

body.ashe-dark-mode .ashe-link-cards .links-page-group h2 {
  color: #f0f0f0;
}

body.ashe-dark-mode .related-posts h4 a {
  color: #f0f0f0;
}

body.ashe-dark-mode .related-post-date {
  color: #c4c4c4;
}

.ashe-astro .lazy-image-shell {
  position: relative;
  overflow: hidden;
  background-color: #f3f3f3;
  background-image: var(--ashe-gallery-placeholder-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 56px 56px;
}

.ashe-astro .lazy-image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0));
  transform: translateX(-100%);
  animation: ashe-placeholder-shimmer 1.35s ease-in-out infinite;
  transition-duration: 180ms;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .lazy-image-shell img {
  opacity: 0;
  transition-duration: 220ms;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .lazy-image-shell.is-loaded {
  background-image: none;
}

.ashe-astro .lazy-image-shell.is-loaded::before,
.ashe-astro .lazy-image-shell.is-error::before {
  opacity: 0;
  animation-play-state: paused;
}

.ashe-astro .lazy-image-shell.is-loaded img {
  opacity: 1;
}

@keyframes ashe-placeholder-shimmer {
  100% {
    transform: translateX(100%);
  }
}

.ashe-astro .gallery-album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.ashe-astro .gallery-album-card {
  margin: 0;
}

.ashe-astro .gallery-album-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.ashe-astro .gallery-album-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 220ms cubic-bezier(0.2, 0, 0, 1), transform 0.3s ease-in-out;
}

.ashe-astro .gallery-album-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  gap: 7px;
  padding: 16px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.72);
  transform: translateY(calc(100% - 72px));
  transition: transform 0.3s ease-in-out;
}

.ashe-astro .gallery-album-cover:hover .gallery-album-overlay,
.ashe-astro .gallery-album-cover:focus-visible .gallery-album-overlay {
  transform: translateY(0);
}

.ashe-astro .gallery-album-cover:hover img,
.ashe-astro .gallery-album-cover:focus-visible img {
  transform: scale(1.08);
}

.ashe-astro .gallery-album-cover:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.ashe-astro .gallery-album-title {
  overflow: hidden;
  color: #ffffff;
  font-family: var(--ashe-heading-font);
  font-size: 18px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ashe-astro .gallery-album-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

.ashe-astro .album-page .post-header {
  margin-bottom: 30px;
}

.ashe-astro #main .inner .gallery-container {
  width: 100%;
  display: flex;
  flex-flow: wrap;
  gap: 10px 20px;
  padding-bottom: 30px;
}

.ashe-astro #main .inner .gallery-container .picture-container {
  min-width: 200px;
  flex: 0 0 calc(33.333% - 13.333px);
}

.ashe-astro #main .inner .gallery-container .picture-container a {
  display: block;
  border: none;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
}

.ashe-astro #main .inner .gallery-container .picture-container picture {
  display: block;
  width: 100%;
  height: 100%;
}

.ashe-astro #main .inner .gallery-container .picture-container a .img-thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  transition: opacity 220ms cubic-bezier(0.2, 0, 0, 1), transform 0.25s ease-in-out;
}

.ashe-astro #main .inner .gallery-container .picture-container a:hover .img-thumbnail,
.ashe-astro #main .inner .gallery-container .picture-container a:focus-visible .img-thumbnail {
  transform: scale(1.02);
}

body.ashe-dark-mode .gallery-album-cover {
  background: #2b2b2b;
}

body.ashe-dark-mode .lazy-image-shell {
  background-color: #2b2b2b;
}

body.ashe-dark-mode .lazy-image-shell::before {
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
}

.ashe-astro .friends-feed-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.ashe-astro .friends-feed-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  padding: 0 0 26px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.ashe-astro .friends-moment-avatar-wrap {
  padding-top: 2px;
}

.ashe-astro .friends-feed-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 10px;
  object-fit: cover;
}

.ashe-astro .friends-feed-avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ashe-accent-soft);
  color: var(--ashe-accent-hover);
  font-size: 16px;
  font-weight: 700;
}

.ashe-astro .friends-moment-body {
  min-width: 0;
}

.ashe-astro .friends-moment-head {
  margin-bottom: 8px;
}

.ashe-astro .friends-moment-name {
  display: inline-block;
  color: #576b95;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.ashe-astro .friends-moment-bio {
  margin-top: 3px;
  color: #8d8d8d;
  font-size: 12px;
  line-height: 1.7;
}

.ashe-astro .friends-moment-content {
  color: #2f2f2f;
}

.ashe-astro .friends-moment-title {
  display: inline-block;
  margin-bottom: 8px;
  color: #111111;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
}

.ashe-astro .friends-moment-content p {
  margin: 0 0 10px;
  color: #464646;
  line-height: 1.95;
  word-break: break-word;
}

.ashe-astro .friends-moment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #9b9b9b;
  font-size: 12px;
  line-height: 1.8;
}

.ashe-astro .friends-moment-meta a {
  color: #576b95;
}

.ashe-astro .widget-profile-card p img {
  border-radius: 8px;
}

.ashe-astro #page-footer .footer-about-widget p:has(img) {
  margin-bottom: 12px;
  text-align: center;
}

.ashe-astro #page-footer .footer-about-widget p {
  text-align: center;
}

.ashe-astro #page-footer .footer-about-widget img {
  display: inline-block;
  width: min(var(--footer-about-image-width, 140px), 100%);
  height: var(--footer-about-image-height, auto);
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.ashe-astro .widget_feed_sources ul li {
  line-height: 1.9;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(17, 17, 17, 0.12);
}

.ashe-astro .widget_feed_sources ul li:last-child {
  border-bottom: 0;
}

.ashe-astro .widget_footer_links ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ashe-astro .widget_footer_links li {
  position: relative;
  margin: 0;
  padding: 0 0 8px;
  border-bottom: 1px dotted rgba(17, 17, 17, 0.12);
}

.ashe-astro .widget_footer_links li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ashe-astro .widget_footer_links a {
  position: relative;
  display: inline-block;
  padding: 0 0 3px;
  color: #777;
  line-height: 1.8;
  text-decoration: none;
  transition: color 180ms ease;
}

.ashe-astro .widget_footer_links .footer-info-text {
  display: inline-block;
  padding: 0 0 3px;
  color: #777;
  line-height: 1.8;
}

.ashe-astro .widget_footer_links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ashe-astro .widget_footer_links a:hover {
  color: var(--ashe-accent);
}

.ashe-astro .widget_footer_links a:hover::after {
  opacity: 0.65;
  transform: scaleX(1);
}

body.ashe-dark-mode .ashe-astro .widget_footer_links li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body.ashe-dark-mode .ashe-astro .widget_footer_links a {
  color: #cfcfcf;
}

body.ashe-dark-mode .ashe-astro .widget_footer_links .footer-info-text {
  color: #cfcfcf;
}

body.ashe-dark-mode .ashe-astro .widget_footer_links a:hover {
  color: #d6b174;
}

body.ashe-dark-mode .friends-feed-item {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.ashe-dark-mode .friends-moment-name,
body.ashe-dark-mode .friends-moment-meta a {
  color: #9ab0e5;
}

body.ashe-dark-mode .friends-moment-title {
  color: #f0f0f0;
}

body.ashe-dark-mode .friends-moment-content p,
body.ashe-dark-mode .friends-moment-bio,
body.ashe-dark-mode .friends-moment-meta {
  color: #c4c4c4;
}

@media screen and (max-width: 900px) {
  .ashe-astro .gallery-album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ashe-astro .friends-feed-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }
}

@media screen and (max-width: 736px) {
  .ashe-astro #main .inner .gallery-container .picture-container {
    flex: 0 0 calc(50% - 10px);
  }
}

@media screen and (max-width: 640px) {
  .ashe-astro .ashe-link-cards .links-page-grid {
    grid-template-columns: 1fr;
  }

  .ashe-astro .gallery-album-grid {
    grid-template-columns: 1fr;
  }

  .ashe-astro .gallery-album-overlay {
    transform: translateY(0);
  }

  .ashe-astro .archive-timeline-card::before {
    left: -24px;
    top: 6px;
  }

  .ashe-astro .archive-timeline-date {
    white-space: normal;
  }

  .ashe-astro .archive-timeline-year,
  .ashe-astro .archive-timeline-day {
    display: inline;
  }

  .ashe-astro .archive-timeline-year::after {
    content: " ";
  }

  .ashe-astro .archive-timeline-title {
    font-size: 22px;
    line-height: 29px;
  }

  .ashe-astro .archive-timeline-content {
    padding-bottom: 18px;
  }

  .ashe-astro .archive-year-groups {
    gap: 10px;
  }

  .ashe-astro .archive-year-heading {
    padding: 11px 0;
  }

  .ashe-astro .archive-year-label {
    font-size: 28px;
  }

  .ashe-astro .archive-year-item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 15px;
  }

  .ashe-astro .archive-year-list {
    padding-left: 24px;
  }

  .ashe-astro .archive-year-list::before {
    left: 3px;
  }

  .ashe-astro .archive-year-item::before {
    left: -24px;
  }

  .ashe-astro .archive-year-title {
    font-size: 17px;
  }

  .ashe-astro .friends-feed-title {
    font-size: 22px;
    line-height: 1.45;
  }

  .ashe-astro .friends-feed-avatar {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}

@media screen and (max-width: 480px) {
  .ashe-astro.single-post .post-content .ashe-post-image-grid {
    grid-template-columns: 1fr;
  }

  .ashe-astro #main .inner .gallery-container .picture-container {
    flex: 0 0 100%;
  }
}

@media screen and (max-width: 768px) {
  .ashe-astro.single-post .post-content .ashe-post-image-grid {
    gap: 8px;
  }

  .ashe-post-lightbox {
    padding: 34px 12px;
  }

  .ashe-post-lightbox-figure img {
    max-height: calc(100vh - 110px);
  }

  .ashe-post-lightbox-close {
    top: 10px;
    right: 10px;
  }

  .ashe-post-lightbox-nav {
    width: 38px;
    height: 50px;
    margin-top: -25px;
  }

  .ashe-post-lightbox-prev {
    left: 8px;
  }

  .ashe-post-lightbox-next {
    right: 8px;
  }
}
