/*
Theme Name: CAKE Glass
Theme URI: https://cakemods.com/
Author: CAKE
Description: A standalone frosted glass block theme for CAKE Mods.
Version: 1.0.46
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Text Domain: cake-glass
*/

/* Base */
:root {
  --cake-ink: #101929;
  --cake-muted: #5f4860;
  --cake-pink: #f05daf;
  --cake-pink-hot: #dc459c;
  --cake-pink-soft: #ffe1f2;
  --cake-purple: #8c1ac8;
  --cake-blue: #8bdff5;
  --cake-white: rgba(255, 255, 255, 0.74);
  --cake-white-strong: rgba(255, 255, 255, 0.9);
  --cake-white-soft: rgba(255, 255, 255, 0.52);
  --cake-stroke: rgba(255, 255, 255, 0.68);
  --cake-shadow: 0 26px 70px rgba(181, 39, 129, 0.23);
  --cake-shadow-soft: 0 16px 42px rgba(181, 39, 129, 0.15);
  --cake-shell-max: 1880px;
  --cake-page-max: 1560px;
  --cake-content-max: 1180px;
  --cake-radius-xl: 30px;
  --cake-radius-lg: 22px;
  --cake-radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.98), transparent 27rem),
    radial-gradient(circle at 88% 2%, rgba(255, 79, 184, 0.36), transparent 34rem),
    radial-gradient(circle at 82% 86%, rgba(140, 26, 200, 0.22), transparent 32rem),
    linear-gradient(135deg, #fff7fc 0%, #ffd8ed 43%, #efc8ff 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(255, 255, 255, 0.22) 16% 17%, transparent 17% 44%, rgba(255, 255, 255, 0.18) 44% 45%, transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 112px);
}

.wp-site-blocks {
  min-height: 100vh;
}

.wp-block-group,
.wp-block-columns,
.wp-block-column,
.wp-block-image,
.wp-block-cover {
  box-sizing: border-box;
  margin-top: 0;
}

:root :where(.is-layout-constrained) > :last-child {
  margin-block-end: 0;
}

a {
  color: #b10068;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

:where(.wp-site-blocks *:focus) {
  outline-color: rgba(255, 23, 143, 0.82);
  outline-offset: 4px;
  outline-style: solid;
  outline-width: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
  text-wrap: pretty;
}

li,
p {
  color: var(--cake-muted);
  font-weight: 700;
}

.more-link {
  display: block;
}

:where(pre) {
  overflow-x: auto;
}

/* Shared glass */
.glass-panel,
.is-style-glass-panel,
.has-base-background-color,
.wp-block-search,
.wp-block-query-pagination,
.wp-block-table,
.wp-block-cover:not(.banner),
.wp-block-post,
.wp-block-post-template > li,
.wp-block-query .wp-block-post,
.wp-block-latest-posts__list li,
.wp-block-media-text.has-background {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 236, 248, 0.58));
  border: 1px solid var(--cake-stroke);
  border-radius: var(--cake-radius-xl);
  box-shadow: var(--cake-shadow-soft);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
}

.has-base-background-color {
  color: var(--cake-ink);
  font-size: 0.95em;
}

/* Header */
.wp-site-blocks > header,
.wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
.wp-block-template-part:has(.cake-site-header) {
  width: min(calc(100vw - 24px), var(--cake-shell-max));
  margin: clamp(8px, 1.25vw, 18px) auto clamp(12px, 1.8vw, 26px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  z-index: 50;
}

.cake-site-header {
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(24px, 2.2vw, 34px);
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 196, 228, 0.48));
  box-shadow: 0 20px 55px rgba(181, 39, 129, 0.16);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.cake-site-header__inner {
  width: 100%;
  min-height: clamp(74px, 6vw, 96px);
  padding: clamp(0.72rem, 1.15vw, 1.05rem) clamp(1rem, 2.25vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.4vw, 2.75rem);
  flex-wrap: nowrap;
}

.cake-brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.72rem, 1vw, 1rem);
  flex: 0 0 auto;
  min-width: max-content;
}

.cake-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(64px, 5.4vw, 86px);
  height: clamp(52px, 4.6vw, 70px);
  text-decoration: none;
}

.cake-brand-mark img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.cake-site-title,
.cake-site-title a {
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.25vw + 1rem, 2.15rem);
  font-weight: 720;
  line-height: 1;
  margin: 0;
  text-decoration: none;
  white-space: nowrap;
}

.cake-site-header .wp-block-navigation {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}

.cake-site-header .wp-block-navigation__container,
.cake-site-header .wp-block-page-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.2rem, 0.45vw, 0.5rem);
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.cake-site-header .wp-block-navigation-item {
  margin: 0;
}

.cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
.cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border-radius: var(--cake-radius-pill);
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(0.98rem, 0.45vw + 0.85rem, 1.24rem);
  font-weight: 720;
  line-height: 1;
  padding: 0.68rem clamp(0.74rem, 1.05vw, 1.15rem);
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.cake-site-header .wp-block-navigation .wp-block-navigation-item__content:hover,
.cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:hover,
.cake-site-header .wp-block-navigation .wp-block-navigation-item__content:focus,
.cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:focus,
.cake-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
.cake-site-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 12px 26px rgba(181, 39, 129, 0.13);
  transform: translateY(-1px);
}

.cake-site-header .wp-block-navigation-item.has-child {
  position: relative;
}

.cake-site-header .wp-block-navigation__submenu-icon {
  width: 0.82em;
  height: 0.82em;
  margin-left: 0.18rem;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  position: relative;
  transform: none;
}

.cake-site-header .wp-block-navigation__submenu-icon svg {
  display: none;
}

.cake-site-header .wp-block-navigation__submenu-icon::before {
  content: "";
  width: 0.44em;
  height: 0.44em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.cake-site-header .wp-block-navigation__submenu-container {
  width: max-content;
  min-width: 220px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 251, 0.9));
  box-shadow: 0 20px 48px rgba(91, 42, 85, 0.17);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  overflow: hidden;
}

.cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item {
  width: 100%;
}

.cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  width: 100%;
  min-height: 42px;
  justify-content: flex-start;
  border-radius: 16px;
  padding: 0.68rem 0.82rem;
  font-size: clamp(0.95rem, 0.25vw + 0.86rem, 1.06rem);
  line-height: 1.15;
  color: var(--cake-ink);
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
}

.cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
.cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transform: none;
}

.wp-block-navigation__responsive-container.is-menu-open {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 238, 249, 0.9));
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
}

/* Layout */
.cake-main {
  width: min(calc(100vw - 32px), var(--cake-page-max));
  margin: clamp(1.25rem, 3.2vw, 3rem) auto;
}

.cake-page-content {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(1rem, 2.4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--cake-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 238, 249, 0.52));
  box-shadow: var(--cake-shadow-soft);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
}

.cake-page-content > * {
  max-width: min(100%, var(--cake-content-max));
  margin-left: auto;
  margin-right: auto;
}

.cake-page-content > .alignwide,
.cake-page-content > .wp-block-columns,
.cake-page-content > .community-filter,
.cake-page-content > .community-card {
  max-width: min(100%, 1420px);
}

.cake-page-content > .alignfull {
  max-width: none;
  width: 100%;
}

.cake-page-title,
.cake-archive-header {
  width: min(calc(100vw - 32px), var(--cake-page-max));
  margin: clamp(1.5rem, 4vw, 3rem) auto;
  text-align: center;
}

main > .wp-block-group,
main .entry-content > .wp-block-group,
.wp-site-blocks > main > .wp-block-group {
  width: min(100%, 1420px);
  margin-inline: auto;
  border-radius: var(--cake-radius-xl);
}

main .wp-block-group.has-background:not(.banner),
.glass-panel,
.is-style-glass-panel {
  padding: clamp(1rem, 2vw, 1.8rem);
}

/* Banners */
.banner,
.wp-block-heading.banner,
h1.banner,
h2.banner,
h3.banner,
.cake-front-page .cake-page-content > h1:first-child:not(.banner),
.cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  width: 100%;
  max-width: 100%;
  min-height: clamp(220px, 29dvh, 410px);
  margin: 0 auto clamp(1.25rem, 3vw, 2.25rem);
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  border-radius: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #ffffff;
  text-align: center;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 720;
  line-height: 0.95;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, rgba(255, 79, 184, 0.94), rgba(255, 23, 143, 0.92) 50%, rgba(140, 26, 200, 0.88));
  box-shadow: 0 26px 70px rgba(181, 39, 129, 0.25);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.banner :where(h1, h2, h3, p),
.wp-block-cover.banner :where(h1, h2, h3, p) {
  color: #ffffff;
  text-shadow: 0 3px 0 rgba(54, 24, 96, 0.18), 0 18px 42px rgba(54, 24, 96, 0.24);
}

.wp-block-group.banner,
.wp-block-cover.banner {
  overflow: hidden;
}

