/*
Theme Name: Plumy
Theme URI: https://plumy.org
Author: Antonio Lupetti
Author URI: https://x.com/antoniolupetti
Description: Plumy is a minimal, open source WordPress theme for personal newsletters.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: plumy
Contact: antonio.lupetti@gmai.com
*/
@font-face {
  font-family: "Geist";
  src: url("fonts/geist/Geist-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist/Geist-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist/Geist-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist/Geist-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("fonts/geist/Geist-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono/GeistMono-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono/GeistMono-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
html, body {
  background: #F6F6F6;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #444;
  padding: 0;
  margin: 0;
}

html, body, input, textarea, button {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  appearance: none;
}

button {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  word-wrap: normal !important;
}

.container {
  width: min(100% - 32px, 480px);
  margin-right: auto;
  margin-left: auto;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 60px;
  padding: 10px 0;
}
@media screen and (max-width: 480px) {
  .header-tools {
    margin-bottom: 30px;
  }
}

.header-tools .module-access {
  margin-bottom: 0;
}

.header {
  padding-top: 24px;
  padding-bottom: 24px;
}

.header-logo {
  display: flex;
  justify-content: center;
  opacity: 1;
  user-select: none;
  -webkit-user-select: none;
  transition: opacity 0.24s ease;
}

.header-logo.is-hidden {
  opacity: 0;
}

.button-download {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border: solid 1px #d5d5d5;
  color: #666;
  padding: 0 14px;
  border-radius: 17px;
  box-sizing: border-box;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.24s ease;
}
.button-download:hover {
  border-color: #999;
}

.post-content {
  position: relative;
}

.post-thumbnail {
  position: relative;
  margin: 0 0 16px 0;
  overflow: hidden;
  background: #E4E4E4;
  border-radius: 12px;
  height: 480px;
  width: 480px;
}
@media screen and (max-width: 480px) {
  .post-thumbnail {
    width: 100%;
    height: auto;
  }
}

.post-thumbnail img,
.post-thumbnail video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-thumbnail-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  color: #bbb;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  max-width: 50%;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 40px;
  padding-right: 12px;
}

.post-meta-item {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border-radius: 17px;
  transition: background-color 0.18s ease;
}

.post-meta-item:hover,
.post-meta-item:focus-within {
  background: #e3e3e3;
}

.post-meta-date {
  margin-left: auto;
  padding-right: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  color: #999;
}

.post-meta-date:hover,
.post-meta-date:focus-within {
  background: transparent;
}

.entry-content {
  padding: 0 14px;
}
@media screen and (max-width: 480px) {
  .entry-content {
    padding: 0 10px;
  }
}
.entry-content h2 {
  color: #888;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 14px;
}
.entry-content p {
  line-height: 1.5;
  color: #444;
}
.entry-content a {
  color: #111;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #BBB;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.15s;
}
.entry-content a:hover {
  text-decoration-color: #555;
}
.entry-content ul {
  margin-left: 0;
  padding-left: 20px;
}
.entry-content li {
  padding: 4px 0;
  font-weight: 500;
  color: #111;
}
.entry-content li a {
  font-weight: 500;
}

.pb-section:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #ddd;
}

.pb-author {
  background-image: url("imgages/author-picture.png");
  background-size: 66px 66px;
  background-repeat: no-repeat;
  padding-left: 84px;
  margin: 50px 0 56px 0;
  color: #999;
  font-size: 15px;
}

.pb-author p,
.pb-author a {
  color: #999;
}

.pb-releases {
  display: flex;
  flex-basis: col;
  border: solid 1px #ccc;
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  margin: 30px 0;
}
.pb-releases ul {
  font-size: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}
.pb-releases li {
  font-weight: 400;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 10px;
}
.pb-releases li:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.pb-releases li em {
  font-style: normal;
  padding: 6px;
  border-radius: 6px;
  color: #777;
  font-weight: 500;
  font-size: 12px;
  font-family: "Geist Mono", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  width: 48px;
  text-align: center;
  background-color: #d9d9d9;
}
.pb-releases li strong:nth-child(2) {
  font-weight: normal;
}
.pb-releases li strong:nth-child(3) {
  color: #999;
  font-weight: 400;
  flex-shrink: 0;
  text-align: right;
  margin-left: auto;
  padding-right: 20px;
  font-size: 13px;
}

