/*
Theme Name: Kuromitsu Kobo
Theme URI: https://kuromitsu-kobo.com/
Author: Kuromitsu Kobo
Description: Custom lightweight premium theme for kuromitsu-kobo.com.
Version: 1.1.0
Requires at least: 6.5
Tested up to: 6.8
Requires PHP: 8.1
Text Domain: kuromitsu-kobo
*/

:root {
  --kk-prime: #05020a;
  --kk-surface: rgba(15, 8, 28, 0.5);
  --kk-surface-strong: rgba(5, 2, 10, 0.95);
  --kk-accent: #b026ff;
  --kk-accent-light: #d946ef;
  --kk-accent-dark: #6b21a8;
  --kk-amber: #d97706;
  --kk-gold: #facc15;
  --kk-glimmer-highlight: #facc15;
  --kk-glimmer-sheen: #fff7ed;
  --kk-glimmer-highlight-rgb: 250, 204, 21;
  --kk-hero-bg-desktop: none;
  --kk-hero-bg-mobile: none;
  --kk-hero-bg-position-desktop: center center;
  --kk-hero-bg-position-mobile: center center;
  --kk-hero-mask-strength: 0.68;
  --kk-hero-mask-strength-mobile: 0.76;
  --kk-text: #e2e8f0;
  --kk-muted: #94a3b8;
  --kk-dim: #64748b;
  --kk-border: rgba(255, 255, 255, 0.06);
  --kk-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --kk-glow: 0 0 30px rgba(176, 38, 255, 0.4);
  --kk-max: 1400px;
  --kk-serif: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  --kk-sans: Inter, -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  --kk-cinzel: Cinzel, "Times New Roman", serif;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--kk-prime);
  color: var(--kk-text);
  cursor: auto;
  font-family: var(--kk-sans);
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.kk-custom-cursor-enabled {
  cursor: none;
}

.kk-native-cursor body,
.kk-native-cursor .kk-cursor-dot,
.kk-native-cursor .kk-cursor-outline,
.kk-native-cursor input,
.kk-native-cursor textarea,
.kk-native-cursor select,
body.kk-native-cursor,
body.kk-native-cursor input,
body.kk-native-cursor textarea,
body.kk-native-cursor select {
  cursor: auto;
}

.kk-native-cursor a,
.kk-native-cursor button,
.kk-native-cursor summary,
.kk-native-cursor [role="button"],
.kk-native-cursor input[type="button"],
.kk-native-cursor input[type="reset"],
.kk-native-cursor input[type="submit"],
body.kk-native-cursor a,
body.kk-native-cursor button,
body.kk-native-cursor summary,
body.kk-native-cursor [role="button"],
body.kk-native-cursor input[type="button"],
body.kk-native-cursor input[type="reset"],
body.kk-native-cursor input[type="submit"] {
  cursor: default;
}

.kk-native-cursor .kk-cursor-dot,
.kk-native-cursor .kk-cursor-outline,
body.kk-native-cursor .kk-cursor-dot,
body.kk-native-cursor .kk-cursor-outline,
body:not(.kk-custom-cursor-enabled) .kk-cursor-dot,
body:not(.kk-custom-cursor-enabled) .kk-cursor-outline {
  display: none;
}

body.admin-bar .kk-sidebar-sticky {
  top: 76px;
}

body.kk-adult-gate-open {
  overflow: hidden;
}

.kk-adult-gate[hidden] {
  display: none;
}

.kk-adult-gate,
.kk-adult-gate-noscript {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: clamp(18px, 4vw, 48px);
  color: #fff4f8;
  background: #05020a;
  font-family: var(--kk-serif);
}

.kk-adult-gate-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at center, rgba(5, 2, 10, 0.48), rgba(5, 2, 10, 0.84) 54%, #05020a 100%),
    linear-gradient(180deg, rgba(5, 2, 10, 0.46), rgba(5, 2, 10, 0.78)),
    var(--kk-adult-gate-bg);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.kk-adult-gate-bg::before,
.kk-adult-gate-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.kk-adult-gate-bg::before {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 244, 249, 0.09) 18%, transparent 34%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 21px);
  opacity: 0.44;
}

.kk-adult-gate-bg::after {
  background:
    radial-gradient(circle at 20% 12%, rgba(217, 70, 239, 0.2), transparent 30%),
    radial-gradient(circle at 84% 86%, rgba(var(--kk-glimmer-highlight-rgb), 0.11), transparent 34%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.kk-adult-gate-panel,
.kk-adult-gate-noscript > div {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(176, 38, 255, 0.14), rgba(92, 25, 52, 0.32)),
    rgba(7, 3, 12, 0.9);
  border: 1px solid rgba(255, 214, 228, 0.24);
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 34px 70px rgba(255, 255, 255, 0.018),
    0 32px 90px rgba(0, 0, 0, 0.54);
  text-align: center;
}

.kk-adult-gate-panel::before {
  position: absolute;
  inset: 12px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 244, 249, 0.08);
  box-shadow: inset 0 0 46px rgba(176, 38, 255, 0.1);
}

.kk-adult-gate-kicker {
  margin: 0 0 18px;
  color: #f0c4d2;
  font-family: var(--kk-cinzel);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kk-adult-gate h2,
.kk-adult-gate-noscript strong {
  display: block;
  margin: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-shadow: 0 0 32px rgba(176, 38, 255, 0.3);
}

.kk-adult-gate p,
.kk-adult-gate-noscript p {
  max-width: 540px;
  margin: 18px auto 0;
  color: rgba(255, 244, 249, 0.82);
  font-size: 14px;
  line-height: 2;
}

.kk-adult-gate-note {
  color: rgba(255, 226, 235, 0.72);
  font-size: 12px;
}

.kk-adult-gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.kk-adult-gate-actions button {
  min-height: 52px;
  padding: 0 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 244, 249, 0.11), rgba(176, 38, 255, 0.18)),
    rgba(20, 6, 24, 0.82);
  border: 1px solid rgba(255, 244, 249, 0.36);
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 14px 34px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-family: var(--kk-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, filter 180ms ease;
}

.kk-adult-gate-actions button:hover,
.kk-adult-gate-actions button:focus-visible {
  border-color: rgba(255, 244, 249, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 28px rgba(176, 38, 255, 0.26),
    0 16px 38px rgba(0, 0, 0, 0.32);
  outline: none;
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.kk-adult-gate-enter {
  min-width: min(100%, 260px);
}

.kk-adult-gate-leave {
  min-width: min(100%, 160px);
  color: rgba(255, 244, 249, 0.78);
  background: rgba(7, 3, 12, 0.54);
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
input,
textarea,
select {
  cursor: auto;
}

body.kk-custom-cursor-enabled button,
body.kk-custom-cursor-enabled a,
body.kk-custom-cursor-enabled input,
body.kk-custom-cursor-enabled textarea,
body.kk-custom-cursor-enabled select {
  cursor: none;
}

.kk-native-cursor body.kk-custom-cursor-enabled,
.kk-native-cursor body.kk-custom-cursor-enabled input,
.kk-native-cursor body.kk-custom-cursor-enabled textarea,
.kk-native-cursor body.kk-custom-cursor-enabled select {
  cursor: auto;
}

.kk-native-cursor body.kk-custom-cursor-enabled a,
.kk-native-cursor body.kk-custom-cursor-enabled button,
.kk-native-cursor body.kk-custom-cursor-enabled summary,
.kk-native-cursor body.kk-custom-cursor-enabled [role="button"],
.kk-native-cursor body.kk-custom-cursor-enabled input[type="button"],
.kk-native-cursor body.kk-custom-cursor-enabled input[type="reset"],
.kk-native-cursor body.kk-custom-cursor-enabled input[type="submit"] {
  cursor: default;
}

::selection {
  background: rgba(176, 38, 255, 0.55);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--kk-prime);
}

::-webkit-scrollbar-thumb {
  background: #2a104a;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--kk-accent);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
  color: #111;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 1px solid var(--kk-accent-light);
  outline-offset: 4px;
}

.kk-reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 2px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.025);
}

.kk-reading-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--kk-accent), var(--kk-glimmer-highlight), var(--kk-accent-light));
  box-shadow: 0 0 18px rgba(var(--kk-glimmer-highlight-rgb), 0.36);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.kk-cursor-dot,
.kk-cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  border-radius: 50%;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
}

.kk-cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--kk-accent-light);
  box-shadow: 0 0 10px var(--kk-accent-light);
}

.kk-cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(176, 38, 255, 0.5);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.kk-cursor-active .kk-cursor-outline {
  width: 60px;
  height: 60px;
  border-color: var(--kk-accent-light);
  background: rgba(217, 70, 239, 0.1);
}

.kk-ambient-orb {
  position: fixed;
  z-index: 0;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
  will-change: transform;
}

.kk-orb-one {
  top: -10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(176, 38, 255, 0.2) 0%, transparent 70%);
  animation: kk-float 20s infinite alternate ease-in-out;
}

.kk-orb-two {
  right: -10%;
  bottom: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
  animation: kk-float 25s infinite alternate-reverse ease-in-out;
}

@keyframes kk-float {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(3%, 5%, 0) scale(1.1);
  }
}

body.admin-bar .kk-site-header {
  top: 32px;
}

body.kk-mobile-menu-open {
  overflow: hidden;
}

.kk-site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2500;
  width: 100%;
  padding: 18px 0 0;
  pointer-events: none;
}

.kk-site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--kk-max), calc(100% - 32px));
  min-height: 66px;
  padding: 10px 12px 10px 22px;
  margin: 0 auto;
  overflow: hidden;
  pointer-events: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(5, 2, 10, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(217, 70, 239, 0.05);
  backdrop-filter: blur(22px) saturate(128%);
  -webkit-backdrop-filter: blur(22px) saturate(128%);
}

.kk-site-header-inner::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(217, 70, 239, 0.1), transparent 28%, transparent 72%, rgba(var(--kk-glimmer-highlight-rgb), 0.075)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0.78;
  pointer-events: none;
}

.kk-site-header-inner::after {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.5), rgba(var(--kk-glimmer-highlight-rgb), 0.3), transparent);
  opacity: 0.58;
  pointer-events: none;
}

.kk-site-brand {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  min-width: 154px;
  color: #fff;
}

.kk-site-brand-kicker {
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 9px;
  line-height: 1.2;
  text-transform: uppercase;
}

.kk-site-brand-name {
  font-family: var(--kk-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42), 0 0 20px rgba(176, 38, 255, 0.22);
}

.kk-primary-nav {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.kk-primary-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kk-primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 13px;
  overflow: hidden;
  color: rgba(226, 232, 240, 0.78);
  font-family: var(--kk-serif);
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.kk-primary-menu a::before {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.8), rgba(var(--kk-glimmer-highlight-rgb), 0.46), transparent);
  opacity: 0;
  transform: scaleX(0.34);
  transform-origin: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.kk-primary-menu a:hover,