/* Buttons and forms */
:root :where(.wp-element-button, .wp-block-button__link),
main button,
main input[type="button"],
main input[type="submit"],
.community-filter button {
  cursor: pointer;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--cake-radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 720;
  line-height: 1.1;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 239, 249, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 30px rgba(181, 39, 129, 0.14);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

:root :where(.wp-element-button, .wp-block-button__link) {
  padding: 1rem 2.25rem;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.96), rgba(255, 23, 143, 0.94));
  box-shadow: 0 16px 34px rgba(181, 39, 129, 0.22);
}

:root :where(.wp-element-button:hover, .wp-block-button__link:hover),
main button:hover,
main input[type="button"]:hover,
main input[type="submit"]:hover,
.community-filter button:hover {
  transform: translateY(-1px) scale(1.02);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 225, 242, 0.9));
  color: var(--cake-ink);
  box-shadow: 0 18px 38px rgba(181, 39, 129, 0.18);
}

input,
textarea,
select,
.wp-block-search__input {
  width: auto;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

input:focus,
textarea:focus,
select:focus,
.wp-block-search__input:focus {
  border-color: rgba(255, 23, 143, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 79, 184, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

::placeholder {
  color: rgba(79, 96, 119, 0.72);
}

/* Community filters */
.community-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin: clamp(1rem, 3vw, 2rem) auto clamp(1.5rem, 3vw, 2.75rem);
  flex-wrap: wrap;
}

.community-filter button {
  padding: 0.95rem 1.8rem;
  font-size: clamp(0.98rem, 0.35vw + 0.9rem, 1.18rem);
}

.community-filter button.active,
.subreddit-button.active {
  color: #ffffff;
  background: linear-gradient(45deg, #f05daf, #dc459c);
}

.discord-button.active {
  color: #ffffff;
  background: linear-gradient(105deg, #4d54ff, #7b6cff);
}

.community-hidden {
  display: none;
}

/* Community cards */
.community-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: none;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) minmax(220px, 1.05fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(1rem, 2vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--cake-radius-xl);
  color: var(--cake-ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 238, 249, 0.56));
  box-shadow: var(--cake-shadow-soft);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
}

.community-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 46%);
  pointer-events: none;
}

.community-card .media {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  height: auto;
  justify-self: center;
  border-radius: clamp(22px, 2vw, 30px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 34px rgba(55, 92, 120, 0.2);
}

.community-card .media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-card .overlay-title {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 720;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: clamp(1.6rem, 3vw, 2.75rem);
  line-height: 0.95;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35), 0 10px 28px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}

.community-card .content {
  min-width: 0;
  display: grid;
  gap: clamp(0.8rem, 1.8vw, 1.35rem);
  align-content: center;
}

.community-card .heading {
  color: var(--cake-ink);
  font-size: clamp(1.65rem, 1.6vw + 1rem, 2.8rem);
  font-weight: 720;
  margin: 0;
  line-height: 1.05;
  font-family: "Lexend", system-ui, sans-serif;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.community-card .desc {
  color: var(--cake-muted);
  margin: 0;
  font-size: clamp(1rem, 0.35vw + 0.9rem, 1.18rem);
  font-weight: 700;
  line-height: 1.28;
}

.community-card .wp-block-button,
.community-card .wp-block-buttons {
  margin-top: clamp(0.4rem, 1vw, 0.8rem);
}

.community-card .wp-block-button__link {
  min-width: min(100%, 260px);
}

/* Block card grids */
.wp-block-columns {
  width: 100%;
  max-width: min(100%, 1420px);
  margin-inline: auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: stretch;
}

.wp-block-column {
  min-width: 0;
}

.wp-block-column:has(.wp-block-image),
.wp-block-group:has(.wp-block-image) {
  min-width: 0;
}

.wp-block-image {
  overflow: hidden;
  border-radius: var(--cake-radius-xl);
}

.wp-block-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: inherit;
}

.wp-block-image:has(img[alt*="Community" i]) {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 238, 249, 0.46));
}

.wp-block-image:has(img[alt*="Community" i]) img {
  height: 100%;
}

.wp-block-column h2,
.wp-block-column h3,
.wp-block-group:has(.wp-block-image) h2,
.wp-block-group:has(.wp-block-image) h3 {
  margin: 1rem 1rem 0.4rem;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.wp-block-column p,
.wp-block-group:has(.wp-block-image) p {
  margin-inline: 1rem;
}

/* Footer */
.cake-site-footer {
  width: min(calc(100vw - 24px), var(--cake-shell-max));
  margin: clamp(2rem, 5vw, 4rem) auto clamp(1rem, 2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--cake-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 231, 246, 0.55));
  box-shadow: var(--cake-shadow-soft);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
}

.cake-site-footer__inner {
  min-height: 58px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cake-site-footer p {
  margin: 0;
  color: var(--cake-muted);
  font-weight: 720;
}

/* Responsive */
@media (max-width: 1180px) {
  .cake-site-header__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .cake-brand {
    flex: 0 0 auto;
  }

  .cake-site-header .wp-block-navigation {
    flex: 1 1 520px;
  }

  .cake-site-header .wp-block-navigation__container,
  .cake-site-header .wp-block-page-list {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

@media (max-width: 860px) {
  .wp-site-blocks > header,
  .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
  .wp-block-template-part:has(.cake-site-header),
  .cake-site-footer {
    width: min(calc(100vw - 18px), var(--cake-shell-max));
  }

  .cake-site-header__inner {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .cake-site-header .wp-block-navigation {
    width: 100%;
    flex-basis: auto;
    justify-content: flex-start;
    margin-left: 0;
  }

  .cake-site-header .wp-block-navigation__container,
  .cake-site-header .wp-block-page-list {
    justify-content: flex-start;
  }

  .cake-main {
    width: min(calc(100vw - 18px), var(--cake-page-max));
  }

  .cake-page-content {
    padding: clamp(0.75rem, 3vw, 1.2rem);
  }

  .banner,
  .wp-block-heading.banner,
  h1.banner,
  h2.banner,
  h3.banner,
  .cake-front-page .cake-page-content > h1:first-child:not(.banner),
  .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
    min-height: clamp(180px, 27dvh, 320px);
    font-size: clamp(2.2rem, 13vw, 4rem);
  }

  .community-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .community-card .content {
    justify-items: center;
  }

  .community-card .heading {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .cake-brand-mark {
    width: 56px;
    height: 46px;
  }

  .cake-site-title,
  .cake-site-title a {
    font-size: 1.4rem;
  }

  .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
  .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
    min-height: 40px;
    font-size: 0.95rem;
    padding: 0.58rem 0.75rem;
  }

  .cake-site-header .wp-block-navigation__submenu-container {
    min-width: min(230px, calc(100vw - 36px));
  }

  .community-filter {
    gap: 0.7rem;
  }

  .community-filter button,
  main button,
  main input[type="button"],
  main input[type="submit"] {
    width: 100%;
    max-width: 320px;
  }
}

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

/* User requested defaults */
main > p,
main .entry-content > p,
.wp-site-blocks > main > p {
  width: min(94vw, 1500px);
  margin: 1.2rem auto;
  text-align: inherit;
  color: var(--cake-ink);
  line-height: 1.35;
  font-weight: 500;
}

.community-filter button,
main button,
main input[type="button"],
main input[type="submit"] {
  min-height: 40px;
  padding: 15px 33px;
  font-size: 1.1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading {
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 720;
  letter-spacing: 0;
  margin-bottom: 20px;
  display: block;
}

/* v110 header and overscroll repair */
html {
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.98), transparent 27rem),
    radial-gradient(circle at 88% 2%, rgba(255, 79, 184, 0.36), transparent 34rem),
    radial-gradient(circle at 82% 86%, rgba(140, 26, 200, 0.22), transparent 32rem),
    linear-gradient(135deg, #fff7fc 0%, #ffd8ed 43%, #efc8ff 100%);
  overscroll-behavior: none;
}

body {
  background-color: #fff5fb;
  background-attachment: scroll;
  overscroll-behavior: none;
}

.wp-site-blocks {
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.98), transparent 27rem),
    radial-gradient(circle at 88% 2%, rgba(255, 79, 184, 0.33), transparent 34rem),
    radial-gradient(circle at 82% 86%, rgba(140, 26, 200, 0.2), transparent 32rem),
    linear-gradient(135deg, #fff7fc 0%, #ffd8ed 43%, #efc8ff 100%);
}

body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header) {
  position: sticky;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 10px);
  z-index: 999;
  width: min(calc(100vw - 24px), var(--cake-shell-max));
  margin: clamp(8px, 1.25vw, 18px) auto clamp(12px, 1.8vw, 26px);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

body .cake-site-header {
  width: 100%;
  overflow: visible;
}

body .cake-site-header__inner {
  display: grid;
  grid-template-columns: minmax(250px, max-content) minmax(0, 1fr);
  align-items: center;
  justify-content: normal;
  column-gap: clamp(1.25rem, 4vw, 5rem);
  row-gap: 0.7rem;
  min-height: clamp(76px, 5.4vw, 96px);
  padding: clamp(0.66rem, 1vw, 0.92rem) clamp(1rem, 2.35vw, 2.25rem);
}

body .cake-brand {
  grid-column: 1;
  justify-self: start;
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.76rem, 1vw, 1rem);
  position: relative;
  z-index: 2;
}