.pb-timeline ul {
  position: relative;
  margin: 30px 0;
  padding: 0 0 0 26px;
  list-style: none;
}
.pb-timeline ul::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 26px;
  width: 1px;
  background: #b8b8b8;
  transform: translateX(-50%);
}
.pb-timeline li {
  position: relative;
  padding: 0 0 0 24px;
  color: #444;
  font-size: 14px;
  line-height: 1.35;
}
.pb-timeline li::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8b8b8;
  transform: translateX(-50%);
  transition: background-color 0.2s ease;
}
.pb-timeline li:hover::after {
  background: #444;
}
.pb-timeline li:last-child {
  padding-bottom: 0;
}
.pb-timeline em {
  display: block;
  font-style: normal;
}
.pb-timeline em:first-child {
  margin-bottom: 6px;
  font-weight: 700;
}
.pb-timeline em:nth-child(2) {
  font-weight: 400;
  color: #777;
}

.ui-post-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 48px 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ui-post-navigation-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  height: 48px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  color: #444;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.ui-post-navigation-link:hover,
.ui-post-navigation-link:focus {
  opacity: 0.65;
}

.ui-post-navigation-link.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.ui-post-navigation-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.ui-post-navigation-divider {
  display: block;
  width: 1px;
  height: 34px;
  background: #ccc;
}

.search-content-list {
  display: flex;
  flex-direction: column;
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 30px 0;
  border: 1px solid #d8d8d8;
}

.search-content {
  padding: 20px 20px;
}
.search-content:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
}
.search-content h1 {
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  margin-bottom: 8px;
}
.search-content p {
  color: #777;
}
.search-content .post-meta {
  margin: 0;
}
.search-content .post-meta .post-meta-item:first-child {
  padding-left: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.footer-social-item {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 22px;
  transition: background-color 0.18s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
  background: #e3e3e3;
}

.icon-footer-facebook,
.icon-footer-x,
.icon-footer-instagram,
.icon-footer-threads,
.icon-footer-github {
  display: block;
}

.footer-copy {
  color: #999;
  text-align: center;
  padding: 20px 0;
}

.footer-nav {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

.footer-nav-link {
  font-size: 14px;
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #444;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #BBB;
  text-underline-offset: 6px;
  transition: text-decoration-color 0.15s;
}
.footer-nav-link:hover {
  text-decoration-color: #555;
}

.module-access {
  position: relative;
  margin-bottom: 80px;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.module-access.is-search-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition-delay: 0s, 0s, 0.18s;
}

.module-access-buttons {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: max-content;
  margin-left: auto;
  font-size: 13px;
  --module-access-bg-left: calc(100% - 87px);
  --module-access-bg-width: 87px;
}

.module-access-button {
  position: relative;
  z-index: 1;
  height: 34px;
  padding: 0 20px;
}

.module-access-button-bg {
  position: absolute;
  top: 0;
  left: var(--module-access-bg-left, 0);
  width: var(--module-access-bg-width, 0);
  height: 34px;
  background: #E3E3E3;
  border-radius: 17px;
  transition: left 0.24s ease, width 0.24s ease;
}

.module-access-buttons:not(.is-ready) .module-access-button-bg {
  transition: none;
}

.module-access-curtain {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(34, 34, 34, 0.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.module-access-curtain.is-open {
  opacity: 1;
  pointer-events: auto;
}

.module-access-modal {
  width: min(100% - 32px, 320px);
  border: 0;
  border-radius: 12px;
  padding: 32px;
  color: #444;
  background: #FFFFFF;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 1001;
}

.module-access-modal::backdrop {
  background: transparent;
}

.module-access-modal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.module-access-logo {
  margin-bottom: 40px;
}

.module-access-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5F5F5F;
  outline: 0;
}

.module-access-close svg {
  width: 16px;
  height: 16px;
}

.module-access-close path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-access-close:focus-visible {
  color: #444;
}

.module-access-title {
  margin: 0 0 34px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.module-access-form {
  display: flex;
  flex-direction: column;
}

.module-access-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.module-access-field span {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8B8B8B;
}

.module-access-field input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #DDDDDD;
  padding: 0 0 14px;
  font: inherit;
  color: #444;
  background: transparent;
  outline: 0;
}

.module-access-field input::placeholder {
  color: #C6C6C6;
}

.module-access-field input:focus {
  border-bottom-color: #444;
}

.module-access-copy {
  margin: 12px 0 24px;
  font-size: 13px;
  line-height: 1.35;
  color: #4B4B4B;
  padding-bottom: 6px;
}

.module-access-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.2;
  color: #4B4B4B;
}

.module-access-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  border-radius: 6px;
  margin: 0;
}

.module-access-checkbox-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #9B9B9B;
  border-radius: 6px;
  color: #FFFFFF;
}