.kk-primary-menu a:focus-visible,
.kk-primary-menu .current-menu-item > a,
.kk-primary-menu .current_page_item > a {
  color: #fff;
  background: rgba(176, 38, 255, 0.08);
  border-color: rgba(217, 70, 239, 0.24);
  transform: translateY(-1px);
}

.kk-primary-menu a:hover::before,
.kk-primary-menu a:focus-visible::before,
.kk-primary-menu .current-menu-item > a::before,
.kk-primary-menu .current_page_item > a::before {
  opacity: 1;
  transform: scaleX(1);
}

.kk-menu-toggle {
  position: relative;
  z-index: 1;
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(5, 2, 10, 0.52);
  border: 1px solid rgba(217, 70, 239, 0.34);
  border-radius: 0;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.kk-menu-toggle:hover,
.kk-menu-toggle:focus-visible,
body.kk-mobile-menu-open .kk-menu-toggle {
  background: rgba(176, 38, 255, 0.12);
  border-color: var(--kk-accent-light);
  box-shadow: 0 0 26px rgba(176, 38, 255, 0.28);
  transform: translateY(-1px);
}

.kk-menu-toggle-lines {
  position: relative;
  display: grid;
  gap: 6px;
  width: 22px;
}

.kk-menu-toggle-lines span {
  display: block;
  width: 22px;
  height: 1px;
  background: #fff;
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.5);
  transform-origin: center;
  transition: transform 0.32s ease, opacity 0.32s ease, background 0.32s ease;
}

body.kk-mobile-menu-open .kk-menu-toggle-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.kk-mobile-menu-open .kk-menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

body.kk-mobile-menu-open .kk-menu-toggle-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.kk-mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2900;
  background: rgba(5, 2, 10, 0.74);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: opacity 0.36s ease;
}

body.kk-mobile-menu-open .kk-mobile-nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.kk-mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 3000;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  pointer-events: none;
}

.kk-mobile-drawer-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(430px, calc(100vw - 24px));
  min-height: 100%;
  padding: 26px;
  overflow: hidden auto;
  pointer-events: auto;
  background:
    linear-gradient(135deg, rgba(217, 70, 239, 0.16), transparent 30%),
    linear-gradient(225deg, rgba(var(--kk-glimmer-highlight-rgb), 0.11), transparent 38%),
    rgba(5, 2, 10, 0.96);
  border-left: 1px solid rgba(217, 70, 239, 0.22);
  box-shadow: -30px 0 90px rgba(0, 0, 0, 0.64), inset 1px 0 0 rgba(255, 255, 255, 0.04);
  transform: translateX(100%);
  transition: transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
}

.kk-mobile-drawer-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.16;
  pointer-events: none;
}

.kk-mobile-drawer-panel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(217, 70, 239, 0.7), rgba(var(--kk-glimmer-highlight-rgb), 0.36), transparent);
  pointer-events: none;
}

body.kk-mobile-menu-open .kk-mobile-drawer-panel {
  transform: translateX(0);
}

.kk-mobile-drawer-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.kk-mobile-drawer-kicker {
  margin: 0 0 6px;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
}

.kk-mobile-drawer-title {
  margin: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.kk-mobile-close {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(5, 2, 10, 0.42);
  border: 1px solid rgba(217, 70, 239, 0.34);
  border-radius: 0;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease, background 0.35s ease;
}

.kk-mobile-close span {
  position: absolute;
  width: 22px;
  height: 1px;
  background: #fff;
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.54);
}

.kk-mobile-close span:first-child {
  transform: rotate(45deg);
}

.kk-mobile-close span:last-child {
  transform: rotate(-45deg);
}

.kk-mobile-close:hover,
.kk-mobile-close:focus-visible {
  background: rgba(176, 38, 255, 0.12);
  border-color: var(--kk-accent-light);
  box-shadow: 0 0 26px rgba(176, 38, 255, 0.28);
  transform: translateY(-1px);
}

.kk-mobile-nav {
  position: relative;
  z-index: 1;
}

.kk-mobile-menu {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: kk-mobile-menu;
}

.kk-mobile-menu li {
  counter-increment: kk-mobile-menu;
}

.kk-mobile-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 17px 18px;
  overflow: hidden;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 17px;
  line-height: 1.25;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), transparent),
    rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(217, 70, 239, 0.04);
  transition: border-color 0.38s ease, background 0.38s ease, box-shadow 0.38s ease, transform 0.38s ease;
}

.kk-mobile-menu a::before {
  order: 2;
  color: rgba(217, 70, 239, 0.72);
  font-family: var(--kk-cinzel);
  font-size: 11px;
  line-height: 1;
  content: counter(kk-mobile-menu, decimal-leading-zero);
}

.kk-mobile-menu a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(176, 38, 255, 0.28) 38%, rgba(var(--kk-glimmer-highlight-rgb), 0.18) 50%, rgba(217, 70, 239, 0.18) 62%, transparent 100%);
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
  transition: opacity 0.38s ease, transform 0.58s cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-mobile-menu a:hover,
.kk-mobile-menu a:focus-visible,
.kk-mobile-menu .current-menu-item > a,
.kk-mobile-menu .current_page_item > a {
  background: rgba(176, 38, 255, 0.1);
  border-color: rgba(217, 70, 239, 0.44);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  transform: translateX(-4px);
}

.kk-mobile-menu a:hover::after,
.kk-mobile-menu a:focus-visible::after,
.kk-mobile-menu .current-menu-item > a::after,
.kk-mobile-menu .current_page_item > a::after {
  opacity: 1;
  transform: translateX(120%) skewX(-18deg);
}

.kk-glass {
  background: var(--kk-surface);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: var(--kk-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.kk-glass-hover {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.kk-glass-hover:hover,
.kk-glass-hover:focus-within {
  background: rgba(20, 10, 40, 0.7);
  border-color: rgba(176, 38, 255, 0.4);
  box-shadow: 0 10px 40px rgba(176, 38, 255, 0.2), inset 0 0 0 1px rgba(176, 38, 255, 0.1);
  transform: translateY(-4px);
}

.kk-gradient-text {
  background: linear-gradient(to right, #e2e8f0, var(--kk-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kk-text-glow {
  text-shadow: 0 0 25px rgba(176, 38, 255, 0.7);
}

body.kk-glimmer-enabled .kk-hero-title-main.kk-gradient-text {
  background-image: linear-gradient(105deg, #e2e8f0 0%, #f7e8ff 19%, #b026ff 34%, var(--kk-glimmer-highlight) 45%, var(--kk-glimmer-sheen) 50%, #d946ef 58%, #b026ff 72%, #e2e8f0 100%);
  background-size: 280% 100%;
  animation: kk-glimmer-sweep 7.2s cubic-bezier(0.55, 0, 0.1, 1) infinite;
  will-change: background-position;
}

body.kk-breathing-glow-enabled .kk-hero-title {
  animation: kk-breathing-glow 6.4s ease-in-out infinite;
  will-change: filter;
}

@keyframes kk-glimmer-sweep {
  0%,
  18% {
    background-position: 122% 50%;
  }

  58%,
  100% {
    background-position: -122% 50%;
  }
}

@keyframes kk-breathing-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 16px rgba(176, 38, 255, 0.22)) drop-shadow(0 0 34px rgba(217, 70, 239, 0.1));
  }

  50% {
    filter: drop-shadow(0 0 28px rgba(176, 38, 255, 0.5)) drop-shadow(0 0 58px rgba(var(--kk-glimmer-highlight-rgb), 0.13));
  }
}

.kk-track-wide {
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}

.kk-track-wider {
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}

.kk-track-widest {
  letter-spacing: 0.4em;
  padding-left: 0.4em;
}

.kk-track-super {
  letter-spacing: 0.6em;
  padding-left: 0.6em;
}

.kk-premium-control,
.kk-premium-btn,
.kk-choice-button,
.kk-comment-submit,
.kk-search-submit,
.kk-pagination .page-numbers,
.kk-page-links a,
.kk-page-links > span,
.kk-entry-content .wp-block-button__link,
.kk-entry-content .wp-element-button,
.kk-entry-content .wp-block-search__button,
.kk-widget .wp-block-button__link,
.kk-widget .wp-element-button,
.kk-widget .wp-block-search__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.45rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(5, 2, 10, 0.54);
  border: 1px solid rgba(176, 38, 255, 0.4);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, color 0.5s ease, background 0.5s ease, transform 0.5s ease;
}

.kk-premium-control::before,
.kk-premium-btn::before,
.kk-choice-button::before,
.kk-comment-submit::before,
.kk-search-submit::before,
.kk-pagination .page-numbers::before,
.kk-page-links a::before,
.kk-page-links > span::before,
.kk-entry-content .wp-block-button__link::before,
.kk-entry-content .wp-element-button::before,
.kk-entry-content .wp-block-search__button::before,
.kk-widget .wp-block-button__link::before,
.kk-widget .wp-element-button::before,
.kk-widget .wp-block-search__button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent 0%, rgba(176, 38, 255, 0.28) 38%, rgba(var(--kk-glimmer-highlight-rgb), 0.24) 50%, rgba(217, 70, 239, 0.2) 62%, transparent 100%);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-premium-control::after,
.kk-premium-btn::after,
.kk-choice-button::after,
.kk-comment-submit::after,
.kk-search-submit::after,
.kk-pagination .page-numbers::after,
.kk-page-links a::after,
.kk-page-links > span::after,
.kk-entry-content .wp-block-button__link::after,
.kk-entry-content .wp-element-button::after,
.kk-entry-content .wp-block-search__button::after,
.kk-widget .wp-block-button__link::after,
.kk-widget .wp-element-button::after,
.kk-widget .wp-block-search__button::after {
  position: absolute;
  inset: 3px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.kk-premium-control > *,
.kk-premium-btn > *,
.kk-choice-button > *,
.kk-comment-submit > *,
.kk-search-submit > *,
.kk-entry-content .wp-block-button__link > *,
.kk-entry-content .wp-element-button > *,
.kk-widget .wp-block-button__link > *,
.kk-widget .wp-element-button > * {
  position: relative;
  z-index: 1;
}

.kk-premium-control:hover,
.kk-premium-control:focus-visible,
.kk-premium-btn:hover,
.kk-premium-btn:focus-visible,
.kk-choice-button:hover,
.kk-choice-button:focus-visible,
.kk-comment-submit:hover,
.kk-comment-submit:focus-visible,
.kk-search-submit:hover,
.kk-search-submit:focus-visible,
.kk-pagination a.page-numbers:hover,
.kk-pagination a.page-numbers:focus-visible,
.kk-page-links a:hover,
.kk-page-links a:focus-visible,
.kk-entry-content .wp-block-button__link:hover,
.kk-entry-content .wp-block-button__link:focus-visible,
.kk-entry-content .wp-element-button:hover,
.kk-entry-content .wp-element-button:focus-visible,
.kk-entry-content .wp-block-search__button:hover,
.kk-entry-content .wp-block-search__button:focus-visible,
.kk-widget .wp-block-button__link:hover,
.kk-widget .wp-block-button__link:focus-visible,
.kk-widget .wp-element-button:hover,
.kk-widget .wp-element-button:focus-visible,
.kk-widget .wp-block-search__button:hover,
.kk-widget .wp-block-search__button:focus-visible {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent),
    rgba(176, 38, 255, 0.12);
  border-color: var(--kk-accent-light);
  box-shadow: var(--kk-glow);
  outline: 0;
  transform: translateY(-2px);
}