body .cake-brand-mark {
  width: clamp(66px, 5vw, 82px);
  height: clamp(52px, 4.2vw, 66px);
}

body .cake-site-title,
body .cake-site-title a {
  font-size: clamp(1.46rem, 1vw + 1rem, 1.95rem);
  line-height: 1;
}

body .cake-site-header .wp-block-navigation {
  grid-column: 2;
  justify-self: end;
  width: auto;
  max-width: 100%;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  z-index: 3;
}

body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open),
body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-content {
  position: static;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  background: transparent;
  color: inherit;
}

body .cake-site-header .wp-block-navigation__container,
body .cake-site-header .wp-block-page-list {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.16rem, 0.32vw, 0.38rem);
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  min-height: 38px;
  padding: 0.52rem clamp(0.56rem, 0.85vw, 0.88rem);
  border-radius: var(--cake-radius-pill);
  font-size: clamp(0.82rem, 0.28vw + 0.76rem, 1rem);
  line-height: 1;
  white-space: nowrap;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  gap: 0.34rem;
}

body .cake-site-header .wp-block-navigation__submenu-icon {
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-left: 0.28em solid transparent;
  border-right: 0.28em solid transparent;
  border-top: 0.34em solid currentColor;
  transform: none;
}

body .cake-site-header .wp-block-navigation__submenu-icon svg,
body .cake-site-header .wp-block-navigation__submenu-icon::before {
  display: none;
  content: none;
}

body .cake-site-header .wp-block-navigation-item.has-child {
  position: relative;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

body .cake-site-header .wp-block-navigation__submenu-container {
  width: max-content;
  min-width: 190px;
  max-width: min(270px, calc(100vw - 32px));
  padding: 0.34rem;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 252, 0.94));
  border: 1px solid rgba(220, 204, 216, 0.7);
  box-shadow: 0 18px 42px rgba(91, 42, 85, 0.16);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  min-height: 36px;
  width: 100%;
  justify-content: flex-start;
  padding: 0.58rem 0.68rem;
  border-radius: 13px;
  font-size: clamp(0.82rem, 0.2vw + 0.78rem, 0.98rem);
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 1181px) {
  body .cake-site-header__inner {
    grid-template-columns: minmax(250px, max-content) minmax(620px, 1fr);
  }
}

@media (max-width: 1180px) {
  body .cake-site-header__inner {
    grid-template-columns: 1fr;
  }

  body .cake-brand {
    min-width: 0;
  }

  body .cake-site-header .wp-block-navigation {
    grid-column: 1;
    justify-self: stretch;
    width: 100%;
  }

  body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open),
  body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-content,
  body .cake-site-header .wp-block-navigation__container,
  body .cake-site-header .wp-block-page-list {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  body .cake-site-header__inner {
    padding: 0.8rem;
  }

  body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open),
  body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-content,
  body .cake-site-header .wp-block-navigation__container,
  body .cake-site-header .wp-block-page-list {
    justify-content: flex-start;
  }
}

/* v111 known-issues repair */
html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: clip;
  overflow-y: auto;
  overscroll-behavior: auto;
}

body {
  touch-action: pan-y;
  background:
    radial-gradient(circle at 8% 6%, rgba(255, 255, 255, 0.98), transparent 27rem),
    radial-gradient(circle at 88% 2%, rgba(255, 79, 184, 0.36), transparent 34rem),
    radial-gradient(circle at 82% 86%, rgba(140, 26, 200, 0.22), transparent 32rem),
    linear-gradient(135deg, #fff7fc 0%, #ffd8ed 43%, #efc8ff 100%);
  background-attachment: fixed;
}

.wp-site-blocks {
  min-height: 100vh;
  background: transparent;
  touch-action: pan-y;
}

body .cake-sticky-header,
body .wp-site-blocks > header.cake-sticky-header,
body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header) {
  position: sticky;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 8px);
  z-index: 1000;
  width: min(calc(100% - 24px), var(--cake-shell-max));
  max-width: var(--cake-shell-max);
  margin: clamp(8px, 1.25vw, 18px) auto clamp(12px, 1.8vw, 26px);
  overflow: visible;
}

body .cake-site-header {
  width: 100%;
  max-width: 100%;
}

body .cake-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: clamp(1.5rem, 5vw, 7rem);
}

body .cake-brand {
  flex: 0 0 auto;
  min-width: clamp(230px, 18vw, 320px);
  max-width: clamp(230px, 18vw, 320px);
}

body .cake-site-header .wp-block-navigation {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin-left: auto;
  justify-content: flex-end;
}

body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open),
body .cake-site-header .wp-block-navigation__responsive-container:not(.is-menu-open) .wp-block-navigation__responsive-container-content {
  width: 100%;
  min-width: 0;
}

body .cake-site-header .wp-block-navigation__container,
body .cake-site-header .wp-block-page-list {
  width: 100%;
  justify-content: flex-end;
  gap: clamp(0.2rem, 0.45vw, 0.55rem);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  min-height: 36px;
  padding: 0.48rem clamp(0.5rem, 0.72vw, 0.82rem);
  font-size: clamp(0.78rem, 0.26vw + 0.72rem, 0.94rem);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  position: relative;
  padding-right: clamp(1.15rem, 1.15vw, 1.45rem);
}

body .cake-site-header .wp-block-navigation__submenu-icon {
  display: none;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle::after {
  content: "";
  width: 0.38em;
  height: 0.38em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.42rem;
  flex: 0 0 auto;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  transform: none;
}

body .cake-site-header .wp-block-navigation__submenu-container {
  min-width: 180px;
  max-width: min(260px, calc(100vw - 32px));
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  font-size: clamp(0.8rem, 0.2vw + 0.76rem, 0.94rem);
}

body .cake-main,
body .cake-page-title,
body .cake-archive-header,
body .cake-site-footer {
  width: min(calc(100% - 24px), var(--cake-page-max));
  max-width: var(--cake-page-max);
}

body .cake-page-content {
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

@media (max-width: 1180px) {
  body .cake-site-header__inner {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  body .cake-brand {
    min-width: 0;
    max-width: none;
  }

  body .cake-site-header .wp-block-navigation {
    flex-basis: 100%;
    width: 100%;
  }
}

/* v112 sticky header and fluid shell repair */
:root {
  --cake-header-top: calc(var(--wp-admin--admin-bar--height, 0px) + 8px);
  --cake-header-space: clamp(108px, 8.4vw, 142px);
  --cake-viewport-gutter: clamp(10px, 1.2vw, 18px);
}

body .wp-site-blocks {
  width: 100%;
  max-width: 100%;
  padding-top: var(--cake-header-space);
}

body .cake-sticky-header,
body .wp-site-blocks > header.cake-sticky-header,
body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header) {
  position: fixed;
  top: var(--cake-header-top);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(calc(100% - (var(--cake-viewport-gutter) * 2)), var(--cake-shell-max));
  max-width: var(--cake-shell-max);
  margin: 0;
  z-index: 10000;
  overflow: visible;
}

body .cake-site-header__inner {
  min-height: clamp(74px, 5.4vw, 94px);
}

body .cake-main,
body .cake-page-title,
body .cake-archive-header {
  width: min(calc(100% - (var(--cake-viewport-gutter) * 2)), var(--cake-page-max));
  max-width: var(--cake-page-max);
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}

body .cake-main > .cake-page-content,
body .cake-main .entry-content.cake-page-content,
body .cake-page-content.alignfull {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
}

body .cake-page-content {
  box-sizing: border-box;
  overflow-x: clip;
}

body .cake-page-content > *,
body .cake-page-content > .alignwide,
body .cake-page-content > .wp-block-columns,
body .cake-page-content > .community-filter,
body .cake-page-content > .community-card,
body .cake-page-content > .alignfull {
  max-width: 100%;
}

body .cake-page-content > .alignfull {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1180px) {
  :root {
    --cake-header-space: clamp(150px, 18vw, 210px);
  }
}

@media (max-width: 620px) {
  :root {
    --cake-header-space: clamp(176px, 36vw, 250px);
  }
}

/* v113 viewport-percent shell sizing */
:root {
  --cake-header-gutter: clamp(8px, 2vw, 34px);
  --cake-header-top-gap: clamp(6px, 1vw, 16px);
  --cake-header-visible-height: clamp(72px, 5.2vw, 94px);
  --cake-after-header-gap: clamp(4px, 0.8vw, 12px);
  --cake-header-space: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-header-top-gap) + var(--cake-header-visible-height) + var(--cake-after-header-gap));
  --cake-page-width: 94vw;
}