.module-access-checkbox-box svg {
  width: 12px;
  height: 10px;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.module-access-checkbox-box path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-access-checkbox input:checked + .module-access-checkbox-box {
  border-color: #2B2B2B;
  background: #2B2B2B;
}

.module-access-checkbox input:checked + .module-access-checkbox-box svg {
  opacity: 1;
}

.module-access-checkbox input:focus-visible + .module-access-checkbox-box {
  outline: 2px solid #8FB5FF;
  outline-offset: 2px;
}

.module-access-submit {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  background: #444;
}

.module-access-submit:hover,
.module-access-submit:focus {
  background: #111111;
}

.module-access-local-curtain {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
  text-align: center;
  border-radius: 12px;
  background: rgba(232, 232, 232, 0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.module-access-local-curtain small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.35;
  color: #999;
}

.module-access-local-curtain small:empty {
  display: none;
}

.module-access-local-curtain.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.button-signup {
  font-weight: 600;
}

.button-login {
  font-weight: 400;
}

.module-like {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 24px;
  height: 24px;
  padding: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
}

.module-like:disabled {
  cursor: default;
}

.module-like.is-loading {
  opacity: 0.7;
}

.module-like-icon {
  position: relative;
  top: 1px;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  transform: scale(1);
  transition: transform 0.18s ease;
}

.module-like-heart {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.module-like-icon path {
  fill: transparent;
  stroke: #999;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: fill 0.18s ease, stroke 0.18s ease;
}

.module-like.is-liked .module-like-icon path,
.module-like[aria-pressed=true] .module-like-icon path {
  fill: #999;
  stroke: #999;
}

.module-like.is-bursting .module-like-icon {
  animation: module-like-heart-pop 0.42s cubic-bezier(0.2, 1.5, 0.35, 1);
}

.module-like-count {
  position: relative;
  z-index: 1;
  min-width: 1ch;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #999;
  font-variant-numeric: tabular-nums;
}

.module-like.is-liked .module-like-count,
.module-like[aria-pressed=true] .module-like-count {
  color: #999;
}

.module-like-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.module-like-burst::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid #4A4A4A;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
}

.module-like.is-bursting .module-like-burst::before {
  animation: module-like-ring 0.46s ease-out;
}

.module-like-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: #999;
  opacity: 0;
  transform: rotate(var(--module-like-angle)) translateY(-6px) scale(0);
}

.module-like-bubble:nth-child(1) {
  --module-like-angle: 0deg;
  background: #999;
}

.module-like-bubble:nth-child(2) {
  --module-like-angle: 45deg;
  background: #6A6A6A;
}

.module-like-bubble:nth-child(3) {
  --module-like-angle: 90deg;
  background: #3E3E3E;
}

.module-like-bubble:nth-child(4) {
  --module-like-angle: 135deg;
  background: #8A8A8A;
}

.module-like-bubble:nth-child(5) {
  --module-like-angle: 180deg;
  background: #4A4A4A;
}

.module-like-bubble:nth-child(6) {
  --module-like-angle: 225deg;
  background: #A0A0A0;
}

.module-like-bubble:nth-child(7) {
  --module-like-angle: 270deg;
  background: #5C5C5C;
}

.module-like-bubble:nth-child(8) {
  --module-like-angle: 315deg;
  background: #767676;
}

.module-like.is-bursting .module-like-bubble {
  animation: module-like-bubble 0.62s ease-out;
}

@keyframes module-like-heart-pop {
  0% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes module-like-ring {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  20% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}
@keyframes module-like-bubble {
  0% {
    opacity: 0;
    transform: rotate(var(--module-like-angle)) translateY(-6px) scale(0);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(var(--module-like-angle)) translateY(-24px) scale(0.45);
  }
}
@media (prefers-reduced-motion: reduce) {
  .module-like-icon,
  .module-like-icon path {
    transition: none;
  }
  .module-like.is-bursting .module-like-icon,
  .module-like.is-bursting .module-like-burst::before,
  .module-like.is-bursting .module-like-bubble {
    animation: none;
  }
}
.module-comments {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 24px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #999;
}

.icon-comment {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.module-comments-count {
  min-width: 1ch;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.comments {
  padding-top: 20px;
}

.module-comments-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ddd;
  border-radius: 12px;
  padding: 30px;
  min-height: 220px;
  overflow: hidden;
}

.module-comments-textarea {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 170px;
  padding: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #444;
  background: transparent;
  border: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}

.module-comments-textarea:focus {
  outline: none;
}

.module-comments-textarea::-webkit-resizer {
  display: none;
}

.module-comments-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.module-comments-counter-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #777;
  text-align: right;
}

.module-comments-counter {
  min-width: 3ch;
  font-variant-numeric: tabular-nums;
}

.module-comments-counter-label {
  white-space: nowrap;
}

.module-comments-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 38px;
  padding: 0 18px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  background: transparent;
  border: 1px solid #999;
  border-radius: 999px;
  cursor: pointer;
}

.module-comments-submit:hover,
.module-comments-submit:focus-visible {
  border-color: #666;
  color: #111;
}

.module-comments-submit:focus-visible {
  outline: 2px solid #999;
  outline-offset: 2px;
}

.module-comments-curtain {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
  text-align: center;
  background: rgba(221, 221, 221, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.module-comments-curtain.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.module-comments-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
  padding: 0 14px;
}

.module-comments-item {
  color: #444;
}

.module-comments-item-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: #999;
}

.module-comments-item-author {
  color: inherit;
  text-decoration: none;
}

a.module-comments-item-author:hover,
a.module-comments-item-author:focus-visible {
  color: #666;
}

.module-comments-item-content {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #333;
  white-space: normal;
  overflow-wrap: break-word;
}

.module-share {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 24px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #444;
}

.module-share-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.module-share-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.module-share-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-width: 124px;
  padding: 6px;
  background: #444;
  border: 1px solid #444;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateX(-50%) translateY(-4px) scale(0.86);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.14s ease, transform 0.2s cubic-bezier(0.2, 1.25, 0.36, 1);
}