.kk-premium-control:hover::before,
.kk-premium-control:focus-visible::before,
.kk-premium-btn:hover::before,
.kk-premium-btn:focus-visible::before,
.kk-choice-button:hover::before,
.kk-choice-button:focus-visible::before,
.kk-comment-submit:hover::before,
.kk-comment-submit:focus-visible::before,
.kk-search-submit:hover::before,
.kk-search-submit:focus-visible::before,
.kk-pagination a.page-numbers:hover::before,
.kk-pagination a.page-numbers:focus-visible::before,
.kk-page-links a:hover::before,
.kk-page-links a:focus-visible::before,
.kk-entry-content .wp-block-button__link:hover::before,
.kk-entry-content .wp-block-button__link:focus-visible::before,
.kk-entry-content .wp-element-button:hover::before,
.kk-entry-content .wp-element-button:focus-visible::before,
.kk-entry-content .wp-block-search__button:hover::before,
.kk-entry-content .wp-block-search__button:focus-visible::before,
.kk-widget .wp-block-button__link:hover::before,
.kk-widget .wp-block-button__link:focus-visible::before,
.kk-widget .wp-element-button:hover::before,
.kk-widget .wp-element-button:focus-visible::before,
.kk-widget .wp-block-search__button:hover::before,
.kk-widget .wp-block-search__button:focus-visible::before {
  transform: translateX(120%) skewX(-18deg);
}

.kk-premium-btn {
  min-height: 62px;
  padding: 1.2rem 3.5rem;
  font-size: 14px;
}

.kk-premium-btn span {
  display: block;
}

.kk-hero {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.kk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: #05020a;
  background-image: var(--kk-hero-bg-desktop);
  background-position: var(--kk-hero-bg-position-desktop);
  background-size: cover;
  transform: translate3d(0, 0, 0) scale(1.02);
  will-change: transform;
}

.kk-hero-bg::before {
  position: absolute;
  inset: -10%;
  content: "";
  background:
    radial-gradient(circle at 17% 18%, rgba(217, 70, 239, 0.22), transparent 30%),
    radial-gradient(circle at 78% 16%, rgba(250, 204, 21, 0.11), transparent 28%),
    linear-gradient(115deg, transparent 0 42%, rgba(176, 38, 255, 0.18) 43% 44%, transparent 46% 100%);
  mix-blend-mode: screen;
  opacity: 0.42;
  transform: scale(1.1);
  pointer-events: none;
}

.kk-hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(5, 2, 10, 0.74) 0%, rgba(5, 2, 10, 0.48) 38%, rgba(5, 2, 10, 0.9) 82%),
    linear-gradient(180deg, rgba(5, 2, 10, 0.68) 0%, rgba(5, 2, 10, 0.38) 34%, var(--kk-prime) 100%),
    linear-gradient(90deg, rgba(5, 2, 10, 0.8), transparent 34%, transparent 66%, rgba(5, 2, 10, 0.82));
  opacity: var(--kk-hero-mask-strength);
  pointer-events: none;
}

.kk-hero-mask--even .kk-hero-bg::after {
  background:
    linear-gradient(rgba(5, 2, 10, 0.8), rgba(5, 2, 10, 0.8)),
    linear-gradient(180deg, transparent 62%, var(--kk-prime) 100%);
}

.kk-hero-mask--top .kk-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(5, 2, 10, 0.94) 0%, rgba(5, 2, 10, 0.58) 42%, rgba(5, 2, 10, 0.52) 68%, var(--kk-prime) 100%),
    radial-gradient(ellipse at center, rgba(5, 2, 10, 0.52), rgba(5, 2, 10, 0.9));
}

.kk-hero-mask--bottom .kk-hero-bg::after {
  background:
    linear-gradient(180deg, rgba(5, 2, 10, 0.44) 0%, rgba(5, 2, 10, 0.62) 54%, var(--kk-prime) 100%),
    radial-gradient(ellipse at center, rgba(5, 2, 10, 0.48), rgba(5, 2, 10, 0.88));
}

.kk-hero-mask--center .kk-hero-bg::after {
  background:
    radial-gradient(ellipse at center, rgba(5, 2, 10, 0.88) 0%, rgba(5, 2, 10, 0.66) 34%, rgba(5, 2, 10, 0.86) 72%),
    linear-gradient(180deg, rgba(5, 2, 10, 0.48), var(--kk-prime) 100%);
}

.kk-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  margin-top: -5vh;
  text-align: center;
  isolation: isolate;
}

.kk-hero-content::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(940px, 94vw);
  height: min(560px, 62vh);
  content: "";
  background: radial-gradient(ellipse at center, rgba(5, 2, 10, 0.76), rgba(5, 2, 10, 0.34) 48%, transparent 72%);
  filter: blur(10px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.kk-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 32px;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 12px;
  text-transform: uppercase;
}

.kk-hero-eyebrow::before,
.kk-hero-eyebrow::after {
  display: block;
  width: 64px;
  height: 1px;
  content: "";
}

.kk-hero-eyebrow::before {
  background: linear-gradient(to right, transparent, var(--kk-accent));
}

.kk-hero-eyebrow::after {
  background: linear-gradient(to left, transparent, var(--kk-accent));
}

.kk-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 40px;
  font-family: var(--kk-serif);
  line-height: 1.05;
}

.kk-hero-title-main {
  display: block;
  font-size: clamp(60px, 10vw, 128px);
  font-weight: 700;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.36)) drop-shadow(0 0 22px rgba(5, 2, 10, 0.42));
}

.kk-hero-title-sub {
  display: block;
  margin-top: 16px;
  color: #9ca3af;
  font-family: var(--kk-cinzel);
  font-size: clamp(12px, 1.25vw, 16px);
  text-transform: uppercase;
}

.kk-hero-copy {
  max-width: 672px;
  margin: 0 auto 64px;
  color: #d1d5db;
  font-family: var(--kk-serif);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 2;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.kk-scroll-line-container {
  position: absolute;
  bottom: 48px;
  left: 50%;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  opacity: 0.7;
  transform: translateX(-50%);
  transition: opacity 0.3s ease;
}

.kk-scroll-line-container:hover {
  opacity: 1;
}

.kk-scroll-line-label {
  display: block;
  color: #9ca3af;
  font-family: var(--kk-cinzel);
  font-size: 10px;
  text-transform: uppercase;
}

.kk-scroll-line {
  position: relative;
  width: 1px;
  height: 80px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}

.kk-scroll-line::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  content: "";
  background: linear-gradient(to bottom, transparent, var(--kk-accent), var(--kk-accent-light));
  animation: kk-scroll-drop 2.5s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@keyframes kk-scroll-drop {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(250%);
  }
}

.kk-hero-elem {
  opacity: 0;
  transform: translateY(30px);
}

body.is-ready .kk-hero-elem {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.6s ease, transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body.is-ready .kk-hero-elem:nth-child(1) {
  transition-delay: 0.2s;
}

body.is-ready .kk-hero-elem:nth-child(2) {
  transition-delay: 0.5s;
}

body.is-ready .kk-hero-elem:nth-child(3) {
  transition-delay: 0.8s;
}

body.is-ready .kk-hero-elem:nth-child(4) {
  transition-delay: 1.1s;
}

.kk-main {
  position: relative;
  z-index: 10;
  max-width: var(--kk-max);
  min-height: 100vh;
  padding: 128px 16px;
  margin: 0 auto;
}

.kk-section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 96px;
  text-align: center;
}

.kk-section-title h2 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
}

.kk-section-title p {
  margin: 0;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 12px;
  text-transform: uppercase;
}

.kk-section-title::after {
  width: 64px;
  height: 1px;
  margin-top: 32px;
  content: "";
  background: linear-gradient(to right, transparent, var(--kk-accent), transparent);
}

.kk-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 31.5%;
  gap: 64px;
}

.kk-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.kk-story-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
}

.kk-story-card a {
  position: relative;
  display: block;
  height: 100%;
}

.kk-story-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.kk-story-media img,
.kk-story-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1s ease;
}

.kk-story-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--kk-cinzel);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0.08em;
  padding-left: 0.08em;
  text-transform: uppercase;
}

.kk-story-placeholder.is-one {
  background: radial-gradient(circle at 50% 42%, rgba(176, 38, 255, 0.45), transparent 37%), #0a0014;
}

.kk-story-placeholder.is-two {
  background: radial-gradient(circle at 50% 42%, rgba(217, 70, 239, 0.45), transparent 37%), #120524;
}

.kk-story-placeholder.is-three {
  background: radial-gradient(circle at 50% 42%, rgba(139, 92, 246, 0.45), transparent 37%), #0a0215;
}

.kk-story-placeholder.is-four {
  background: radial-gradient(circle at 50% 42%, rgba(192, 132, 252, 0.43), transparent 37%), #1a0b2e;
}

.kk-story-card:hover .kk-story-media img,
.kk-story-card:focus-within .kk-story-media img,
.kk-story-card:hover .kk-story-placeholder,
.kk-story-card:focus-within .kk-story-placeholder {
  transform: scale(1.13);
}

.kk-story-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, var(--kk-prime), rgba(5, 2, 10, 0.4), transparent);
}

.kk-reveal-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--kk-prime);
  transform: scaleY(1);
  transform-origin: top;
}

.kk-stagger.is-visible .kk-reveal-cover {
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.kk-story-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 6px 20px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 12px;
  letter-spacing: 0.1em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
}

.kk-story-body {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  padding: 32px;
}

.kk-story-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.kk-story-date::before {
  width: 24px;
  height: 1px;
  content: "";
  background: var(--kk-accent);
}