body .wp-site-blocks {
  padding-top: var(--cake-header-space);
}

body .cake-sticky-header,
body .wp-site-blocks > header.cake-sticky-header,
body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header) {
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-header-top-gap));
  width: calc(100vw - (var(--cake-header-gutter) * 2));
  max-width: none;
}

body .cake-site-header__inner {
  min-height: var(--cake-header-visible-height);
}

body .cake-main,
body .cake-page-title,
body .cake-archive-header,
body .cake-site-footer {
  width: var(--cake-page-width);
  max-width: none;
}

body .cake-main {
  margin-top: clamp(0.35rem, 1vw, 0.95rem);
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

body .cake-main > .cake-page-content,
body .cake-main .entry-content.cake-page-content,
body .cake-page-content {
  width: 100%;
  max-width: none;
}

@media (max-width: 1180px) {
  :root {
    --cake-header-visible-height: clamp(118px, 15vw, 174px);
    --cake-page-width: 95vw;
  }
}

@media (max-width: 620px) {
  :root {
    --cake-header-visible-height: clamp(156px, 36vw, 230px);
    --cake-page-width: 96vw;
  }
}

/* v114 matched header/page width and scroll morph */
:root {
  --cake-page-width: 94vw;
  --cake-header-top-gap: clamp(4px, 0.65vw, 10px);
  --cake-header-visible-height: clamp(68px, 4.8vw, 86px);
  --cake-after-header-gap: clamp(0px, 0.25vw, 5px);
  --cake-header-space: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-header-top-gap) + var(--cake-header-visible-height) + var(--cake-after-header-gap));
  --cake-header-width: var(--cake-page-width);
  --cake-header-scrolled-width: min(98vw, calc(var(--cake-page-width) + 3vw));
}

body .wp-site-blocks {
  padding-top: var(--cake-header-space);
}

body .cake-sticky-header,
body .wp-site-blocks > header.cake-sticky-header,
body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header) {
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-header-top-gap));
  width: var(--cake-header-width);
  max-width: none;
  transition: width 260ms ease, top 260ms ease, filter 260ms ease;
  will-change: width;
}

body.cake-header-scrolled .cake-sticky-header,
body.cake-header-scrolled .wp-site-blocks > header.cake-sticky-header,
body.cake-header-scrolled .wp-site-blocks > header,
body.cake-header-scrolled .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body.cake-header-scrolled .wp-block-template-part:has(.cake-site-header) {
  width: var(--cake-header-scrolled-width);
}

body .cake-site-header {
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

body.cake-header-scrolled .cake-site-header {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 196, 228, 0.54));
  box-shadow: 0 22px 60px rgba(181, 39, 129, 0.2);
}

body .cake-site-header__inner {
  min-height: var(--cake-header-visible-height);
}

body .cake-main,
body .cake-page-title,
body .cake-archive-header,
body .cake-site-footer {
  width: var(--cake-page-width);
  max-width: none;
}

body .cake-main {
  margin-top: 0;
}

body .cake-main > .cake-page-content,
body .cake-main .entry-content.cake-page-content,
body .cake-page-content {
  width: 100%;
  max-width: none;
}

@media (max-width: 1180px) {
  :root {
    --cake-page-width: 95vw;
    --cake-header-visible-height: clamp(110px, 13vw, 158px);
    --cake-header-scrolled-width: min(98vw, calc(var(--cake-page-width) + 2vw));
  }
}

@media (max-width: 620px) {
  :root {
    --cake-page-width: 96vw;
    --cake-header-visible-height: clamp(146px, 32vw, 210px);
    --cake-header-scrolled-width: 98vw;
  }
}

/* v115 remove WordPress constrained-layout inset from header */
body .cake-site-header.is-layout-constrained > .cake-site-header__inner,
body .cake-site-header > .cake-site-header__inner,
body .wp-site-blocks .cake-site-header__inner {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

body .cake-site-header__inner {
  padding-left: clamp(0.9rem, 1.6vw, 1.8rem);
  padding-right: clamp(0.9rem, 1.6vw, 1.8rem);
  gap: clamp(0.75rem, 1.8vw, 2.5rem);
}

body .cake-brand {
  min-width: max-content;
  max-width: none;
}

body .cake-site-header .wp-block-navigation {
  margin-left: auto;
}

/* v116 navigation dropdown polish */
body .cake-site-header .wp-block-navigation-item.has-child {
  display: flex;
  align-items: center;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-right: clamp(0.72rem, 0.92vw, 1rem);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle::after {
  content: "";
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.05rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.08em) rotate(45deg);
  flex: 0 0 auto;
}

body .cake-site-header .wp-block-navigation__submenu-icon {
  display: none;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  top: calc(100% + 10px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

body .cake-site-header .wp-block-navigation__submenu-container {
  min-width: 210px;
  max-width: min(250px, calc(100vw - 32px));
  padding: 0.48rem;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 252, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 46px rgba(91, 42, 85, 0.18);
  overflow: hidden;
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  min-height: 40px;
  width: 100%;
  justify-content: flex-start;
  gap: 0.54rem;
  padding: 0.6rem 0.74rem;
  border-radius: 14px;
  font-size: clamp(0.9rem, 0.22vw + 0.82rem, 1rem);
  line-height: 1.1;
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus {
  background: rgba(255, 236, 248, 0.78);
  color: var(--cake-ink);
}

/* v117 restore dropdown anchoring under its button */
body .cake-site-header .wp-block-navigation-item.has-child {
  position: relative;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  transform: none;
  margin: 0;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  position: relative;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle::after {
  display: inline-block;
}

/* v118 dropdown as one glass interaction unit */
body .cake-site-header .wp-block-navigation-item.has-child {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 38px;
  padding: 0 0.78rem;
  border-radius: var(--cake-radius-pill);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 26px rgba(181, 39, 129, 0.12);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

body .cake-site-header .wp-block-navigation-item.has-child:hover,
body .cake-site-header .wp-block-navigation-item.has-child:focus-within,
body .cake-site-header .wp-block-navigation .current-menu-ancestor.wp-block-navigation-item.has-child {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 14px 32px rgba(181, 39, 129, 0.16);
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-submenu__toggle,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
  min-height: 38px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-submenu__toggle:hover,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-submenu__toggle:focus,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-item__content:focus {
  background: transparent;
  box-shadow: none;
  transform: none;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-submenu__toggle::after {
  display: none;
  content: none;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-icon {
  width: 0.5em;
  height: 0.5em;
  margin: 0 0 0 0.08rem;
  display: inline-block;
  position: relative;
  color: currentColor;
  flex: 0 0 auto;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-icon svg {
  display: none;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
}

body .cake-site-header .wp-block-navigation-item.has-child::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: max(100%, 220px);
  height: 12px;
  z-index: 4;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: auto;
  transform: none;
  z-index: 10;
  min-width: max(100%, 218px);
  max-width: min(270px, calc(100vw - 32px));
  padding: 0.5rem;
  border: 0;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 238, 249, 0.54));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 20px 52px rgba(91, 42, 85, 0.2);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  overflow: hidden;
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  min-height: 38px;
  padding: 0.62rem 0.74rem;
  border-radius: 14px;
  background: transparent;
  box-shadow: none;
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus {
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* v119 dropdown state and glass correction */
body .cake-site-header .wp-block-navigation-item.has-child {
  padding: 0 0.82rem;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body .cake-site-header .wp-block-navigation-item.has-child:hover,
body .cake-site-header .wp-block-navigation-item.has-child:focus-within {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 26px rgba(181, 39, 129, 0.12);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

body .cake-site-header .wp-block-navigation .current-menu-ancestor.wp-block-navigation-item.has-child,
body .cake-site-header .wp-block-navigation .current-menu-item.wp-block-navigation-item.has-child {
  background: transparent;
  box-shadow: none;
}

body .cake-site-header .wp-block-navigation .current-menu-ancestor.wp-block-navigation-item.has-child:hover,
body .cake-site-header .wp-block-navigation .current-menu-ancestor.wp-block-navigation-item.has-child:focus-within,
body .cake-site-header .wp-block-navigation .current-menu-item.wp-block-navigation-item.has-child:hover,
body .cake-site-header .wp-block-navigation .current-menu-item.wp-block-navigation-item.has-child:focus-within {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 12px 26px rgba(181, 39, 129, 0.12);
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-icon,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-icon::before,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-icon svg,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-submenu__toggle::after {
  display: none;
  content: none;
}

body .cake-site-header .wp-block-navigation-item.has-child::before {
  content: "";
  order: 2;
  width: 0.42em;
  height: 0.42em;
  margin-left: 0.12rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12em) rotate(45deg);
  flex: 0 0 auto;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-submenu__toggle,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation-item__content {
  order: 1;
}

body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  top: calc(100% - 1px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 236, 248, 0.4));
  border: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 58px rgba(91, 42, 85, 0.22);
  backdrop-filter: blur(28px) saturate(1.45);
  -webkit-backdrop-filter: blur(28px) saturate(1.45);
}

body .cake-site-header .wp-block-navigation-item.has-child::after {
  top: calc(100% - 2px);
}

/* v120 force true frosted submenu glass */
body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  isolation: isolate;
  background: rgba(255, 255, 255, 0.34);
  background-color: rgba(255, 255, 255, 0.34);
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -18px 36px rgba(255, 204, 234, 0.16),
    0 22px 58px rgba(91, 42, 85, 0.22);
  backdrop-filter: blur(34px) saturate(1.65) brightness(1.05);
  -webkit-backdrop-filter: blur(34px) saturate(1.65) brightness(1.05);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container::before,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.82), transparent 54%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 226, 244, 0.18));
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item,
body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  position: relative;
  z-index: 1;
}

/* v121 remove broken inner glass panel */
body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  isolation: auto;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.48);
  background-color: rgba(255, 255, 255, 0.48);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 219, 242, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 20px 52px rgba(91, 42, 85, 0.2);
  backdrop-filter: blur(26px) saturate(1.45);
  -webkit-backdrop-filter: blur(26px) saturate(1.45);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container::before,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container::before {
  display: none;
  content: none;
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item,
body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  position: relative;
  z-index: auto;
  background-color: transparent;
}

/* v122 stronger frost and tighter vertical rhythm */
:root {
  --cake-header-top-gap: clamp(2px, 0.35vw, 6px);
  --cake-after-header-gap: 0px;
  --cake-header-space: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-header-top-gap) + var(--cake-header-visible-height));
}

body .wp-site-blocks {
  padding-top: var(--cake-header-space);
}

body .cake-main {
  margin-top: 0;
}

body .cake-sticky-header,
body .wp-site-blocks > header.cake-sticky-header,
body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header) {
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-header-top-gap));
}