.module-share-menu.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}

.module-share-menu[hidden] {
  display: none;
}

.module-share-menu::before,
.module-share-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
}

.module-share-menu::before {
  top: -8px;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #444;
  border-left: 8px solid transparent;
}

.module-share-menu::after {
  top: -7px;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #444;
  border-left: 7px solid transparent;
}

.module-share-link {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 30px;
  padding: 4px 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  color: #E1E1E1;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-4px);
  transition: background-color 0.16s ease, opacity 0.16s ease, transform 0.16s ease;
}

.module-share-link-icon {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.module-share-menu.is-open .module-share-link {
  opacity: 1;
  transform: translateY(0);
}

.module-share-menu.is-open .module-share-link:nth-child(1) {
  transition-delay: 0.02s;
}

.module-share-menu.is-open .module-share-link:nth-child(2) {
  transition-delay: 0.05s;
}

.module-share-menu.is-open .module-share-link:nth-child(3) {
  transition-delay: 0.08s;
}

.module-share-menu.is-open .module-share-link:nth-child(4) {
  transition-delay: 0.11s;
}

.module-share-menu.is-open .module-share-link:nth-child(5) {
  transition-delay: 0.14s;
}

.module-share-menu.is-open .module-share-link:hover,
.module-share-menu.is-open .module-share-link:focus {
  background: transparent;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .module-share-menu,
  .module-share-link {
    transition: none;
  }
}
.module-sidebar {
  position: fixed;
  top: var(--module-sidebar-top, 96px);
  right: calc(50% + 480px / 2 + 30px);
  z-index: 20;
  display: flex;
  align-items: stretch;
  gap: 30px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.module-sidebar[hidden] {
  display: none;
}

.module-sidebar-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.module-sidebar-link {
  display: block;
  max-width: 150px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: right;
  color: #444;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.18s ease;
}

.module-sidebar-link.is-active {
  opacity: 1;
}

.module-sidebar-link:hover,
.module-sidebar-link:focus {
  opacity: 0.5;
}

.module-sidebar-track {
  position: relative;
  display: block;
  width: 1px;
  background: #DDDDDD;
}

.module-sidebar-cursor {
  position: absolute;
  top: 0;
  left: -1px;
  width: 3px;
  min-height: 24px;
  background: #444;
  border-radius: 2px;
  transform: translateY(0);
  transition: height 0.2s ease, transform 0.2s ease;
}

@media (max-width: 900px) {
  .module-sidebar {
    display: none;
  }
}
.module-newsletter-wrap {
  margin-top: 40px;
  margin-bottom: 40px;
}

.module-newsletter {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 50px;
  padding: 3px;
  border: 2px solid #ddd;
  border-radius: 28px;
  background: transparent;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.28s ease;
}

.module-newsletter-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  padding: 0 18px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #444;
  background: transparent;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  opacity: 1;
  transition: flex-basis 0.28s ease, width 0.28s ease, padding 0.28s ease, opacity 0.28s ease, visibility 0s linear 0s;
}

.module-newsletter-input::placeholder {
  color: #999;
}

.module-newsletter-submit {
  position: relative;
  flex: 0 0 auto;
  height: 44px;
  padding: 0 22px;
  border-radius: 24px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #444;
  background: #ddd;
  overflow: hidden;
  transition: background-color 0.18s ease, opacity 0.56s ease, transform 0.56s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}

.module-newsletter-submit:hover,
.module-newsletter-submit:focus {
  background: #d3d3d3;
}

.module-newsletter-submit-text {
  display: block;
  white-space: nowrap;
}

.module-newsletter-success-text {
  position: absolute;
  top: 2px;
  bottom: 3px;
  left: 18px;
  display: flex;
  align-items: center;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  padding-left: 30px;
  background-image: url("imgages/icon-ok.svg");
  background-repeat: no-repeat;
  background-position: left 13px;
  background-size: 20px 20px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-18px);
  transition: visibility 0s linear 0.36s;
}