.kk-story-title {
  display: -webkit-box;
  margin: 0 0 16px;
  overflow: hidden;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(20px, 1.55vw, 24px);
  font-weight: 500;
  line-height: 1.72;
  overflow-wrap: anywhere;
  word-break: keep-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.kk-story-card:hover .kk-story-title,
.kk-story-card:focus-within .kk-story-title {
  color: var(--kk-accent-light);
}

.kk-story-excerpt {
  display: -webkit-box;
  height: 0;
  margin: 0;
  overflow: hidden;
  color: #9ca3af;
  font-family: var(--kk-serif);
  font-size: 14px;
  line-height: 2;
  opacity: 0;
  transform: translateY(16px);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: opacity 0.5s ease, transform 0.5s ease, height 0.5s ease;
}

.kk-story-card:hover .kk-story-excerpt,
.kk-story-card:focus-within .kk-story-excerpt {
  height: 56px;
  opacity: 1;
  transform: translateY(0);
}

.kk-stagger {
  opacity: 0;
  transform: translateY(60px);
}

.kk-stagger.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.kk-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 96px;
}

.kk-pagination .page-numbers,
.kk-pagination a,
.kk-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 0;
  color: #9ca3af;
  font-family: var(--kk-cinzel);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.kk-pagination .prev,
.kk-pagination .next {
  min-width: 76px;
}

.kk-pagination .current {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(176, 38, 255, 0.2);
  border: 1px solid var(--kk-accent);
  color: #fff;
  box-shadow: 0 0 20px rgba(176, 38, 255, 0.3);
}

.kk-pagination .dots {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: rgba(148, 163, 184, 0.72);
}

.kk-pagination .dots::before,
.kk-pagination .dots::after {
  display: none;
}

.kk-sidebar {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.kk-widget {
  position: relative;
  padding: 32px;
  overflow: hidden;
  border-radius: 0;
}

.kk-widget-title,
.kk-widget .wp-block-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}

.kk-widget-title::before,
.kk-widget .wp-block-heading::before {
  display: block;
  flex: 0 0 auto;
  width: 4px;
  height: 24px;
  content: "";
  background: var(--kk-accent);
  border-radius: 0;
  box-shadow: 0 0 10px var(--kk-accent);
}

.kk-widget ul:not(.kk-ranking-list):not(.kk-category-tree):not(.kk-category-children),
.kk-widget ol:not(.kk-ranking-list):not(.kk-category-tree):not(.kk-category-children) {
  padding-left: 1.2em;
  margin: 0;
  color: #b7bfcc;
  font-family: var(--kk-serif);
  font-size: 14px;
  line-height: 2;
}

.kk-widget li + li {
  margin-top: 10px;
}

.kk-widget a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.kk-widget a:hover,
.kk-widget a:focus-visible {
  color: var(--kk-accent-light);
}

.kk-widget .wp-block-button__link,
.kk-widget .wp-element-button,
.kk-widget .wp-block-search__button,
.kk-widget .wp-block-button__link:hover,
.kk-widget .wp-block-button__link:focus-visible,
.kk-widget .wp-element-button:hover,
.kk-widget .wp-element-button:focus-visible,
.kk-widget .wp-block-search__button:hover,
.kk-widget .wp-block-search__button:focus-visible {
  color: #fff;
  text-decoration: none;
}

.kk-widget p {
  margin: 0;
  color: #9ca3af;
  font-family: var(--kk-serif);
}

.kk-category-panel {
  position: relative;
  padding: 26px;
  margin: 0 0 34px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 8% 0%, rgba(217, 70, 239, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(176, 38, 255, 0.09), rgba(92, 25, 52, 0.12)),
    rgba(9, 4, 16, 0.62);
  border: 1px solid rgba(236, 182, 206, 0.16);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 18px 48px rgba(0, 0, 0, 0.22);
}

.kk-category-panel::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.kk-category-panel-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: end;
  justify-content: space-between;
  margin: 0 0 20px;
}

.kk-category-panel-kicker {
  margin: 0;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-category-panel h3 {
  margin: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.kk-category-nav {
  position: relative;
}

.kk-category-nav-title {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 16px;
  font-weight: 500;
}

.kk-category-tree,
.kk-category-children {
  padding: 0;
  margin: 0;
  list-style: none;
}

.kk-category-tree {
  display: grid;
  gap: 10px;
}

.kk-category-tree--panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.kk-category-node {
  min-width: 0;
}

.kk-category-node + .kk-category-node {
  margin-top: 0;
}

.kk-category-link {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  color: rgba(245, 230, 255, 0.84);
  font-family: var(--kk-serif);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(236, 182, 206, 0.12);
  border-radius: 0;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.kk-category-node.is-parent > .kk-category-link {
  min-height: 46px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(176, 38, 255, 0.16), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  border-left: 2px solid rgba(217, 70, 239, 0.62);
}

.kk-category-link:hover,
.kk-category-link:focus-visible,
.kk-category-node.is-current > .kk-category-link {
  color: #fff;
  background: rgba(217, 70, 239, 0.14);
  border-color: rgba(250, 204, 21, 0.34);
  box-shadow: 0 0 22px rgba(176, 38, 255, 0.18);
}

.kk-category-node.is-ancestor > .kk-category-link {
  border-color: rgba(217, 70, 239, 0.28);
}

.kk-category-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kk-category-count {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  color: rgba(255, 244, 249, 0.78);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  background: rgba(5, 2, 10, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.kk-category-children {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 8px 0 0 15px;
  margin: 0 0 2px;
}

.kk-category-children::before {
  position: absolute;
  top: 10px;
  bottom: 8px;
  left: 4px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(217, 70, 239, 0.42), rgba(236, 182, 206, 0.05));
}

.kk-category-children .kk-category-link {
  min-height: 36px;
  padding: 8px 10px;
  color: rgba(203, 213, 225, 0.86);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.022);
}

.kk-search-form {
  position: relative;
}

.kk-search-form input[type="search"] {
  width: 100%;
  min-height: 56px;
  padding: 16px 64px 16px 20px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 14px;
  outline: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.kk-search-form input[type="search"]::placeholder {
  color: #6b7280;
}

.kk-search-form input[type="search"]:focus {
  border-color: var(--kk-accent);
  box-shadow: 0 0 0 1px var(--kk-accent);
}

.kk-search-form button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  color: #d1d5db;
  place-items: center;
  transform: translateY(-50%);
  transition: border-color 0.5s ease, box-shadow 0.5s ease, color 0.5s ease, background 0.5s ease, transform 0.5s ease;
}

.kk-search-form button:hover,
.kk-search-form button:focus-visible {
  transform: translateY(-50%) translateY(-1px);
}

.kk-search-form button svg {
  position: relative;
  z-index: 1;
}

.kk-search-form:hover button,
.kk-search-form:focus-within button {
  color: #fff;
}

.kk-ranking-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.kk-ranking-list li + li {
  margin-top: 32px;
}

.kk-ranking-link {
  display: flex;
  align-items: center;
  gap: 20px;
}

.kk-rank-media {
  position: relative;
  flex: 0 0 auto;
}

.kk-rank-number {
  position: absolute;
  z-index: 2;
  top: -12px;
  left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #fde047, #ca8a04);
  border: 1px solid var(--kk-prime);
  border-radius: 0;
  color: #000;
  font-family: var(--kk-cinzel);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.kk-ranking-list li:not(:first-child) .kk-rank-number {
  top: -8px;
  left: -8px;
  width: 24px;
  height: 24px;
  background: #d1d5db;
  font-size: 12px;
  box-shadow: none;
}

.kk-rank-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  overflow: hidden;
  background: radial-gradient(circle, rgba(176, 38, 255, 0.44), transparent 52%), #0a0014;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--kk-cinzel);
  font-size: 22px;
  box-shadow: 0 15px 22px rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease;
}

.kk-ranking-list li:not(:first-child) .kk-rank-thumb {
  width: 64px;
  height: 64px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.42), transparent 52%), #120524;
  box-shadow: none;
}

.kk-ranking-link:hover .kk-rank-thumb,
.kk-ranking-link:focus-visible .kk-rank-thumb {
  border-color: rgba(176, 38, 255, 0.5);
}

.kk-rank-title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #d1d5db;
  font-family: var(--kk-serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s ease;
}

.kk-ranking-list li:not(:first-child) .kk-rank-title {
  color: #9ca3af;
  line-height: 1.75;
}

.kk-ranking-link:hover .kk-rank-title,
.kk-ranking-link:focus-visible .kk-rank-title {
  color: var(--kk-accent-light);
}

.kk-rank-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: #6b7280;
  font-size: 12px;
}

.kk-rank-meta .star {
  color: var(--kk-accent);
}

.kk-rank-meta .views {
  margin-left: 8px;
  font-family: var(--kk-cinzel);
}

.kk-rank-excerpt {
  display: -webkit-box;
  margin-top: 8px;
  overflow: hidden;
  color: #7f8794;
  font-size: 12px;
  line-height: 1.75;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.kk-sidebar-sticky {
  position: sticky;
  top: 48px;
  z-index: 20;
}

.kk-choice-frame {
  position: relative;
  padding: 1px;
  overflow: hidden;
  border-radius: 0;
}

.kk-choice-frame::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, var(--kk-accent), var(--kk-prime), var(--kk-amber));
  opacity: 0.6;
  animation: kk-soft-pulse 2s ease-in-out infinite;
  transition: opacity 0.7s ease;
}

.kk-choice-frame:hover::before,
.kk-choice-frame:focus-within::before {
  opacity: 1;
}

@keyframes kk-soft-pulse {
  0%,
  100% {
    opacity: 0.52;
  }

  50% {
    opacity: 0.82;
  }
}

.kk-choice-card {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px;
  background: rgba(5, 2, 10, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.kk-choice-eyebrow {
  margin: 0 0 16px;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
}

.kk-choice-title {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.kk-choice-media {
  position: relative;
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 0;
}

.kk-choice-placeholder,
.kk-choice-media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 1s ease;
}

.kk-choice-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(216, 180, 254, 0.42), transparent 50%), #1a0b2e;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--kk-cinzel);
  font-size: 34px;
  letter-spacing: 0.08em;
  padding-left: 0.08em;
}

.kk-choice-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(176, 38, 255, 0.2);
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 0.5s ease;
}

.kk-choice-media:hover img,
.kk-choice-media:focus-visible img,
.kk-choice-media:hover .kk-choice-placeholder,
.kk-choice-media:focus-visible .kk-choice-placeholder {
  transform: scale(1.1);
}

.kk-choice-media:hover::after,
.kk-choice-media:focus-visible::after {
  opacity: 1;
}

.kk-choice-text {
  margin: 0 0 32px;
  color: #9ca3af;
  font-family: var(--kk-serif);
  font-size: 14px;
  line-height: 2;
  text-align: center;
}

.kk-choice-button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  padding: 16px 18px;
  font-size: 12px;
}