body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  background: rgba(255, 255, 255, 0.32);
  background-color: rgba(255, 255, 255, 0.32);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 214, 240, 0.12));
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 22px 58px rgba(91, 42, 85, 0.22);
  backdrop-filter: blur(40px) saturate(1.8) brightness(1.06);
  -webkit-backdrop-filter: blur(40px) saturate(1.8) brightness(1.06);
}

/* v123 legacy header typography */
body .cake-site-title,
body .cake-site-title a {
  font-family: "Lexend", system-ui, sans-serif;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(0.9rem, 0.3vw + 0.82rem, 1.08rem);
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(0.95rem, 0.22vw + 0.86rem, 1.05rem);
}

/* v124 top-flush floating header and real clipped dropdown frost */
:root {
  --cake-header-top-gap: 0px;
  --cake-header-space: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-header-visible-height));
}

body .wp-site-blocks {
  padding-top: var(--cake-header-space);
}

body .cake-sticky-header,
body .wp-site-blocks > header.cake-sticky-header,
body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header),
body.cake-header-scrolled .cake-sticky-header,
body.cake-header-scrolled .wp-site-blocks > header.cake-sticky-header,
body.cake-header-scrolled .wp-site-blocks > header,
body.cake-header-scrolled .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body.cake-header-scrolled .wp-block-template-part:has(.cake-site-header) {
  top: var(--wp-admin--admin-bar--height, 0px);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  position: absolute;
  isolation: isolate;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.12);
  background-image: none;
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 22px 58px rgba(91, 42, 85, 0.24);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container::before,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 218, 242, 0.18));
  backdrop-filter: blur(46px) saturate(1.95) brightness(1.08);
  -webkit-backdrop-filter: blur(46px) saturate(1.95) brightness(1.08);
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item,
body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  position: relative;
  z-index: 1;
  background-color: transparent;
}

/* v133 actually frosted dropdown glass */
body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5));
  background-color: rgba(255, 255, 255, 0.62);
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 215, 240, 0.12));
  border: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -20px 44px rgba(255, 190, 230, 0.16),
    0 22px 58px rgba(91, 42, 85, 0.22);
  backdrop-filter: blur(36px) saturate(1.75) brightness(1.08);
  -webkit-backdrop-filter: blur(36px) saturate(1.75) brightness(1.08);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container::before,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container::before {
  display: none;
  content: none;
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  background: rgba(255, 255, 255, 0.08);
}

body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus {
  background: rgba(255, 255, 255, 0.42);
}

/* v134 animated light CAKE palette background */
html,
body {
  background-color: #fff4fb;
}

body {
  position: relative;
  background:
    linear-gradient(115deg, #fff8fc 0%, #ffddec 24%, #ffbad8 48%, #ffd3ea 72%, #fff4fb 100%);
  background-size: 260% 260%;
  animation: cake-palette-drift 24s ease-in-out infinite alternate;
}

body::before {
  content: "";
  position: fixed;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 16%, rgba(255, 255, 255, 0.34) 16% 18%, transparent 18% 42%, rgba(255, 255, 255, 0.22) 42% 44%, transparent 44%),
    linear-gradient(72deg, rgba(255, 190, 222, 0.22), transparent 34%, rgba(255, 137, 190, 0.18) 68%, transparent);
  background-size: 180% 180%, 220% 220%;
  opacity: 0.86;
  transform: translate3d(0, 0, 0);
  animation: cake-ribbon-drift 32s ease-in-out infinite alternate;
}

.wp-site-blocks {
  position: relative;
  z-index: 1;
  background: transparent;
}

@keyframes cake-palette-drift {
  0% {
    background-position: 0% 28%;
  }

  50% {
    background-position: 86% 58%;
  }

  100% {
    background-position: 100% 36%;
  }
}

@keyframes cake-ribbon-drift {
  0% {
    background-position: 0% 50%, 8% 24%;
    transform: translate3d(-2%, -1%, 0) scale(1.02);
  }

  100% {
    background-position: 100% 50%, 92% 76%;
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  body::before {
    animation: none;
  }
}

/* v125 measured spacing and borderless glass */
:root {
  --cake-header-rest-gap: clamp(8px, 0.85vw, 16px);
  --cake-header-floating-gap: 0px;
  --cake-active-header-gap: var(--cake-header-rest-gap);
  --cake-after-header-gap: 7px;
  --cake-measured-header-space: calc(var(--cake-active-header-gap) + var(--cake-header-visible-height) + var(--cake-after-header-gap));
}

body .wp-site-blocks {
  padding-top: var(--cake-measured-header-space);
}

body .cake-sticky-header,
body .wp-site-blocks > header.cake-sticky-header,
body .wp-site-blocks > header,
body .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body .wp-block-template-part:has(.cake-site-header) {
  top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--cake-active-header-gap));
  transition: width 260ms ease, top 260ms ease, filter 260ms ease;
}

body.cake-header-scrolled .cake-sticky-header,
body.cake-header-scrolled .wp-site-blocks > header.cake-sticky-header,
body.cake-header-scrolled .wp-site-blocks > header,
body.cake-header-scrolled .wp-site-blocks > .wp-block-template-part:has(.cake-site-header),
body.cake-header-scrolled .wp-block-template-part:has(.cake-site-header) {
  top: var(--wp-admin--admin-bar--height, 0px);
}

body .cake-site-header,
body .cake-site-footer,
body .cake-page-content,
body .glass-panel,
body .is-style-glass-panel,
body .has-base-background-color,
body .wp-block-search,
body .wp-block-query-pagination,
body .wp-block-table,
body .wp-block-cover:not(.banner),
body .wp-block-post,
body .wp-block-post-template > li,
body .wp-block-query .wp-block-post,
body .wp-block-latest-posts__list li,
body .wp-block-media-text.has-background,
body .wp-block-columns,
body .wp-block-column:has(.wp-block-image),
body .wp-block-group:has(.wp-block-image),
body .community-card,
body .banner,
body .wp-block-heading.banner,
body h1.banner,
body h2.banner,
body h3.banner,
body .cake-site-header .wp-block-navigation .wp-block-navigation__submenu-container,
body .cake-site-header .wp-block-navigation-item.has-child > .wp-block-navigation__submenu-container {
  border: 0;
}