.module-newsletter-curtain {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: #333;
  text-align: center;
  background: rgba(221, 221, 221, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.module-newsletter-curtain.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.module-newsletter.is-button-hidden .module-newsletter-submit {
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(100% + 26px));
  transition-delay: 0s, 0s, 0s, 0.56s;
}

.module-newsletter.is-input-hidden .module-newsletter-input {
  flex-basis: 0;
  width: 0;
  padding-right: 0;
  padding-left: 0;
  opacity: 0;
  visibility: hidden;
  transition-delay: 0.28s, 0.28s, 0.28s, 0s, 0.28s;
}

.module-newsletter.is-input-hidden {
  border-color: #444;
}

.module-newsletter.is-complete .module-newsletter-success-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  animation: module-newsletter-success-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition-delay: 0s;
}

@keyframes module-newsletter-success-in {
  0% {
    opacity: 0;
    transform: translateX(-18px);
  }
  72% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.module-newsletter-footer {
  padding: 15px;
  color: #999;
  font-size: 15px;
}

.module-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 34px;
  height: 34px;
  padding: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-radius: 17px;
  overflow: hidden;
  transition: opacity 0.18s ease, width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-search:hover,
.module-search:focus-within {
  opacity: 0.5;
}

.module-search.is-open {
  width: 180px;
  opacity: 1;
}

.module-search-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 34px;
  padding: 0 38px 0 14px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  background: #e3e3e3;
  border: 0;
  border-radius: 17px;
  outline: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.18s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-search.is-open .module-search-input {
  opacity: 1;
  transform: translateX(0);
}

.module-search-toggle {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  transition: opacity 0.18s ease, visibility 0s linear 0s;
}

.module-search.is-open .module-search-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0.18s;
}

.module-search-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.module-user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 20px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: #444;
  text-decoration: none;
  background: #e3e3e3;
  border-radius: 17px;
  transition: opacity 0.18s ease;
}

.module-user:hover,
.module-user:focus {
  opacity: 0.65;
}

.module-user-section {
  display: flex;
  flex-direction: column;
  background: #e6e6e6;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 30px 0;
}

.module-user-error {
  padding: 14px 18px;
  margin: 30px 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  color: #e1e1e1;
  background: #444;
  border-radius: 12px;
  text-align: center;
}

.module-user-error[hidden] {
  display: none;
}

