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

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

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

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

.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 .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-list {
  max-width: 760px;
  margin: 0 auto;
}

.ashe-astro .archive-year {
  margin-bottom: 42px;
}

.ashe-astro .archive-year h2 {
  margin-bottom: 18px;
}

.ashe-astro .archive-year ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ashe-astro .archive-year li {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.ashe-astro .archive-year time {
  flex: 0 0 150px;
  color: #a1a1a1;
  font-size: 13px;
}

.ashe-astro .archive-year a {
  min-width: 0;
}

.ashe-astro .links-page-groups {
  display: grid;
  gap: 38px;
  margin-top: 34px;
}

.ashe-astro .links-page-group h2 {
  margin-bottom: 18px;
}

.ashe-astro .links-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ashe-astro .links-page-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 112px;
  padding: 20px;
  border-width: 1px;
  border-style: solid;
  text-decoration: none;
  transition-duration: 160ms;
  transition-property: border-color, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.2, 0, 0, 1);
}

.ashe-astro .links-page-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

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

.ashe-astro .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: rgba(202, 155, 82, 0.12);
}

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

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

.ashe-astro .links-page-card-content strong {
  color: inherit;
  font-size: 15px;
  line-height: 1.35;
}

.ashe-astro .links-page-card-content span {
  color: #777777;
  font-size: 13px;
  line-height: 1.7;
}

.ashe-astro .twikoo-config-notice {
  text-align: center;
  margin-bottom: 25px;
  font-style: italic;
}

.ashe-astro #twikoo {
  font-family: "Open Sans";
}

.ashe-astro #twikoo .tk-comments-title,
.ashe-astro #twikoo .tk-comments-no,
.ashe-astro #twikoo .tk-submit-title {
  margin-bottom: 30px;
  text-align: center;
  font-family: "Playfair Display";
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
}

.ashe-astro #twikoo .tk-submit {
  margin-top: 4px;
}

.ashe-astro #twikoo .el-input__inner,
.ashe-astro #twikoo .el-textarea__inner {
  border-radius: 0;
  border-width: 1px;
  border-style: solid;
  padding: 13px;
  font-size: 14px;
  box-shadow: none;
}

.ashe-astro #twikoo .el-textarea__inner {
  min-height: 180px !important;
}

.ashe-astro #twikoo .el-button,
.ashe-astro #twikoo .tk-preview {
  border-radius: 0;
}

.ashe-astro #twikoo .el-button--primary {
  border: 0;
  padding: 13px 18px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #333;
}

.ashe-astro #twikoo .tk-comment {
  padding: 0 0 35px;
  margin-bottom: 35px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.ashe-astro #twikoo .tk-avatar {
  margin-right: 17px;
}

.ashe-astro #twikoo .tk-avatar img {
  border-radius: 50%;
}

.ashe-astro #twikoo .tk-nick {
  font-family: "Open Sans";
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.ashe-astro #twikoo .tk-time,
.ashe-astro #twikoo .tk-action-link {
  font-size: 11px;
  line-height: 25px;
  text-transform: uppercase;
}

.ashe-astro #twikoo .tk-content {
  font-size: 15px;
  line-height: 24.2px;
}

body.ashe-dark-mode #twikoo .el-input__inner,
body.ashe-dark-mode #twikoo .el-textarea__inner {
  background: #222;
  color: #c4c4c4;
  border-color: #6d6d6d;
}

body.ashe-dark-mode #twikoo .tk-comment {
  border-color: #6d6d6d;
}

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

.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;
  background: #f3f3f3;
  aspect-ratio: 1 / 1;
}

.ashe-astro .gallery-album-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.ashe-astro .gallery-album-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  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: "Playfair Display";
  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;
}

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

.ashe-astro #main .inner .gallery-container .picture-container a .img-thumbnail {
  display: block;
  width: 100%;
  border-radius: 4px;
  transition: 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;
}

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

@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 .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-year li {
    display: grid;
    gap: 4px;
  }

  .ashe-astro .archive-year time {
    flex-basis: auto;
  }
}

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