/* v126 make page hero headers fill the glass container */
body .cake-page-content > .banner:first-child,
body .cake-page-content > .wp-block-heading.banner:first-child,
body .cake-page-content > h1.banner:first-child,
body .cake-page-content > h2.banner:first-child,
body .cake-page-content > h3.banner:first-child,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  width: calc(100% + (clamp(1rem, 2.4vw, 2rem) * 2));
  max-width: none;
  margin-top: calc(clamp(1rem, 2.4vw, 2rem) * -1);
  margin-left: calc(clamp(1rem, 2.4vw, 2rem) * -1);
  margin-right: calc(clamp(1rem, 2.4vw, 2rem) * -1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 860px) {
  body .cake-page-content > .banner:first-child,
  body .cake-page-content > .wp-block-heading.banner:first-child,
  body .cake-page-content > h1.banner:first-child,
  body .cake-page-content > h2.banner:first-child,
  body .cake-page-content > h3.banner:first-child,
  body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
  body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
    width: calc(100% + (clamp(0.75rem, 3vw, 1.2rem) * 2));
    margin-top: calc(clamp(0.75rem, 3vw, 1.2rem) * -1);
    margin-left: calc(clamp(0.75rem, 3vw, 1.2rem) * -1);
    margin-right: calc(clamp(0.75rem, 3vw, 1.2rem) * -1);
  }
}

/* v127 container-width hero fit */
body .cake-page-content {
  --cake-page-container-pad: clamp(1rem, 2.4vw, 2rem);
  padding: var(--cake-page-container-pad);
}

body .cake-page-content > .banner:first-child,
body .cake-page-content > .wp-block-heading.banner:first-child,
body .cake-page-content > h1.banner:first-child,
body .cake-page-content > h2.banner:first-child,
body .cake-page-content > h3.banner:first-child,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  width: calc(100% + (var(--cake-page-container-pad) * 2));
  max-width: none;
  margin-top: calc(var(--cake-page-container-pad) * -1);
  margin-left: calc(var(--cake-page-container-pad) * -1);
  margin-right: calc(var(--cake-page-container-pad) * -1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 860px) {
  body .cake-page-content {
    --cake-page-container-pad: clamp(0.75rem, 3vw, 1.2rem);
  }
}

/* v135 lighter animated gradient and editor-friendly overrides */
@view-transition {
  navigation: auto;
}

:root {
  --cake-content-max: 96%;
}

html,
body {
  background-color: #fffafd;
}

html {
  background: #fffafd;
}

body {
  background:
    linear-gradient(118deg, #ffffff 0%, #fff7fb 18%, #ffeef7 38%, #ffe3f1 58%, #fff0fa 78%, #ffffff 100%);
  background-size: 260% 260%;
  animation: cake-palette-drift 30s ease-in-out infinite alternate;
}

body::before {
  content: none;
  display: none;
  background: none;
  animation: none;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(0.9rem, 0.3vw + 0.82rem, 1.08rem);
  font-weight: 800;
}

.banner,
.wp-block-heading.banner,
h1.banner,
h2.banner,
h3.banner,
.cake-front-page .cake-page-content > h1:first-child:not(.banner),
.cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  width: 100%;
  max-width: 100%;
  min-height: clamp(220px, 29dvh, 410px);
  margin: 0 auto clamp(1.25rem, 3vw, 2.25rem);
  margin-bottom: 25px;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  border-radius: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #ffffff;
  text-align: center;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 720;
  line-height: 0.95;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, rgba(255, 79, 184, 0.94), rgba(255, 23, 143, 0.92) 50%, rgba(140, 26, 200, 0.88));
  box-shadow: none;
}

main > p,
main .entry-content > p,
.wp-site-blocks > main > p {
  width: 100%;
  margin: 1.2rem auto;
  text-align: inherit;
  color: var(--cake-ink);
  line-height: 1.35;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}

/* v149 CAKE prototype cleanup */
html,
body {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

#wpadminbar {
  display: none !important;
}

.cake-header,
.cake-site-header,
.site-header {
  overflow: visible;
}

.cake-brand,
.cake-logo,
.cake-site-brand,
.site-logo {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.cake-header nav a,
.cake-site-header nav a,
.site-header nav a {
  box-shadow: none !important;
}

.cake-header nav a:hover,
.cake-header nav a:focus,
.cake-site-header nav a:hover,
.cake-site-header nav a:focus,
.site-header nav a:hover,
.site-header nav a:focus {
  background: rgba(245, 42, 160, 0.08) !important;
  box-shadow: none !important;
}

.cake-user-menu {
  position: relative;
}

.cake-user-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}

.cake-user-menu-dropdown,
.sub-menu,
.dropdown-menu {
  border: 0 !important;
  border-radius: 24px !important;
  background: rgba(255, 246, 251, 0.94) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(58, 24, 46, 0.14) !important;
  overflow: hidden;
}

.cake-section-heading,
.cake-footer,
.site-footer {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* v148 prototype cleanup */
html {
  margin-top: 0 !important;
}

body #wpadminbar {
  display: none !important;
}

.cake-site-header,
.cake-site-header__inner {
  overflow: visible !important;
}

body .cake-site-header {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 52px rgba(58, 24, 46, 0.06);
}

.cake-site-header .cake-admin-brand,
.cake-site-header .cake-admin-mark,
.cake-site-header .cake-admin-logo,
.cake-site-header .wp-block-site-logo,
.cake-site-header .wp-block-site-logo a {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:focus,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:focus,
body .cake-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content {
  background: rgba(255, 240, 248, 0.78) !important;
  box-shadow: none !important;
  transform: none !important;
}

.wp-block-navigation__submenu-container {
  margin-top: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.74) !important;
  border-radius: 22px !important;
  background: rgba(255, 246, 251, 0.94) !important;
  box-shadow: 0 22px 55px rgba(58, 24, 46, 0.13) !important;
  backdrop-filter: blur(22px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.18) !important;
}

.cake-site-footer,
footer {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.cake-page-content > .wp-block-heading:not(.banner),
.cake-page-content > h1:not(.banner),
.cake-page-content > h2:not(.banner),
.cake-page-content > h3:not(.banner) {
  box-shadow: none !important;
}

/* v145 final shell polish */
html {
  margin-top: 0 !important;
}

body #wpadminbar {
  display: none !important;
}

body .cake-site-header,
body header.wp-block-template-part,
body .cake-header {
  overflow: visible;
}

body .cake-site-header .wp-block-site-logo,
body .cake-site-header .wp-block-site-logo a,
body .cake-site-header .wp-block-site-title,
body .cake-site-header .wp-block-group:has(.wp-block-site-logo) {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  border-radius: 14px;
  box-shadow: none !important;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:focus,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:focus,
body .cake-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content {
  background: rgba(255, 240, 248, 0.78) !important;
  color: #6f224b !important;
  transform: none !important;
}

body .cake-site-header .wp-block-navigation__submenu-container {
  margin-top: 0 !important;
  padding: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.86) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 24px 54px rgba(58, 24, 46, 0.14) !important;
  backdrop-filter: blur(22px) saturate(1.24) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.24) !important;
}

body .cake-page-content > .wp-block-group:not(.banner):not(.community-card),
body .cake-page-content > .wp-block-heading:not(.banner) {
  box-shadow: none;
}

body .cake-page-content > .wp-block-heading:not(.banner) {
  border-radius: 0;
  background: transparent;
}

body footer,
body footer .wp-block-group,
body .cake-footer,
body .cake-footer .wp-block-group {
  box-shadow: none !important;
}

/* v141 prototype alignment pass */
body .cake-site-header__inner,
body .cake-site-header .wp-block-group,
body .cake-site-header .wp-block-navigation {
  align-items: center;
}

body .cake-site-header__inner {
  display: flex;
  min-height: clamp(74px, 7vw, 104px);
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(0.8rem, 1.3vw, 1.35rem) clamp(1rem, 2.2vw, 2rem);
}

body .cake-site-header .custom-logo,
body .cake-site-header img {
  flex: 0 0 auto;
}

body .cake-primary-navigation,
body .cake-site-header .wp-block-navigation {
  margin-left: auto;
}

body .cake-site-header .wp-block-navigation__container {
  align-items: center;
  gap: clamp(0.2rem, 0.5vw, 0.7rem);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  min-height: 42px;
  padding: 0.52rem 0.78rem;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:focus,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:focus,
body .cake-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content {
  background: rgba(255, 240, 248, 0.82);
  box-shadow: 0 8px 24px rgba(58, 24, 46, 0.08);
  color: var(--cake-ink);
  transform: none;
}

body .cake-site-header .wp-block-navigation__submenu-container {
  min-width: 220px;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(58, 24, 46, 0.12);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

body .cake-header-actions,
body .cake-user-menu {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: 0;
  white-space: nowrap;
}

body .cake-user-menu-trigger,
body .cake-user-menu-login,
body .cake-header-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(244, 207, 226, 0.8);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--cake-ink);
  font-weight: 650;
  text-decoration: none;
  box-shadow: none;
}

body .cake-user-menu-trigger:hover,
body .cake-user-menu-trigger:focus,
body .cake-user-menu-login:hover,
body .cake-user-menu-login:focus,
body .cake-header-actions > a:hover,
body .cake-header-actions > a:focus {
  background: rgba(255, 240, 248, 0.92);
  color: var(--cake-ink);
}