.kk-footer {
  position: relative;
  z-index: 10;
  padding: 112px 0 52px;
  margin-top: 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(176, 38, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(5, 2, 10, 0), rgba(5, 2, 10, 0.88) 18%, var(--kk-prime) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.kk-footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(960px, calc(100% - 32px));
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.64), rgba(var(--kk-glimmer-highlight-rgb), 0.42), rgba(217, 70, 239, 0.64), transparent);
  box-shadow: 0 0 34px rgba(176, 38, 255, 0.28);
  transform: translateX(-50%);
}

.kk-footer::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, black, transparent 72%);
  mask-image: linear-gradient(180deg, black, transparent 72%);
  opacity: 0.18;
  pointer-events: none;
}

.kk-footer-inner {
  position: relative;
  z-index: 1;
  width: min(var(--kk-max), calc(100% - 32px));
  margin: 0 auto;
}

.kk-footer-ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 0 auto 52px;
  color: rgba(217, 70, 239, 0.72);
}

.kk-footer-ornament span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.42), transparent);
}

.kk-footer-ornament span:nth-child(2) {
  width: 7px;
  height: 7px;
  background: rgba(var(--kk-glimmer-highlight-rgb), 0.84);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(var(--kk-glimmer-highlight-rgb), 0.36);
}

.kk-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 58px;
  margin-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.kk-footer-brand {
  display: grid;
  gap: 10px;
  text-align: left;
}

.kk-footer-eyebrow {
  margin: 0;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.kk-footer-logo {
  display: inline-block;
  margin: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.kk-footer-tagline {
  margin: 0;
  color: #9ca3af;
  font-family: var(--kk-serif);
  font-size: 13px;
  line-height: 1.9;
}

.kk-footer-nav,
.kk-footer-policy-nav {
  min-width: 0;
}

.kk-footer-menu,
.kk-footer-policy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--kk-serif);
  font-size: 12px;
}

.kk-footer-menu a,
.kk-footer-policy a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  overflow: hidden;
  color: #a8b0c0;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.kk-footer-menu a::before,
.kk-footer-policy a::before {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 70, 239, 0.7), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.kk-footer-menu a:hover,
.kk-footer-menu a:focus-visible,
.kk-footer-policy a:hover,
.kk-footer-policy a:focus-visible {
  color: #fff;
  background: rgba(176, 38, 255, 0.08);
  border-color: rgba(217, 70, 239, 0.24);
  transform: translateY(-1px);
}

.kk-footer-menu a:hover::before,
.kk-footer-menu a:focus-visible::before,
.kk-footer-policy a:hover::before,
.kk-footer-policy a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.kk-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #64748b;
  font-size: 12px;
  text-align: center;
}

.kk-footer-bottom p {
  margin: 0;
}

.kk-main-entry {
  max-width: var(--kk-max);
  min-height: auto;
}

.kk-entry-layout {
  display: grid;
  gap: 42px;
  align-items: start;
  width: 100%;
}

.kk-entry-layout--single {
  max-width: 880px;
  margin: 0 auto;
}

.kk-entry-layout--sidebar {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 31.5%);
}

.kk-entry-primary {
  min-width: 0;
}

.kk-entry-layout--sidebar .kk-entry {
  max-width: none;
  margin: 0;
}

.kk-entry-layout--sidebar .kk-sidebar {
  align-self: start;
}

.kk-breadcrumbs {
  max-width: 880px;
  margin: 0 auto 22px;
  color: rgba(203, 213, 225, 0.68);
  font-family: var(--kk-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.kk-entry-layout--sidebar .kk-breadcrumbs {
  max-width: none;
  margin-inline: 0;
}

.kk-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kk-breadcrumbs li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.kk-breadcrumbs li:not(:last-child)::after {
  width: 4px;
  height: 4px;
  content: "";
  background: rgba(var(--kk-glimmer-highlight-rgb), 0.74);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(var(--kk-glimmer-highlight-rgb), 0.28);
}

.kk-breadcrumbs a,
.kk-breadcrumbs span {
  display: inline-block;
  max-width: min(52vw, 360px);
  overflow: hidden;
  font-family: var(--kk-serif);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kk-breadcrumbs a {
  color: rgba(245, 230, 255, 0.82);
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.kk-breadcrumbs a:hover,
.kk-breadcrumbs a:focus-visible {
  color: #fff;
  text-shadow: 0 0 18px rgba(217, 70, 239, 0.34);
}

.kk-breadcrumbs [aria-current="page"] {
  color: rgba(203, 213, 225, 0.82);
}

.kk-entry {
  position: relative;
  max-width: 880px;
  padding: 56px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
}

.kk-entry::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 8% 0%, rgba(176, 38, 255, 0.13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 180px);
  pointer-events: none;
}

.kk-entry > * {
  position: relative;
}

.kk-entry-header {
  padding-bottom: 34px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
}

.kk-entry-kicker {
  margin-bottom: 18px;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 11px;
  text-transform: uppercase;
}

.kk-entry-title {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.35;
}

.kk-entry-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.kk-entry-meta {
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 12px;
  letter-spacing: 0.15em;
}

.kk-entry-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.kk-entry-terms a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: #cbd5e1;
  font-size: 12px;
  background: rgba(176, 38, 255, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.18);
  border-radius: 0;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.kk-entry-terms a:hover,
.kk-entry-terms a:focus-visible {
  color: #fff;
  background: rgba(217, 70, 239, 0.16);
  border-color: rgba(250, 204, 21, 0.34);
}

.kk-entry-thumbnail {
  position: relative;
  margin: 0 0 40px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.kk-entry-thumbnail img {
  width: 100%;
  height: auto;
  transform: scale(1.02);
  will-change: transform;
}

.kk-entry-thumbnail::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(5, 2, 10, 0.38));
  pointer-events: none;
}

.kk-entry-content {
  color: #d1d5db;
  font-family: var(--kk-serif);
  font-size: 17px;
  line-height: 2.15;
}

.kk-entry-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.kk-entry-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.kk-post-toc {
  position: relative;
  padding: 24px;
  margin: 0 0 44px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(176, 38, 255, 0.13), rgba(250, 204, 21, 0.055)),
    rgba(8, 3, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(176, 38, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.28);
  font-family: var(--kk-serif);
}

.kk-post-toc::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 12% 0%, rgba(217, 70, 239, 0.18), transparent 34%);
  pointer-events: none;
}

.kk-post-toc-head {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.kk-post-toc-kicker {
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kk-post-toc h2 {
  margin: 0;
  color: #f8fafc;
  font-family: var(--kk-serif);
  font-size: 18px;
  font-weight: 500;
}

.kk-post-toc-list {
  position: relative;
  display: grid;
  gap: 8px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.kk-post-toc-list.is-two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kk-post-toc-item a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  min-height: 38px;
  padding: 8px 10px;
  color: #cbd5e1;
  font-family: var(--kk-serif);
  text-decoration: none;
  text-underline-offset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012));
  border: 0;
  border-radius: 0;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.kk-post-toc-item a:hover,
.kk-post-toc-item a:focus-visible {
  color: #fff;
  background: rgba(176, 38, 255, 0.1);
  box-shadow: inset 2px 0 0 rgba(217, 70, 239, 0.62), 0 10px 24px rgba(0, 0, 0, 0.14);
  text-decoration: none;
  transform: translateX(2px);
}

.kk-post-toc-index {
  color: rgba(250, 204, 21, 0.9);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  line-height: 1.8;
}

.kk-post-toc-text {
  font-family: var(--kk-serif);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.kk-post-toc-item.is-level-3 a {
  color: #a8b0c0;
}

.kk-post-toc-item.is-level-3 .kk-post-toc-text {
  font-size: 12px;
}

.kk-entry-content > *:first-child {
  margin-top: 0;
}

.kk-entry-content > *:last-child {
  margin-bottom: 0;
}

.kk-entry-content a {
  color: var(--kk-accent-light);
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.kk-entry-content .kk-post-toc a,
.kk-entry-content .kk-post-toc a:hover,
.kk-entry-content .kk-post-toc a:focus-visible {
  text-decoration: none;
}

.kk-entry-content .wp-block-button__link,
.kk-entry-content .wp-element-button,
.kk-entry-content .wp-block-search__button,
.kk-entry-content .wp-block-button__link:hover,
.kk-entry-content .wp-block-button__link:focus-visible,
.kk-entry-content .wp-element-button:hover,
.kk-entry-content .wp-element-button:focus-visible,
.kk-entry-content .wp-block-search__button:hover,
.kk-entry-content .wp-block-search__button:focus-visible {
  color: #fff;
  text-decoration: none;
}

.kk-entry-content img {
  height: auto;
  border-radius: 0;
}

.kk-entry-content blockquote {
  position: relative;
  padding: 24px 28px;
  margin: 40px 0;
  background: rgba(176, 38, 255, 0.08);
  border-left: 3px solid var(--kk-accent);
  border-radius: 0;
  color: #f3e8ff;
}

.kk-entry-content :where(h2, h3, h4) {
  color: #fff;
  font-family: var(--kk-serif);
  line-height: 1.55;
}

.kk-entry-content h2 {
  position: relative;
  padding-left: 22px;
  margin-top: 58px;
  margin-bottom: 20px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.kk-entry-content h2::before {
  position: absolute;
  top: 0.36em;
  left: 0;
  width: 3px;
  height: 1.1em;
  content: "";
  background: linear-gradient(180deg, var(--kk-accent-light), var(--kk-glimmer-highlight));
  border-radius: 0;
  box-shadow: 0 0 18px rgba(var(--kk-glimmer-highlight-rgb), 0.22);
}

.kk-entry-content h3 {
  margin-top: 42px;
  margin-bottom: 14px;
  color: #f3e8ff;
  font-size: clamp(20px, 1.8vw, 25px);
}

.kk-entry-content h4 {
  margin-top: 34px;
  margin-bottom: 12px;
  color: #e9d5ff;
  font-size: 18px;
}

.kk-entry-content p {
  margin: 1.25em 0;
}

.kk-entry-content :where(ul, ol) {
  display: grid;
  gap: 10px;
  padding: 22px 24px 22px 34px;
  margin: 32px 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0;
}

.kk-entry-content li::marker {
  color: var(--kk-accent-light);
}

.kk-entry-content table {
  width: 100%;
  margin: 36px 0;
  overflow: hidden;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
}

.kk-entry-content :where(th, td) {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kk-entry-content th {
  color: #fff;
  background: rgba(176, 38, 255, 0.12);
  font-weight: 600;
}

.kk-entry-content figcaption {
  margin-top: 10px;
  color: #8f98a8;
  font-size: 13px;
  text-align: center;
}

.kk-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.kk-page-links a,
.kk-page-links > span {
  min-width: 46px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: var(--kk-cinzel);
  font-size: 12px;
}

.kk-page-links > span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    rgba(176, 38, 255, 0.2);
  border-color: var(--kk-accent);
}

.kk-audio-showcase {
  position: relative;
  padding: 34px;
  margin: 46px 0;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 226, 235, 0.16), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(176, 38, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(176, 38, 255, 0.1), rgba(95, 10, 38, 0.16) 52%, rgba(var(--kk-glimmer-highlight-rgb), 0.045)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%),
    rgba(7, 3, 12, 0.88);
  border: 1px solid rgba(236, 182, 206, 0.18);
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 22px 44px rgba(255, 255, 255, 0.018),
    0 24px 62px rgba(0, 0, 0, 0.34);
}

.kk-audio-showcase::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.055) 14%, transparent 28%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 19px),
    radial-gradient(circle at 50% 120%, rgba(136, 19, 72, 0.24), transparent 40%);
  opacity: 0.48;
  pointer-events: none;
}