.module-user-error.is-success {
  color: #e1e1e1;
  background: #444;
}

.module-user-section-item {
  font-weight: 400;
  color: #444;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px 20px;
  transition: background-color 0.18s ease;
}
.module-user-section-item:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
}

.module-user-section-item:hover,
.module-user-section-item:focus-within {
  background: #d8d8d8;
}

.module-user-section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #444;
}

.module-user-section-input {
  display: block;
  width: 100%;
  padding: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #777;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.module-user-section-input:focus {
  outline: 0;
  box-shadow: none;
}

.module-user-section-input::-webkit-search-cancel-button,
.module-user-section-input::-webkit-search-decoration,
.module-user-section-input::-webkit-contacts-auto-fill-button,
.module-user-section-input::-webkit-credentials-auto-fill-button {
  display: none;
  visibility: hidden;
  pointer-events: none;
}

.module-user-section-link {
  display: flex;
  flex-direction: column;
  border: solid 1px #d8d8d8;
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  margin: 30px 0;
}

.module-user-section-newsletter {
  margin: 30px 0;
}

.module-user-newsletter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 18px 12px 18px 20px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #444;
  background: #e6e6e6;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: pointer;
  transition: background-color 0.24s ease;
}

.module-user-newsletter-toggle:hover,
.module-user-newsletter-toggle:focus-within {
  background: #d8d8d8;
}

.module-user-newsletter-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.module-user-newsletter-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.module-user-newsletter-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  color: #777;
}

.module-user-newsletter-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.module-user-newsletter-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: transparent;
  background: transparent;
  border: 2px solid #999;
  border-radius: 50%;
  box-sizing: border-box;
  transform: scale(1);
  transition: background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-user-newsletter-check svg {
  display: block;
  width: 12px;
  height: 12px;
  overflow: visible;
}

.module-user-newsletter-check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  transition: stroke-dashoffset 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-user-newsletter-toggle input:checked + .module-user-newsletter-check {
  color: #fff;
  background: #444;
  border-color: #444;
  transform: scale(1.06);
}

.module-user-newsletter-toggle input:checked + .module-user-newsletter-check path {
  stroke-dashoffset: 0;
}

.module-user-section-link-item {
  font-weight: 400;
  color: #444;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 12px 12px 20px;
  box-sizing: border-box;
  transition: background-color 0.18s ease;
}

.module-user-section-link-item:not(:last-child) {
  border-bottom: 1px solid #d8d8d8;
}

.module-user-section-link-item:hover,
.module-user-section-link-item:focus-within {
  background: #d8d8d8;
}

.module-user-section-link-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  min-height: 28px;
  box-sizing: border-box;
}

.module-user-section-link-label img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.module-user-section-link-input {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #444;
  background: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.module-user-section-link-input::placeholder {
  color: #999;
}

.module-user-section-link-default {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: auto;
  margin-right: 0;
  flex: 0 0 18px;
  cursor: pointer;
}

.module-user-section-link-default:has(input:disabled) {
  cursor: default;
  opacity: 0.35;
}

.module-user-section-link-default input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.module-user-section-link-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: transparent;
  background: transparent;
  border: 2px solid #999;
  border-radius: 50%;
  box-sizing: border-box;
  transform: scale(1);
  transition: background-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.28s cubic-bezier(0.22, 1, 0.36, 1), transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-user-section-link-check svg {
  display: block;
  width: 12px;
  height: 12px;
  overflow: visible;
}

.module-user-section-link-check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  transition: stroke-dashoffset 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.module-user-section-link-default input:checked + .module-user-section-link-check {
  border-color: #444;
  color: #fff;
  background: #444;
  transform: scale(1.06);
}

.module-user-section-link-default input:checked + .module-user-section-link-check path {
  stroke-dashoffset: 0;
}

.module-user-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 80px;
}

.module-user-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 38px;
  padding: 0 18px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #333;
  background: transparent;
  border: 1px solid #d1d1d1;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.module-user-save:hover,
.module-user-save:focus-visible {
  border-color: #888;
  color: #111;
}

.module-user-save:focus-visible {
  outline: 2px solid #999;
  outline-offset: 2px;
}

.module-user-save:disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.module-user-info {
  color: #999;
  font-size: 14px;
  padding: 0 12px;
  margin-bottom: 30px;
}