body .cake-user-menu-dropdown {
  right: 0;
  min-width: 210px;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(58, 24, 46, 0.12);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

body .cake-user-menu-dropdown a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0.5rem 0.72rem;
  border-radius: 14px;
  color: var(--cake-ink);
  font-weight: 570;
  text-decoration: none;
}

body .cake-user-menu-dropdown a:hover,
body .cake-user-menu-dropdown a:focus {
  background: rgba(255, 240, 248, 0.92);
}

/* CAKE account dropdown lock: prevents account links from spilling across the header. */
body .cake-user-menu {
  position: relative !important;
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
}

body .cake-user-menu-dropdown {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  right: 0 !important;
  z-index: 1000 !important;
  display: grid !important;
  min-width: 220px !important;
  gap: 4px !important;
  padding: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 18px 44px rgba(58, 24, 46, 0.12) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(6px) !important;
  visibility: hidden !important;
  white-space: normal !important;
  backdrop-filter: blur(20px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.2) !important;
}

body .cake-user-menu:hover .cake-user-menu-dropdown,
body .cake-user-menu:focus-within .cake-user-menu-dropdown {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

@media (max-width: 980px) {
  body .cake-site-header__inner {
    align-items: flex-start;
  }

  body .cake-primary-navigation,
  body .cake-site-header .wp-block-navigation {
    order: 3;
    width: 100%;
    margin-left: 0;
  }

  body .cake-header-actions {
    margin-left: auto;
  }
}

/* v141 lighter public typography */
body h1,
body h2,
body h3,
body .banner,
body .wp-block-heading.banner,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  font-weight: 720;
}

body strong,
body b,
body .wp-block-button__link,
body button,
body .cake-user-menu-trigger,
body .cake-user-menu-login,
body .cake-header-actions > a {
  font-weight: 620;
}

body .cake-site-title,
body .cake-brand-title {
  font-weight: 760;
}

/* v140 true final CAKE polish. This intentionally sits after every legacy cascade. */
:root {
  --cake-ink: #151826;
  --cake-muted: #706474;
  --cake-pink: #f05daf;
  --cake-pink-hot: #dc459c;
  --cake-pink-soft: #ffe8f4;
  --cake-purple: #8d6bff;
  --cake-blue: #a9e7f7;
  --cake-white: rgba(255, 255, 255, 0.78);
  --cake-white-strong: rgba(255, 255, 255, 0.92);
  --cake-stroke: rgba(244, 207, 226, 0.74);
  --cake-shadow: 0 14px 38px rgba(58, 24, 46, 0.07);
  --cake-shadow-soft: 0 10px 28px rgba(58, 24, 46, 0.055);
}

html,
body {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  background: #fff0f8;
  color: var(--cake-ink);
  letter-spacing: 0;
  animation: none;
}

body .cake-site-header {
  border-color: rgba(244, 207, 226, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--cake-shadow);
}

body .cake-site-title,
body .cake-site-logo-text,
body .cake-brand-text {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 850;
  letter-spacing: 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 780;
  letter-spacing: 0;
  color: var(--cake-ink);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 640;
  letter-spacing: 0;
}

button,
.wp-element-button,
.cake-button,
.cake-user-menu-login,
.cake-pwa-install-button {
  background: var(--cake-pink);
  box-shadow: none;
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 720;
  letter-spacing: 0;
}

.banner,
.banner h1,
.banner h2,
.banner h3,
.wp-block-heading.banner,
h1.banner,
h2.banner,
h3.banner,
body .cake-page-content > .banner:first-child,
body .cake-page-content > .wp-block-heading.banner:first-child,
body .cake-page-content > h1.banner:first-child,
body .cake-page-content > h2.banner:first-child,
body .cake-page-content > h3.banner:first-child,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  min-height: clamp(150px, 22dvh, 260px);
  padding: clamp(1.8rem, 4vw, 3.3rem) clamp(1rem, 3vw, 2rem);
  color: #321121;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(2.25rem, 5.4vw, 4.6rem);
  font-weight: 820;
  line-height: 1;
  background: #f278ba;
  border: 1px solid rgba(244, 207, 226, 0.76);
  box-shadow: none;
}

.glass-panel,
.cake-card-grid article,
.cake-community-cards article,
.cake-stats-strip div,
.cake-media-split,
.community-card,
.wp-block-group,
.cake-member-shell-panel,
.cake-user-menu-dropdown {
  border-color: rgba(244, 207, 226, 0.72);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--cake-shadow-soft);
}

.cake-notice-band,
.cake-badge-row span,
.cake-community-card-meta,
.cake-card-meta,
figcaption,
small {
  font-weight: 560;
}

.cake-stats-strip strong,
.cake-community-thumb,
.cake-media-placeholder,
.cake-profile-avatar {
  font-weight: 720;
}

/* v139 calm CAKE theme polish. Keep this final so legacy theme rules cannot overpower it. */
:root {
  --cake-ink: #151826;
  --cake-muted: #706474;
  --cake-pink: #f05daf;
  --cake-pink-hot: #dc459c;
  --cake-pink-soft: #ffe8f4;
  --cake-purple: #8d6bff;
  --cake-blue: #a9e7f7;
  --cake-white: rgba(255, 255, 255, 0.78);
  --cake-white-strong: rgba(255, 255, 255, 0.92);
  --cake-stroke: rgba(244, 207, 226, 0.74);
  --cake-shadow: 0 14px 38px rgba(58, 24, 46, 0.07);
  --cake-shadow-soft: 0 10px 28px rgba(58, 24, 46, 0.055);
}

html,
body {
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  background: #fff0f8;
  color: var(--cake-ink);
  letter-spacing: 0;
  animation: none;
}

body .cake-site-header {
  border-color: rgba(244, 207, 226, 0.72);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--cake-shadow);
}

body .cake-site-title,
body .cake-site-logo-text,
body .cake-brand-text {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 850;
  letter-spacing: 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 780;
  letter-spacing: 0;
  color: var(--cake-ink);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 640;
  letter-spacing: 0;
}

button,
.wp-element-button,
.cake-button,
.cake-user-menu-login,
.cake-pwa-install-button {
  background: var(--cake-pink);
  box-shadow: none;
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 720;
  letter-spacing: 0;
}

.banner,
.banner h1,
.banner h2,
.banner h3,
.wp-block-heading.banner,
h1.banner,
h2.banner,
h3.banner,
body .cake-page-content > .banner:first-child,
body .cake-page-content > .wp-block-heading.banner:first-child,
body .cake-page-content > h1.banner:first-child,
body .cake-page-content > h2.banner:first-child,
body .cake-page-content > h3.banner:first-child,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  min-height: clamp(150px, 22dvh, 260px);
  padding: clamp(1.8rem, 4vw, 3.3rem) clamp(1rem, 3vw, 2rem);
  color: #321121;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(2.25rem, 5.4vw, 4.6rem);
  font-weight: 820;
  line-height: 1;
  background: #f278ba;
  border: 1px solid rgba(244, 207, 226, 0.76);
  box-shadow: none;
}

.glass-panel,
.cake-card-grid article,
.cake-community-cards article,
.cake-stats-strip div,
.cake-media-split,
.community-card,
.wp-block-group,
.cake-member-shell-panel,
.cake-user-menu-dropdown {
  border-color: rgba(244, 207, 226, 0.72);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--cake-shadow-soft);
}

.cake-notice-band,
.cake-badge-row span,
.cake-community-card-meta,
.cake-card-meta,
figcaption,
small {
  font-weight: 560;
}

.cake-stats-strip strong,
.cake-community-thumb,
.cake-media-placeholder,
.cake-profile-avatar {
  font-weight: 720;
}

/* CAKE calm polish final cascade. */
:root {
  --cake-ink: #151826;
  --cake-muted: #706474;
  --cake-pink: #f05daf;
  --cake-border: #f4cfe2;
  --cake-panel: rgba(255, 255, 255, 0.78);
}

body {
  background: #fff0f8 !important;
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  animation: none !important;
}

body .cake-site-header {
  border: 1px solid rgba(244, 207, 226, 0.7);
  background: var(--cake-panel);
  box-shadow: 0 14px 38px rgba(58, 24, 46, 0.07);
}