.kk-audio-showcase::after {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 34px rgba(176, 38, 255, 0.075);
  pointer-events: none;
}

.kk-audio-showcase.has-art {
  display: grid;
  grid-template-columns: minmax(128px, 180px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: stretch;
  padding: clamp(20px, 4vw, 30px);
  min-height: 300px;
}

.kk-audio-showcase.has-art::before {
  inset: -18%;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 226, 235, 0.16), transparent 26%),
    linear-gradient(112deg, rgba(5, 2, 10, 0.72), rgba(82, 16, 50, 0.38) 44%, rgba(5, 2, 10, 0.82)),
    var(--kk-audio-art-image);
  background-position: center;
  background-size: cover;
  filter: blur(12px) saturate(1.08) brightness(0.78);
  opacity: 0.36;
  transform: scale(1.09);
  transform-origin: center;
}

.kk-audio-body {
  position: relative;
  z-index: 1;
  align-self: center;
  min-width: 0;
}

.kk-audio-art {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 252px;
  margin: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(5, 2, 10, 0.9);
  border: 1px solid rgba(236, 182, 206, 0.28);
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 -22px 42px rgba(0, 0, 0, 0.28),
    0 22px 42px rgba(0, 0, 0, 0.26);
}

.kk-audio-art::before {
  position: absolute;
  inset: 9px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(255, 244, 249, 0.12);
  box-shadow: inset 0 0 30px rgba(176, 38, 255, 0.1);
  pointer-events: none;
}

.kk-audio-art::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 2, 10, 0.08), transparent 34%, rgba(5, 2, 10, 0.58)),
    linear-gradient(90deg, rgba(255, 244, 249, 0.08), transparent 16%, transparent 72%, rgba(217, 70, 239, 0.12));
  mix-blend-mode: screen;
  pointer-events: none;
}

.kk-audio-art__image {
  position: absolute;
  inset: -8%;
  z-index: 1;
  background-image: var(--kk-audio-art-image);
  background-position: center;
  background-size: cover;
  filter: saturate(1.04) contrast(1.03) brightness(0.9);
  transform: scale(1.06);
  transform-origin: center;
}

.kk-audio-art__shine {
  position: absolute;
  inset: -42%;
  z-index: 3;
  background: linear-gradient(108deg, transparent 34%, rgba(255, 244, 249, 0.16) 48%, transparent 62%);
  opacity: 0.74;
  transform: translateX(-32%) rotate(8deg);
  pointer-events: none;
}

body.kk-glimmer-enabled .kk-audio-showcase.has-art .kk-audio-art__shine {
  animation: kk-audio-shine 8.6s cubic-bezier(0.55, 0, 0.1, 1) infinite;
}

.kk-audio-showcase.motion-drift-up::before,
.kk-audio-showcase.motion-drift-up .kk-audio-art__image {
  animation: kk-audio-drift-up 18s ease-in-out infinite alternate;
}

.kk-audio-showcase.motion-drift-down::before,
.kk-audio-showcase.motion-drift-down .kk-audio-art__image {
  animation: kk-audio-drift-down 18s ease-in-out infinite alternate;
}

.kk-audio-showcase.motion-diagonal-up::before,
.kk-audio-showcase.motion-diagonal-up .kk-audio-art__image {
  animation: kk-audio-diagonal-up 20s ease-in-out infinite alternate;
}

.kk-audio-showcase.motion-diagonal-down::before,
.kk-audio-showcase.motion-diagonal-down .kk-audio-art__image {
  animation: kk-audio-diagonal-down 20s ease-in-out infinite alternate;
}

.kk-audio-showcase.motion-focus-in::before,
.kk-audio-showcase.motion-focus-in .kk-audio-art__image {
  animation: kk-audio-focus-in 21s ease-in-out infinite alternate;
}

.kk-audio-showcase.motion-focus-out::before,
.kk-audio-showcase.motion-focus-out .kk-audio-art__image {
  animation: kk-audio-focus-out 21s ease-in-out infinite alternate;
}

@keyframes kk-audio-drift-up {
  from {
    background-position: center 64%;
    transform: scale(1.08) translateY(2.2%);
  }

  to {
    background-position: center 36%;
    transform: scale(1.13) translateY(-2.2%);
  }
}

@keyframes kk-audio-drift-down {
  from {
    background-position: center 36%;
    transform: scale(1.13) translateY(-2.2%);
  }

  to {
    background-position: center 64%;
    transform: scale(1.08) translateY(2.2%);
  }
}

@keyframes kk-audio-diagonal-up {
  from {
    background-position: 36% 64%;
    transform: scale(1.08) translate(-1.8%, 2.2%);
  }

  to {
    background-position: 64% 36%;
    transform: scale(1.14) translate(1.8%, -2.2%);
  }
}

@keyframes kk-audio-diagonal-down {
  from {
    background-position: 64% 36%;
    transform: scale(1.14) translate(1.8%, -2.2%);
  }

  to {
    background-position: 36% 64%;
    transform: scale(1.08) translate(-1.8%, 2.2%);
  }
}

@keyframes kk-audio-focus-in {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.16);
  }
}

@keyframes kk-audio-focus-out {
  from {
    transform: scale(1.16);
  }

  to {
    transform: scale(1.04);
  }
}

@keyframes kk-audio-shine {
  0%,
  22% {
    transform: translateX(-34%) rotate(8deg);
  }

  68%,
  100% {
    transform: translateX(34%) rotate(8deg);
  }
}

.kk-audio-kicker {
  margin: 0 0 8px;
  color: #f0c4d2;
  font-family: var(--kk-cinzel);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kk-audio-title {
  position: relative;
  width: fit-content;
  max-width: min(100%, 720px);
  margin: 0 0 20px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

.kk-audio-title::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(217, 70, 239, 0.64), rgba(var(--kk-glimmer-highlight-rgb), 0.36), transparent);
  box-shadow: 0 0 18px rgba(176, 38, 255, 0.18);
}

.kk-audio-title-text {
  display: inline;
  padding-right: 0.04em;
  background-image: linear-gradient(105deg, #fff8fb 0%, #f7e8ff 22%, #dca7ff 38%, var(--kk-glimmer-highlight) 48%, var(--kk-glimmer-sheen) 52%, #f0a7da 62%, #fff8fb 100%);
  background-size: 240% 100%;
  text-shadow: 0 0 22px rgba(176, 38, 255, 0.28), 0 0 46px rgba(var(--kk-glimmer-highlight-rgb), 0.08);
}

body.kk-glimmer-enabled .kk-audio-title-text {
  animation: kk-glimmer-sweep 8.8s cubic-bezier(0.55, 0, 0.1, 1) infinite;
  will-change: background-position;
}

body.kk-breathing-glow-enabled .kk-audio-title {
  animation: kk-breathing-glow 8s ease-in-out infinite;
  will-change: filter;
}

.kk-audio-showcase.has-file-title .kk-audio-kicker {
  margin-bottom: 10px;
}

.kk-audio-note {
  margin: -6px 0 22px;
  max-width: 640px;
  color: #c3b8c5;
  font-family: var(--kk-serif);
  font-size: 13px;
  line-height: 1.9;
}

.kk-entry-content .wp-block-audio,
.kk-entry-content .mejs-container,
.kk-entry-content .wp-audio-shortcode {
  max-width: 100%;
}

.kk-entry-content .wp-block-audio {
  margin: 36px 0;
}

.kk-entry-content .wp-block-audio audio {
  display: block;
  width: 100%;
  min-height: 64px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    rgba(5, 2, 10, 0.86);
  border: 1px solid rgba(236, 182, 206, 0.24);
  border-radius: 0;
  color-scheme: dark;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 14px 34px rgba(0, 0, 0, 0.24);
}

.kk-entry-content .wp-block-audio figcaption {
  color: #8f98a8;
  font-family: var(--kk-serif);
}

.kk-entry-content .mejs-container {
  width: 100% !important;
  min-width: 0 !important;
  height: 68px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 20%, rgba(255, 226, 235, 0.12), transparent 24%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(176, 38, 255, 0.12) 58%, transparent 86%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), transparent 42%),
    rgba(5, 2, 10, 0.9) !important;
  border: 1px solid rgba(236, 182, 206, 0.24);
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 -18px 34px rgba(0, 0, 0, 0.22),
    0 16px 38px rgba(0, 0, 0, 0.3);
}

.kk-entry-content .mejs-container,
.kk-entry-content .mejs-container * {
  font-family: var(--kk-cinzel);
}

.kk-entry-content .mejs-container .mejs-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 68px;
  padding: 0 16px;
  background:
    linear-gradient(100deg, transparent, rgba(176, 38, 255, 0.13), rgba(var(--kk-glimmer-highlight-rgb), 0.09), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 26px),
    transparent !important;
  box-sizing: border-box;
}

.kk-entry-content .mejs-controls .mejs-button {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
}

.kk-entry-content .mejs-controls .mejs-button > button {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 46%),
    rgba(20, 6, 24, 0.82) !important;
  background-image: none !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: 1px solid rgba(236, 182, 206, 0.3);
  border-radius: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    inset 0 -12px 20px rgba(176, 38, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.22);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.kk-entry-content .mejs-controls .mejs-button > button::before,
.kk-entry-content .mejs-controls .mejs-button > button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
}

.kk-entry-content .mejs-controls .mejs-play > button::before,
.kk-entry-content .mejs-controls .mejs-replay > button::before {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff4f8;
  filter: drop-shadow(0 0 8px rgba(236, 182, 206, 0.48));
  transform: translate(-38%, -50%);
}

.kk-entry-content .mejs-controls .mejs-pause > button::before,
.kk-entry-content .mejs-controls .mejs-pause > button::after {
  width: 5px;
  height: 18px;
  background: #fff4f8;
  box-shadow: 0 0 10px rgba(236, 182, 206, 0.44);
  transform: translate(-8px, -50%);
}