.cake-site-header__inner {
  padding: 18px 24px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.cake-site-title,
.cake-site-title a {
  font-size: clamp(1.9rem, 3.4vw, 2.75rem);
  font-weight: 850;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 780;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle,
.cake-primary-navigation a {
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 640;
}

.cake-primary-navigation .current-menu-item a,
.cake-primary-navigation a:hover,
body .cake-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:hover {
  background: rgba(240, 93, 175, 0.12);
  color: var(--cake-ink);
  box-shadow: none;
  transform: none;
}

button,
.wp-block-button__link,
input[type="submit"],
.cake-user-menu-login {
  min-height: 40px;
  background: var(--cake-pink) !important;
  font-weight: 720;
  box-shadow: none !important;
}

.cake-page-title,
.wp-block-post-title,
.wp-block-query-title,
.cake-404 h1,
.banner,
.wp-block-heading.banner,
h1.banner,
h2.banner,
h3.banner,
.cake-front-page .cake-page-content > h1:first-child:not(.banner),
.cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner),
body .cake-page-content > .banner:first-child,
body .cake-page-content > .wp-block-heading.banner:first-child,
body .cake-page-content > h1.banner:first-child,
body .cake-page-content > h2.banner:first-child,
body .cake-page-content > h3.banner:first-child,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  min-height: clamp(150px, 22dvh, 260px);
  padding: clamp(1.7rem, 4vw, 3.5rem) clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(244, 207, 226, 0.72);
  border-radius: 24px;
  background: #f278ba;
  color: #321121;
  font-size: clamp(2.25rem, 6vw, 4.6rem);
  font-weight: 820;
  line-height: 1;
  box-shadow: none;
}

.wp-block-group,
.wp-block-search,
.wp-block-query,
.cake-404,
.cake-main > article,
.wp-block-post-content > .wp-block-group,
.community-card {
  border-color: rgba(244, 207, 226, 0.7);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 38px rgba(58, 24, 46, 0.06);
}

input,
select,
textarea,
.wp-block-search__input {
  border-color: rgba(244, 207, 226, 0.86) !important;
  background: rgba(255, 255, 255, 0.74) !important;
  font-weight: 520;
}

/* CAKE prototype theme layer. */
:root {
  --cake-ink: #111827;
  --cake-muted: #5f5064;
  --cake-pink: #f05daf;
  --cake-pink-hot: #f52aa0;
  --cake-bg: #fff0f8;
  --cake-border: #ffd2ea;
  --cake-panel: rgba(255, 255, 255, 0.74);
  --cake-orange: var(--cake-pink);
}

body {
  background: var(--cake-bg) !important;
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.cake-site-title {
  color: var(--cake-ink);
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 780;
  letter-spacing: 0;
}

.cake-site-header {
  margin: clamp(14px, 3vw, 30px);
}

.cake-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border: 0;
  border-radius: 34px;
  background: var(--cake-panel);
  box-shadow: none;
}

.cake-brand,
.cake-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cake-brand-mark img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.cake-site-title,
.cake-site-title a {
  color: #000;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  text-decoration: none;
}

.cake-primary-navigation a,
.cake-user-menu-toggle,
.cake-user-menu-login {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cake-ink);
  font-weight: 780;
  text-decoration: none;
}

.cake-primary-navigation .current-menu-item a,
.cake-primary-navigation a:hover {
  background: rgba(245, 91, 182, 0.13);
  color: var(--cake-ink);
}

.cake-user-menu-login,
button,
.wp-block-button__link,
input[type="submit"] {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--cake-pink) !important;
  color: #fff !important;
  font-family: inherit;
  font-weight: 780;
  box-shadow: none !important;
}

.cake-main,
main,
.wp-block-post-content {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.cake-page-title,
.wp-block-post-title,
.wp-block-query-title,
.cake-404 h1 {
  display: grid;
  place-items: center;
  min-height: clamp(150px, 25vw, 270px);
  margin: 0 0 18px;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 22px;
  background: var(--cake-pink);
  color: #3b0923;
  text-align: center;
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.wp-block-group,
.wp-block-search,
.wp-block-query,
.cake-404,
.cake-main > article,
.wp-block-post-content > .wp-block-group {
  border-radius: 20px;
}

.cake-404,
.wp-block-search {
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.62);
}

.cake-404 .wp-block-search__inside-wrapper {
  gap: 12px;
}

input,
select,
textarea,
.wp-block-search__input {
  min-height: 44px;
  border: 1px solid var(--cake-border) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.82) !important;
  color: var(--cake-ink);
  font-family: inherit;
}

.cake-site-footer,
footer {
  margin: clamp(18px, 3vw, 30px);
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
}

@media (max-width: 900px) {
  .cake-site-header__inner,
  .cake-header-actions {
    flex-wrap: wrap;
  }

  .cake-primary-navigation {
    order: 3;
    width: 100%;
  }
}

/* v137 header polish */
body .cake-site-header {
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(24px, 2.2vw, 34px);
  overflow: visible;
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 20px 55px rgba(181, 39, 129, 0.16);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

body.cake-header-scrolled .cake-site-header {
  background: rgb(255 255 255 / 86%);
  box-shadow: 0 22px 60px rgba(181, 39, 129, 0.2);
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:hover,
body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content:focus,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle:focus,
body .cake-site-header .wp-block-navigation .current-menu-item > .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .current-menu-ancestor > .wp-block-navigation-item__content {
  background: #ffc2e552;
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.78), 0 1px 6px rgba(181, 39, 129, 0.13);
  transform: translateY(-1px);
  color: #551733;
}

/* v128 clean full-width hero and measured dock spacing */
:root {
  --cake-header-rest-gap: clamp(4px, 0.45vw, 9px);
  --cake-after-header-gap: clamp(8px, 0.7vw, 14px);
  --cake-measured-header-space: calc(var(--cake-active-header-gap) + var(--cake-header-visible-height) + var(--cake-after-header-gap));
}

body .wp-site-blocks {
  padding-top: var(--cake-measured-header-space);
}

body .cake-page-content {
  --cake-page-container-pad: clamp(1rem, 2.4vw, 2rem);
  padding: 0 0 var(--cake-page-container-pad);
  overflow: hidden;
}

body .cake-page-content > * {
  max-width: min(calc(100% - (var(--cake-page-container-pad) * 2)), var(--cake-content-max));
}

body .cake-page-content > .alignwide,
body .cake-page-content > .wp-block-columns,
body .cake-page-content > .community-filter,
body .cake-page-content > .community-card,
body .cake-page-content > .alignfull {
  max-width: calc(100% - (var(--cake-page-container-pad) * 2));
}

body .cake-page-content > .banner:first-child,
body .cake-page-content > .wp-block-heading.banner:first-child,
body .cake-page-content > h1.banner:first-child,
body .cake-page-content > h2.banner:first-child,
body .cake-page-content > h3.banner:first-child,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  width: 100%;
  max-width: 100%;
  margin: 0 0 clamp(1rem, 2vw, 1.8rem);
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

body .cake-page-content > :not(.banner):not(.wp-block-heading.banner):not(h1.banner):not(h2.banner):not(h3.banner) {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 860px) {
  body .cake-page-content {
    --cake-page-container-pad: clamp(0.75rem, 3vw, 1.2rem);
  }
}

/* v135 final cascade pin */
:root {
  --cake-content-max: 96%;
}

html,
body {
  background-color: #fffafd;
}

html {
  background: #fffafd;
}

body {
  background:
    linear-gradient(118deg, #ffffff 0%, #fff7fb 18%, #ffeef7 38%, #ffe3f1 58%, #fff0fa 78%, #ffffff 100%);
  background-size: 260% 260%;
  animation: cake-palette-drift 30s ease-in-out infinite alternate;
}

body::before {
  content: none;
  display: none;
  background: none;
  animation: none;
}

body .cake-site-header .wp-block-navigation .wp-block-navigation-item__content,
body .cake-site-header .wp-block-navigation .wp-block-navigation-submenu__toggle {
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(0.9rem, 0.3vw + 0.82rem, 1.08rem);
  font-weight: 800;
}

.banner,
.wp-block-heading.banner,
h1.banner,
h2.banner,
h3.banner,
.cake-front-page .cake-page-content > h1:first-child:not(.banner),
.cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner),
body .cake-page-content > .banner:first-child,
body .cake-page-content > .wp-block-heading.banner:first-child,
body .cake-page-content > h1.banner:first-child,
body .cake-page-content > h2.banner:first-child,
body .cake-page-content > h3.banner:first-child,
body .cake-front-page .cake-page-content > h1:first-child:not(.banner),
body .cake-front-page .cake-page-content > .wp-block-heading:first-child:not(.banner) {
  width: 100%;
  max-width: 100%;
  min-height: clamp(220px, 29dvh, 410px);
  margin: 0 auto 25px;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  border-radius: clamp(24px, 2.8vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #ffffff;
  text-align: center;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  font-weight: 720;
  line-height: 0.95;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: normal;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.28), transparent 22rem),
    linear-gradient(135deg, rgba(255, 79, 184, 0.94), rgba(255, 23, 143, 0.92) 50%, rgba(140, 26, 200, 0.88));
  box-shadow: none;
}

main > p,
main .entry-content > p,
.wp-site-blocks > main > p {
  width: 100%;
  margin: 1.2rem auto;
  text-align: inherit;
  color: var(--cake-ink);
  line-height: 1.35;
  font-weight: 500;
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