.kk-entry-content .mejs-controls .mejs-pause > button::after {
  transform: translate(3px, -50%);
}

.kk-entry-content .mejs-controls .mejs-volume-button > button::before {
  width: 10px;
  height: 14px;
  background: #fff4f8;
  clip-path: polygon(0 34%, 42% 34%, 100% 0, 100% 100%, 42% 66%, 0 66%);
  filter: drop-shadow(0 0 8px rgba(236, 182, 206, 0.42));
  transform: translate(-54%, -50%);
}

.kk-entry-content .mejs-controls .mejs-volume-button > button::after {
  width: 11px;
  height: 16px;
  border: 2px solid #fff4f8;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left: 0;
  border-radius: 0 50% 50% 0;
  opacity: 0.86;
  transform: translate(-6%, -50%);
}

.kk-entry-content .mejs-controls .mejs-unmute > button::after {
  width: 18px;
  height: 2px;
  background: #fff4f8;
  border: 0;
  opacity: 1;
  transform: translate(-8%, -50%) rotate(-42deg);
}

.kk-entry-content .mejs-controls .mejs-button > button:hover,
.kk-entry-content .mejs-controls .mejs-button > button:focus-visible {
  background-color: rgba(88, 18, 55, 0.64);
  border-color: rgba(255, 226, 235, 0.64);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.075),
    0 0 24px rgba(176, 38, 255, 0.28),
    0 12px 28px rgba(0, 0, 0, 0.26);
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.kk-entry-content .mejs-controls .mejs-time {
  display: flex;
  align-items: center;
  width: auto;
  min-width: 46px;
  height: auto;
  padding: 0 4px;
  color: rgba(249, 239, 244, 0.78);
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.kk-entry-content .mejs-controls .mejs-time span {
  color: inherit;
}

.kk-entry-content .mejs-controls .mejs-time-rail {
  flex: 1 1 auto;
  min-width: 120px;
  height: 28px;
  padding-top: 0;
  margin: 0 8px;
}

.kk-entry-content .mejs-controls .mejs-time-rail span {
  border-radius: 0;
}

.kk-entry-content .mejs-controls .mejs-time-total {
  height: 8px;
  margin: 10px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent),
    rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.kk-entry-content .mejs-controls .mejs-time-loaded {
  height: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.kk-entry-content .mejs-controls .mejs-time-current {
  height: 8px;
  background: linear-gradient(90deg, #8d174f, #d9467c 48%, #ffe4ed);
  box-shadow: 0 0 18px rgba(217, 70, 128, 0.36);
}

.kk-entry-content .mejs-controls .mejs-time-handle-content {
  top: -7px;
  width: 5px;
  height: 22px;
  background: #fff4f8;
  border: 1px solid rgba(236, 182, 206, 0.78);
  border-radius: 0;
  box-shadow: 0 0 18px rgba(217, 70, 128, 0.5);
}

.kk-entry-content .mejs-controls .mejs-horizontal-volume-slider {
  position: relative;
  display: flex;
  align-items: center;
  width: 82px;
  height: 28px;
  overflow: hidden;
}

.kk-entry-content .mejs-controls .mejs-horizontal-volume-total,
.kk-entry-content .mejs-controls .mejs-horizontal-volume-current {
  position: absolute !important;
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  height: 7px !important;
  margin: 0 !important;
  border-radius: 0;
  transform: translateY(-50%);
}

.kk-entry-content .mejs-controls .mejs-horizontal-volume-total {
  z-index: 1;
  width: 100% !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent),
    rgba(255, 255, 255, 0.105);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.045),
    0 0 0 1px rgba(0, 0, 0, 0.16);
}

.kk-entry-content .mejs-controls .mejs-horizontal-volume-current {
  z-index: 2;
  max-width: 100%;
  background: linear-gradient(90deg, #9f1d5a, #d9467c 54%, #fff1f6);
  box-shadow: 0 0 16px rgba(217, 70, 128, 0.36);
}

.kk-entry-content .mejs-controls .mejs-horizontal-volume-handle {
  position: absolute !important;
  top: 50% !important;
  z-index: 3;
  width: 4px;
  height: 18px;
  margin-top: 0 !important;
  background: #fff4f8;
  border: 1px solid rgba(236, 182, 206, 0.7);
  border-radius: 0;
  box-shadow: 0 0 14px rgba(217, 70, 128, 0.46);
  transform: translateY(-50%);
}

.kk-entry-content .kkcg-audio-gate {
  padding: 1px;
  background:
    linear-gradient(135deg, rgba(255, 226, 235, 0.16), rgba(176, 38, 255, 0.26), rgba(96, 8, 44, 0.24)),
    rgba(5, 2, 10, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.kk-entry-content .kkcg-audio-gate__player {
  padding: 14px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.06), transparent 28%),
    rgba(6, 2, 11, 0.68);
}

.kk-entry-content .kkcg-audio-gate__hint {
  margin: 0;
  padding: 0 16px 14px;
  color: #bcaebe;
  font-family: var(--kk-serif);
  font-size: 12px;
  line-height: 1.8;
}

.kk-entry-content .kkcg-audio-gate.is-locked .kkcg-audio-gate__player {
  filter: saturate(0.72) brightness(0.7);
}

.kk-entry-content .kkcg-audio-gate__panel .kkcg-gate {
  margin: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  box-shadow: none;
}

.kk-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 880px;
  margin: 32px auto 0;
}

.kk-post-nav a {
  position: relative;
  display: block;
  min-height: 96px;
  padding: 22px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(15, 8, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 0;
  color: #fff;
  font-family: var(--kk-serif);
  line-height: 1.7;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.kk-post-nav a::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(176, 38, 255, 0.16), rgba(var(--kk-glimmer-highlight-rgb), 0.1), transparent);
  transform: translateX(-120%) skewX(-18deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.kk-post-nav a::after {
  position: absolute;
  inset: 3px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.kk-post-nav a:hover,
.kk-post-nav a:focus-visible {
  border-color: rgba(176, 38, 255, 0.45);
  transform: translateY(-2px);
}

.kk-post-nav a:hover::before,
.kk-post-nav a:focus-visible::before {
  transform: translateX(120%) skewX(-18deg);
}

.kk-post-nav span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 11px;
  text-transform: uppercase;
}

.kk-post-nav a {
  text-decoration: none;
}

.kk-related {
  position: relative;
  max-width: 880px;
  padding: 30px;
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 0;
}

.kk-entry-layout--sidebar .kk-related,
.kk-entry-layout--sidebar .kk-post-nav {
  max-width: none;
  margin-inline: 0;
}

.kk-related::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 70, 239, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(250, 204, 21, 0.045), transparent 42%);
  pointer-events: none;
}

.kk-related > * {
  position: relative;
}

.kk-related-head {
  display: grid;
  gap: 8px;
  max-width: 680px;
  margin-bottom: 24px;
}

.kk-related-kicker {
  margin: 0;
  color: var(--kk-accent-light);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  text-transform: uppercase;
}

.kk-related h2 {
  margin: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.45;
}

.kk-related-head p:not(.kk-related-kicker) {
  margin: 0;
  color: #a8b0c0;
  font-family: var(--kk-serif);
  font-size: 14px;
  line-height: 1.9;
}

.kk-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.kk-related-card {
  min-width: 0;
}

.kk-related-card a {
  display: grid;
  height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: rgba(8, 3, 16, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 0;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.kk-related-card a:hover,
.kk-related-card a:focus-visible {
  background: rgba(18, 8, 32, 0.72);
  border-color: rgba(217, 70, 239, 0.34);
  transform: translateY(-3px);
}

.kk-related-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(250, 204, 21, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(176, 38, 255, 0.2), rgba(5, 2, 10, 0.9));
}

.kk-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.5s ease;
}

.kk-related-card a:hover .kk-related-media img,
.kk-related-card a:focus-visible .kk-related-media img {
  transform: scale(1.06);
}

.kk-related-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(5, 2, 10, 0.38));
  pointer-events: none;
}

.kk-related-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--kk-cinzel);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kk-related-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.kk-related-date {
  color: rgba(var(--kk-glimmer-highlight-rgb), 0.82);
  font-family: var(--kk-cinzel);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.kk-related-title {
  display: -webkit-box;
  overflow: hidden;
  color: #f8fafc;
  font-family: var(--kk-serif);
  font-size: 16px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.kk-related-excerpt {
  display: -webkit-box;
  overflow: hidden;
  color: #9ca3af;
  font-family: var(--kk-serif);
  font-size: 12px;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.kk-comments {
  margin-top: 32px;
  font-family: var(--kk-serif);
}

.kk-comments-title,
.kk-comments .comment-reply-title {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
}

.kk-comments .comment-reply-title small {
  display: inline-block;
  margin-left: 10px;
  font-family: var(--kk-serif);
  font-size: 12px;
  font-weight: 400;
}

.kk-comments .comment-notes,
.kk-comments .logged-in-as,
.kk-comments .required-field-message,
.kk-comments .comment-form-cookies-consent,
.kk-comments .comment-form-comment,
.kk-comments .comment-form-author,
.kk-comments .comment-form-email,
.kk-comments .comment-form-url {
  color: #b9aebb;
  font-family: var(--kk-serif);
  font-size: 14px;
  line-height: 1.9;
}

.kk-comments .comment-notes {
  margin: 0 0 18px;
}

.kk-comments .required {
  color: #eab4c5;
  font-family: var(--kk-serif);
}

.kk-comment-list {
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.kk-comment-list .comment-body {
  padding: 24px 0;
  color: #d1c7d3;
  font-family: var(--kk-serif);
  line-height: 1.9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.kk-comment-form label {
  display: block;
  margin-bottom: 8px;
  color: #d1d5db;
  font-family: var(--kk-serif);
}

.kk-comment-form input[type="text"],
.kk-comment-form input[type="email"],
.kk-comment-form input[type="url"],
.kk-comment-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 15px;
  line-height: 1.8;
}

.kk-comment-submit {
  min-height: 54px;
  padding: 0 28px;
}

.kk-comment-form input[type="submit"],
.kk-entry-content input[type="submit"],
.kk-widget input[type="submit"] {
  min-height: 48px;
  padding: 0 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(5, 2, 10, 0.54);
  border: 1px solid rgba(176, 38, 255, 0.4);
  border-radius: 0;
  color: #fff;
  font-family: var(--kk-serif);
}

.kk-contact-intro {
  margin: 0 0 clamp(22px, 4vw, 34px);
  color: #d9cfdc;
  font-family: var(--kk-serif);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.95;
}

.kk-entry-content .wpcf7 {
  position: relative;
  margin-top: clamp(24px, 5vw, 44px);
  padding: clamp(22px, 5vw, 42px);
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), transparent 34%),
    radial-gradient(circle at 14% 0%, rgba(176, 38, 255, 0.16), transparent 34%),
    rgba(8, 4, 12, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 22px 54px rgba(0, 0, 0, 0.24);
}

.kk-entry-content .wpcf7::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(236, 182, 206, 0.42), rgba(176, 38, 255, 0.32), transparent);
}

.kk-contact-form {
  display: grid;
  gap: 20px;
  font-family: var(--kk-serif);
}

.kk-contact-form p {
  margin: 0;
}

.kk-contact-form br {
  display: none;
}

.kk-contact-form__lead {
  margin: 0;
  color: #cfc3d1;
  font-family: var(--kk-serif);
  font-size: 14px;
  line-height: 1.9;
}

.kk-contact-field {
  display: grid;
  gap: 8px;
  margin: 0;
}

.kk-contact-field .wpcf7-form-control-wrap {
  display: block;
}

.kk-contact-label {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #f8fafc;
  font-family: var(--kk-serif);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.kk-contact-optional,
.kk-contact-required {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 0;
  font-family: var(--kk-serif);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.kk-contact-optional {
  color: #b8adbf;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.kk-contact-required {
  color: #ffe9f0;
  background: rgba(176, 38, 255, 0.18);
  border: 1px solid rgba(236, 182, 206, 0.3);
}

.kk-contact-help {
  display: block;
  color: #9f94a5;
  font-family: var(--kk-serif);
  font-size: 13px;
  line-height: 1.7;
}

.kk-entry-content .wpcf7 input[type="text"],
.kk-entry-content .wpcf7 input[type="email"],
.kk-entry-content .wpcf7 textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-family: var(--kk-serif);
  font-size: 15px;
  line-height: 1.8;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.kk-entry-content .wpcf7 textarea {
  min-height: 190px;
  resize: vertical;
}

.kk-entry-content .wpcf7 input::placeholder,
.kk-entry-content .wpcf7 textarea::placeholder {
  color: rgba(223, 214, 226, 0.46);
}

.kk-entry-content .wpcf7 input[type="text"]:focus,
.kk-entry-content .wpcf7 input[type="email"]:focus,
.kk-entry-content .wpcf7 textarea:focus {
  background: rgba(10, 3, 16, 0.66);
  border-color: rgba(236, 182, 206, 0.48);
  box-shadow: 0 0 0 3px rgba(176, 38, 255, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  outline: none;
}

.kk-contact-action {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.kk-entry-content .wpcf7 .kk-contact-submit {
  min-height: 54px;
  padding: 0 34px;
  color: #fff;
  background:
    linear-gradient(100deg, transparent, rgba(176, 38, 255, 0.24), rgba(var(--kk-glimmer-highlight-rgb), 0.16), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(5, 2, 10, 0.72);
  background-size: 220% 100%, auto, auto;
  border: 1px solid rgba(176, 38, 255, 0.48);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045), 0 16px 34px rgba(0, 0, 0, 0.26);
  font-family: var(--kk-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background-position 0.55s ease, transform 0.4s ease;
}

.kk-entry-content .wpcf7 .kk-contact-submit:hover,
.kk-entry-content .wpcf7 .kk-contact-submit:focus-visible {
  background-position: 100% 50%, 0 0, 0 0;
  border-color: rgba(236, 182, 206, 0.66);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3), 0 0 26px rgba(176, 38, 255, 0.18);
  transform: translateY(-2px);
}

.kk-entry-content .wpcf7 .wpcf7-spinner {
  margin: 0;
  background-color: rgba(236, 182, 206, 0.72);
}

.kk-entry-content .wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #f6b8c8;
  font-family: var(--kk-serif);
  font-size: 13px;
  line-height: 1.6;
}

.kk-entry-content .wpcf7 form .wpcf7-response-output {
  margin: 22px 0 0;
  padding: 14px 16px;
  color: #f8eef3;
  background: rgba(20, 8, 18, 0.72);
  border: 1px solid rgba(236, 182, 206, 0.24);
  border-radius: 0;
  font-family: var(--kk-serif);
  font-size: 14px;
  line-height: 1.8;
}

.kk-empty {
  padding: 40px;
  border-radius: 0;
  text-align: center;
}

.kk-empty h3 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--kk-serif);
  font-size: 24px;
}

.kk-empty p {
  margin: 0;
  color: #9ca3af;
  font-family: var(--kk-serif);
}

@media (max-width: 1100px) {
  .kk-layout-grid,
  .kk-entry-layout--sidebar {
    grid-template-columns: 1fr;
  }

  .kk-sidebar-sticky {
    position: relative;
    top: 0;
  }
}

@media (max-width: 900px) {
  .kk-site-header {
    padding-top: 12px;
  }

  body.admin-bar .kk-site-header {
    top: 46px;
  }

  .kk-site-header-inner {
    min-height: 60px;
    padding: 8px 8px 8px 16px;
  }

  .kk-primary-nav {
    display: none;
  }

  .kk-menu-toggle {
    display: grid;
  }
}

@media (max-width: 720px) {
  body,
  button,
  a,
  input,
  textarea,
  select {
    cursor: auto;
  }

  .kk-cursor-dot,
  .kk-cursor-outline {
    display: none;
  }

  .kk-site-header-inner {
    width: min(100% - 20px, var(--kk-max));
  }

  .kk-site-brand {
    min-width: 0;
  }

  .kk-site-brand-kicker {
    font-size: 8px;
  }

  .kk-site-brand-name {
    font-size: 19px;
  }

  .kk-menu-toggle {
    width: 46px;
    height: 46px;
  }

  .kk-mobile-drawer-panel {
    width: min(390px, calc(100vw - 16px));
    padding: 22px 18px;
  }

  .kk-mobile-drawer-head {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .kk-mobile-drawer-title {
    font-size: 24px;
  }

  .kk-mobile-menu {
    gap: 10px;
  }

  .kk-mobile-menu a {
    min-height: 58px;
    padding: 15px 16px;
    font-size: 16px;
  }

  .kk-hero-eyebrow {
    gap: 12px;
    font-size: 11px;
  }

  .kk-hero-eyebrow::before,
  .kk-hero-eyebrow::after {
    width: 40px;
  }

  .kk-track-super {
    letter-spacing: 0.36em;
    padding-left: 0.36em;
  }

  .kk-hero-copy {
    margin-bottom: 48px;
  }

  .kk-hero-bg {
    background-image: var(--kk-hero-bg-mobile);
    background-position: var(--kk-hero-bg-position-mobile);
  }

  .kk-hero-bg::after {
    opacity: var(--kk-hero-mask-strength-mobile);
  }

  .kk-hero-content::before {
    width: 104vw;
    height: min(520px, 70vh);
  }

  .kk-premium-btn {
    width: min(100%, 280px);
    padding-inline: 24px;
  }

  .kk-comment-submit,
  .kk-entry-content .wp-block-button__link,
  .kk-entry-content .wp-element-button,
  .kk-widget .wp-block-button__link,
  .kk-widget .wp-element-button {
    width: 100%;
  }

  .kk-main {
    padding: 96px 16px;
  }

  .kk-section-title {
    margin-bottom: 72px;
  }

  .kk-category-panel {
    padding: 22px 18px;
    margin-bottom: 28px;
  }

  .kk-category-panel-head {
    display: block;
  }

  .kk-category-panel h3 {
    margin-top: 6px;
    font-size: 22px;
  }

  .kk-category-tree--panel {
    grid-template-columns: 1fr;
  }

  .kk-category-link {
    min-height: 44px;
  }

  .kk-stories-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kk-story-body {
    padding: 24px;
  }

  .kk-story-excerpt {
    height: auto;
    opacity: 1;
    transform: none;
  }

  .kk-widget,
  .kk-choice-card,
  .kk-entry {
    padding: 24px;
  }

  .kk-entry-header {
    padding-bottom: 26px;
    margin-bottom: 32px;
  }

  .kk-entry-title {
    font-size: clamp(30px, 9vw, 46px);
  }

  .kk-post-toc {
    padding: 20px;
  }

  .kk-post-toc-head {
    display: block;
  }

  .kk-post-toc h2 {
    margin-top: 4px;
  }

  .kk-post-toc-list.is-two-column {
    grid-template-columns: 1fr;
  }

  .kk-audio-showcase {
    padding: 24px 18px;
  }

  .kk-audio-showcase.has-art {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: 18px;
  }

  .kk-audio-art {
    width: min(220px, 72vw);
    min-height: 270px;
    margin: 0 auto;
  }

  .kk-entry-content .mejs-container {
    height: 70px !important;
  }

  .kk-entry-content .mejs-container .mejs-controls {
    gap: 6px;
    height: 70px;
    padding: 0 10px;
  }

  .kk-entry-content .mejs-controls .mejs-button {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .kk-entry-content .mejs-controls .mejs-button > button {
    width: 44px;
    height: 44px;
  }

  .kk-entry-content .mejs-controls .mejs-time {
    font-size: 9px;
    letter-spacing: 0;
  }

  .kk-entry-content .mejs-controls .mejs-time-rail {
    min-width: 70px;
    margin: 0 3px;
  }

  .kk-entry-content .mejs-controls .mejs-volume-button,
  .kk-entry-content .mejs-controls .mejs-horizontal-volume-slider {
    display: none;
  }

  .kk-entry-content .kkcg-audio-gate__player {
    padding: 10px;
  }

  .kk-post-nav {
    grid-template-columns: 1fr;
  }

  .kk-related {
    padding: 24px;
  }

  .kk-related-grid {
    grid-template-columns: 1fr;
  }

  .kk-breadcrumbs a,
  .kk-breadcrumbs span {
    max-width: 74vw;
  }

  .kk-footer {
    padding: 84px 0 40px;
    margin-top: 72px;
  }

  .kk-footer-ornament {
    gap: 12px;
    margin-bottom: 36px;
  }

  .kk-footer-top,
  .kk-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .kk-footer-top {
    gap: 34px;
    padding-bottom: 40px;
    margin-bottom: 28px;
  }

  .kk-footer-brand {
    text-align: center;
  }

  .kk-footer-menu,
  .kk-footer-policy {
    justify-content: center;
    gap: 20px;
  }

  .kk-footer-menu a,
  .kk-footer-policy a {
    min-height: 38px;
    padding: 7px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .kk-stagger,
  .kk-entry-reveal,
  .kk-hero-elem {
    opacity: 1;
    transform: none;
  }

  .kk-entry-thumbnail img {
    transform: none !important;
  }

  .kk-audio-showcase.has-art::before,
  .kk-audio-art__image,
  .kk-audio-art__shine {
    animation: none !important;
  }

  .kk-hero-bg {
    transform: scale(1.02) !important;
  }

  .kk-reveal-cover {
    display: none;
  }
}
