/*
Theme Name: My Theme
Theme URI: http://wordpress-test.test/
Author: OpenAI
Description: Custom classic theme scaffold for site development.
Version: 0.2.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
Text Domain: my-theme
*/

:root {
    --my-theme-bg: #000000;
    --my-theme-text: #ffffff;
    --my-theme-link: rgb(153, 195, 255);
    --my-theme-border: rgba(255, 255, 255, 0.16);
    --my-theme-muted: rgba(255, 255, 255, 0.72);
    --my-theme-panel: #0f0f0f;
    --my-theme-panel-strong: #151515;
    --my-theme-header-surface: #080a0e;
    --my-theme-nav-glass-bg: rgba(12, 14, 18, 0.72);
    --my-theme-nav-glass-border: rgba(255, 255, 255, 0.18);
    --my-theme-nav-glass-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 4px 16px rgba(0, 0, 0, 0.14);
    --my-theme-nav-glass-blur: blur(10px) saturate(112%);
    --my-theme-nav-glass-radius: 18px;
    --my-theme-global-viewport-width: 100vw;
    --my-theme-content-width: 700px;
    --my-theme-max-width: 1200px;
    --my-theme-mobile-gutter: 10px;
    --my-theme-body-line-height: 1.6;
    --my-theme-shell-width: min(var(--my-theme-max-width), calc(100% - 32px));
    --my-theme-section-padding: 5px;
}

html {
    box-sizing: border-box;
    scrollbar-gutter: stable;
    background: var(--my-theme-bg);
    -webkit-tap-highlight-color: transparent;
}

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

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--my-theme-text);
    background: var(--my-theme-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main p,
.site-main li,
.site-main blockquote,
.site-main dd {
    line-height: var(--my-theme-body-line-height);
}

body.site-menu-open {
    overflow-y: auto;
}

a {
    color: var(--my-theme-link);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
    -webkit-tap-highlight-color: transparent;
}

button {
    -webkit-tap-highlight-color: transparent;
}

a:hover,

a:focus {
    color: var(--my-theme-link);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.site-header,
.site-footer {
    background: var(--my-theme-header-surface);
    color: var(--my-theme-text);
}

.site-header {
    position: relative;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--my-theme-header-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 4px 16px rgba(0, 0, 0, 0.14);
}

.site-header__inner,
.site-footer__inner {
    width: var(--my-theme-shell-width);
    margin: 0 auto;
}

.site-header__inner {
    position: relative;
}

.site-header__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.site-header--fallback .site-header__topbar {
    align-items: center;
    padding: 16px 0;
}

.site-header__utilities {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    gap: 12px;
    position: relative;
    z-index: 3;
}

.site-title {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.site-header--fallback .site-title {
    font-size: 24px;
}

.site-title a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--my-theme-text);
    text-decoration: none;
}

.site-title__icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    flex: 0 0 auto;
}

.site-title__text {
    display: block;
}

.site-main {
    width: min(var(--my-theme-content-width), calc(100vw - 32px));
    margin: 0 auto;
    padding: 32px 0 64px;
    flex: 1 0 auto;
}

.my-theme-layout-wrap {
    display: block;
}

.my-theme-layout-wrap > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.site-main > .alignwide:not(.my-plugin-gallery-block),
.entry-content > .alignwide:not(.my-plugin-gallery-block),
.entry-content > .my-plugin-inline-media > .alignwide:not(.my-plugin-gallery-block),
.site-main > .my-theme-layout-wrap.my-theme-width-wide,
.entry-content > .my-theme-layout-wrap.my-theme-width-wide,
.entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-wide {
    width: min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - 32px));
    max-width: min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - 32px));
    margin-left: calc(50% - (min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - 32px)) / 2)) !important;
    margin-right: calc(50% - (min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - 32px)) / 2)) !important;
}

.site-main > .my-theme-layout-wrap.my-theme-width-full,
.entry-content > .my-theme-layout-wrap.my-theme-width-full,
.entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full,
.site-main > .my-theme-layout-wrap.my-theme-width-full-override,
.entry-content > .my-theme-layout-wrap.my-theme-width-full-override,
.entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full-override {
    box-sizing: border-box;
}

.site-main > .my-theme-layout-wrap.my-theme-width-full > *,
.entry-content > .my-theme-layout-wrap.my-theme-width-full > *,
.entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full > *,
.site-main > .my-theme-layout-wrap.my-theme-width-full-override > *,
.entry-content > .my-theme-layout-wrap.my-theme-width-full-override > *,
.entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full-override > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: var(--my-theme-section-padding);
    padding-right: var(--my-theme-section-padding);
}

.site-main > .alignfull:not(.my-plugin-gallery-block),
.entry-content > .alignfull:not(.my-plugin-gallery-block),
.entry-content > .my-plugin-inline-media > .alignfull:not(.my-plugin-gallery-block),
.site-main > .my-theme-layout-wrap.my-theme-width-full,
.entry-content > .my-theme-layout-wrap.my-theme-width-full,
.entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full {
    width: calc(var(--my-theme-global-viewport-width, 100vw) - 32px);
    max-width: calc(var(--my-theme-global-viewport-width, 100vw) - 32px);
    margin-left: calc(50% - ((var(--my-theme-global-viewport-width, 100vw) - 32px) / 2)) !important;
    margin-right: calc(50% - ((var(--my-theme-global-viewport-width, 100vw) - 32px) / 2)) !important;
}

.site-main > .my-theme-layout-wrap.my-theme-width-full-override,
.entry-content > .my-theme-layout-wrap.my-theme-width-full-override,
.entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full-override {
    width: var(--my-theme-global-viewport-width, 100vw);
    max-width: var(--my-theme-global-viewport-width, 100vw);
    margin-left: calc(50% - (var(--my-theme-global-viewport-width, 100vw) / 2)) !important;
    margin-right: calc(50% - (var(--my-theme-global-viewport-width, 100vw) / 2)) !important;
    box-sizing: border-box;
}

.site-main > .my-theme-full-bleed,
.entry-content > .my-theme-full-bleed,
.entry-content > .my-plugin-inline-media > .my-theme-full-bleed {
    width: var(--my-theme-global-viewport-width, 100vw);
    max-width: var(--my-theme-global-viewport-width, 100vw);
    margin-left: calc(50% - (var(--my-theme-global-viewport-width, 100vw) / 2)) !important;
    margin-right: calc(50% - (var(--my-theme-global-viewport-width, 100vw) / 2)) !important;
    box-sizing: border-box;
}

.site-main > .my-theme-full-bleed > .my-theme-full-bleed__inner,
.entry-content > .my-theme-full-bleed > .my-theme-full-bleed__inner,
.entry-content > .my-plugin-inline-media > .my-theme-full-bleed > .my-theme-full-bleed__inner,
.site-main > .my-theme-full-bleed > .wp-block-group__inner-container,
.site-main > .my-theme-full-bleed > .wp-block-cover__inner-container,
.entry-content > .my-theme-full-bleed > .wp-block-group__inner-container,
.entry-content > .my-theme-full-bleed > .wp-block-cover__inner-container,
.entry-content > .my-plugin-inline-media > .my-theme-full-bleed > .wp-block-group__inner-container,
.entry-content > .my-plugin-inline-media > .my-theme-full-bleed > .wp-block-cover__inner-container {
    width: 100%;
    padding-left: var(--my-theme-section-padding);
    padding-right: var(--my-theme-section-padding);
    box-sizing: border-box;
}

.menu,
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.menu li {
    position: relative;
}

.menu a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--my-theme-text);
    text-decoration: none;
}

.menu--secondary,
.menu--legal {
    gap: 6px 12px;
}

.site-header .secondary-navigation .menu--secondary {
    margin-right: -10px;
}

.site-header .menu--primary,
.site-header .menu--fallback-inline {
    gap: 10px 10px;
}

.menu--secondary a,
.menu--legal a,
.menu--footer a {
    color: rgba(214, 223, 236, 0.66);
}

.menu--secondary a {
    min-height: 34px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu--secondary a:hover,
.menu--secondary a:focus-visible {
    color: #ffffff;
    border-color: rgba(127, 184, 255, 0.44);
    background: rgba(127, 184, 255, 0.08);
}

.menu--primary > li > a,
.menu--fallback-inline > li > a {
    min-height: 38px;
    padding: 0 10px;
    border-radius: 0;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(234, 240, 248, 0.86);
    transition: color 0.2s ease;
}

.site-header .menu--primary > li:last-child > a,
.site-header .menu--fallback-inline > li:last-child > a {
    padding-right: 4px;
}

.menu--primary > li.menu-item-has-children > a::after,
.menu--fallback-inline > li.menu-item-has-children > a::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.72;
}

.menu--fallback-inline {
    justify-content: flex-end;
}

.menu--primary > li > a:hover,
.menu--primary > li > a:focus-visible,
.menu--primary > li.current-menu-item > a,
.menu--primary > li.current-menu-ancestor > a,
.menu--fallback-inline > li > a:hover,
.menu--fallback-inline > li > a:focus-visible {
    color: #ffffff;
    background: transparent;
}

.menu .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 280px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid var(--my-theme-nav-glass-border);
    border-radius: var(--my-theme-nav-glass-radius);
    background: var(--my-theme-nav-glass-bg);
    box-shadow: var(--my-theme-nav-glass-shadow);
    backdrop-filter: var(--my-theme-nav-glass-blur);
    -webkit-backdrop-filter: var(--my-theme-nav-glass-blur);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.menu .sub-menu a {
    min-height: 0;
    width: 100%;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 14px;
    color: rgba(229, 236, 244, 0.84);
    background: transparent;
    font-size: 15px;
    line-height: 1.35;
}

.menu .sub-menu a:hover,
.menu .sub-menu a:focus-visible {
    color: #ffffff;
    background: rgba(127, 184, 255, 0.08);
}

.site-nav-desktop .menu li.is-open > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.site-nav-desktop .menu li > .sub-menu[hidden] {
    display: none !important;
}

.submenu-toggle {
    display: none;
}

.site-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--my-theme-text);
    position: relative;
    z-index: 4;
    transition: none;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible,
.site-menu-toggle.is-active {
    border: 0;
    background: transparent;
    outline: none;
}

.site-menu-toggle__line {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.site-menu-toggle {
    flex-direction: column;
}

.site-menu-toggle.is-active .site-menu-toggle__line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-menu-toggle.is-active .site-menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.site-menu-toggle.is-active .site-menu-toggle__line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-menu-panel {
    display: none;
}

.site-menu-panel[hidden] {
    display: none !important;
}

.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 -4px 16px rgba(0, 0, 0, 0.14);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    padding: 28px 0;
}

.site-footer__inner--has-left.site-footer__inner--has-right:not(.site-footer__inner--has-center) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-footer__inner--has-center.site-footer__inner--has-left,
.site-footer__inner--has-center.site-footer__inner--has-right {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer__inner--has-left.site-footer__inner--has-center .site-footer__zone--left {
    grid-column: 1;
}

.site-footer__inner--has-left.site-footer__inner--has-center .site-footer__zone--center {
    grid-column: 2;
}

.site-footer__inner--has-center.site-footer__inner--has-right .site-footer__zone--center {
    grid-column: 2;
}

.site-footer__inner--has-center.site-footer__inner--has-right .site-footer__zone--right {
    grid-column: 3;
}

.site-footer__inner--has-left.site-footer__inner--has-center.site-footer__inner--has-right .site-footer__zone--left {
    grid-column: 1;
}

.site-footer__inner--has-left.site-footer__inner--has-center.site-footer__inner--has-right .site-footer__zone--center {
    grid-column: 2;
}

.site-footer__inner--has-left.site-footer__inner--has-center.site-footer__inner--has-right .site-footer__zone--right {
    grid-column: 3;
}

.site-footer__zone {
    min-width: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.footer-zone-navigation {
    width: 100%;
    display: flex;
}

.site-footer__zone .footer-zone-navigation .menu {
    display: grid;
    gap: 8px;
    width: 100%;
}

.site-footer__zone .footer-zone-navigation--display-row .menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px 14px;
    width: auto;
    max-width: 100%;
}

.site-footer__zone--align-left {
    text-align: left;
    align-items: flex-start;
}

.site-footer__zone--align-center {
    text-align: center;
    align-items: center;
}

.site-footer__zone--align-right {
    text-align: right;
    align-items: flex-end;
}

.site-footer__zone--valign-top {
    justify-content: flex-start;
}

.site-footer__zone--valign-center {
    justify-content: center;
}

.site-footer__zone--valign-bottom {
    justify-content: flex-end;
}

.site-footer__zone .footer-zone-navigation .menu li {
    width: 100%;
}

.site-footer__zone .footer-zone-navigation--display-row .menu li {
    width: auto;
}

.site-footer__zone .footer-zone-navigation .menu a {
    min-height: 0;
    display: inline-flex;
    color: rgba(214, 223, 236, 0.66);
    transition: color 0.2s ease;
}

.site-footer__zone .footer-zone-navigation--display-row .menu a {
    white-space: nowrap;
}

.site-footer__zone .footer-zone-navigation .menu a:hover,
.site-footer__zone .footer-zone-navigation .menu a:focus-visible,
.site-footer__zone .footer-zone-navigation .menu .current-menu-item > a,
.site-footer__zone .footer-zone-navigation .menu .current-menu-ancestor > a {
    color: #ffffff;
}

.site-footer__zone--align-left .footer-zone-navigation .menu {
    justify-items: start;
}

.site-footer__zone--align-left .footer-zone-navigation--display-row .menu {
    justify-content: flex-start;
}

.site-footer__zone--align-center .footer-zone-navigation .menu {
    justify-items: center;
}

.site-footer__zone--align-center .footer-zone-navigation--display-row .menu {
    justify-content: center;
}

.site-footer__zone--align-right .footer-zone-navigation .menu {
    justify-items: end;
}

.site-footer__zone--align-right .footer-zone-navigation--display-row .menu {
    justify-content: flex-end;
}

.site-footer__zone .widget {
    margin: 0;
}

.site-footer__zone .widget + .widget {
    margin-top: 12px;
}

.site-footer__zone .widget-title {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(226, 233, 241, 0.74);
}

.site-footer__zone ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__zone .widget li + li {
    margin-top: 8px;
}

.site-footer__meta {
    width: var(--my-theme-shell-width);
    margin: 0 auto;
    padding: 22px 0;
    border-top: 0;
    box-shadow: none;
}

.site-footer--no-zones {
    border-top: 0;
    box-shadow: none;
}

.site-footer__inner + .site-footer__meta {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-footer__copyright {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(214, 223, 236, 0.62);
    text-align: center;
}

.site-footer__copyright a {
    color: inherit;
}

.site-footer__copyright a:hover,
.site-footer__copyright a:focus-visible {
    color: #ffffff;
}

.site-page-return {
    position: fixed;
    right: var(--my-theme-page-return-right, 16px);
    bottom: var(--my-theme-page-return-bottom, 20px);
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--my-theme-nav-glass-border);
    border-radius: 999px;
    background: rgba(10, 13, 18, 0.66);
    box-shadow: var(--my-theme-nav-glass-shadow);
    backdrop-filter: blur(14px) saturate(118%);
    -webkit-backdrop-filter: blur(14px) saturate(118%);
    color: rgba(240, 246, 255, 0.94);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.18s ease, transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
    z-index: 60;
}

.site-page-return.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-page-return:hover,
.site-page-return:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(14, 18, 25, 0.74);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 24px rgba(0, 0, 0, 0.18);
    outline: none;
}

.site-page-return__chevron {
    width: 13px;
    height: 13px;
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: translateY(3px) rotate(45deg);
}

h1 {
    font-size: clamp(1.8rem, 1.2rem + 1.2vw, 3rem);
    line-height: 1.15;
    font-weight: 700;
}

h2 {
    font-size: clamp(1.35rem, 1.05rem + 0.9vw, 2rem);
    line-height: 1.25;
    font-weight: 700;
}

h3 {
    font-size: clamp(1rem, 0.95rem + 0.4vw, 1.4rem);
    line-height: 1.3;
    font-weight: 700;
}

.entry-title,
.page-title {
    margin-top: 0;
    color: var(--my-theme-text);
}

.blog-index {
    display: grid;
    gap: 32px;
}

.blog-index__main,
.blog-index__sidebar {
    min-width: 0;
}

body.blog .site-main,
body.home.blog .site-main {
    width: var(--my-theme-shell-width);
}

.blog-index--has-sidebar {
    grid-template-columns: minmax(0, 700px) 300px;
    width: min(100%, 1032px);
    margin-left: auto;
    margin-right: auto;
    justify-content: start;
    column-gap: 32px;
    align-items: start;
}

@media (max-width: 1064px) {
    .blog-index--has-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }
}

.blog-index__header {
    margin-bottom: 28px;
}

.blog-index__intro {
    margin-bottom: 28px;
}

.blog-index__intro > *:first-child {
    margin-top: 0;
}

@media (min-width: 1065px) {
    .blog-index--has-sidebar.blog-index--has-intro .blog-index__sidebar {
        margin-top: 24px;
    }
}

.archive-description {
    color: rgba(214, 223, 236, 0.72);
    line-height: 1.7;
}

.blog-index__posts {
    display: grid;
    gap: 24px;
}

.blog-card {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.blog-card:last-child {
    border-bottom: 0;
    box-shadow: none;
    padding-bottom: 0;
}

.blog-card__header {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
}

.blog-card__title {
    margin-bottom: 0;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
}

.blog-card__title a:hover,
.blog-card__title a:focus-visible {
    color: var(--my-theme-link);
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.72);
}

.blog-card__meta-item {
    display: inline-flex;
    align-items: center;
}

.blog-card__meta-item--categories a {
    color: var(--my-theme-link);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.blog-card__meta-item--categories a:hover,
.blog-card__meta-item--categories a:focus-visible {
    color: var(--my-theme-link);
}

.blog-card__summary,
.blog-card__content {
    color: #ffffff;
    line-height: 1.75;
}

.blog-card__content p,
.blog-card__content li,
.blog-card__content figcaption,
.blog-card__content blockquote,
.blog-card__content h1,
.blog-card__content h2,
.blog-card__content h3,
.blog-card__content h4,
.blog-card__content h5,
.blog-card__content h6 {
    color: inherit;
}

.blog-index__sidebar {
    display: grid;
    gap: 20px;
}

.blog-index__sidebar .widget {
    margin: 0;
    padding: 18px 20px;
    border: 1px solid var(--my-theme-nav-glass-border);
    border-radius: 18px;
    background: var(--my-theme-nav-glass-bg);
    box-shadow: var(--my-theme-nav-glass-shadow);
    backdrop-filter: var(--my-theme-nav-glass-blur);
    -webkit-backdrop-filter: var(--my-theme-nav-glass-blur);
}

.blog-index__sidebar .widget_block .wp-block-group,
.blog-index__sidebar .wp-block-group {
    display: grid;
    gap: 12px;
}

.blog-index__sidebar .widget_block .wp-block-group > *,
.blog-index__sidebar .wp-block-group > * {
    margin-top: 0;
    margin-bottom: 0;
}

.blog-index__sidebar .widget-title,
.blog-index__sidebar h2,
.blog-index__sidebar h3,
.blog-index__sidebar .wp-block-heading {
    margin: 0 0 12px;
    font-size: clamp(0.98rem, 0.94rem + 0.22vw, 1.18rem);
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #ffffff;
}

.blog-index__sidebar .wp-block-latest-posts,
.blog-index__sidebar .wp-block-categories-list,
.blog-index__sidebar .wp-block-categories,
.blog-index__sidebar .wp-block-latest-posts__list {
    display: grid;
    gap: 10px;
}

.blog-index__sidebar .wp-block-latest-posts li,
.blog-index__sidebar .wp-block-categories-list li,
.blog-index__sidebar .wp-block-categories li,
.blog-index__sidebar .wp-block-latest-posts__list li {
    margin: 0;
}

.blog-index__sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-index__sidebar li + li {
    margin-top: 10px;
}

.blog-index__sidebar a {
    color: var(--my-theme-link);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.blog-index__sidebar a:hover,
.blog-index__sidebar a:focus-visible {
    color: var(--my-theme-link);
}

.blog-index__sidebar .wp-block-search,
.blog-index__sidebar .wp-block-search__inside-wrapper,
.blog-index__sidebar .wp-block-search__input {
    max-width: 100%;
}

.blog-index__sidebar .wp-block-search {
    width: 100%;
    position: relative;
}

.blog-index__sidebar .wp-block-search__inside-wrapper {
    width: 100%;
    min-width: 0;
}

.blog-index__sidebar .wp-block-search__input {
    width: 0;
    min-width: 0;
}

.blog-index__sidebar .wp-block-search__button.wp-element-button {
    flex: 0 0 auto;
    padding: 6px 10px;
}

.blog-index__sidebar .wp-block-search__label.screen-reader-text {
    width: 1px;
    min-width: 1px;
    max-width: 1px;
}

.pagination,
.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.pagination .page-numbers,
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(226, 233, 241, 0.8);
    text-decoration: none;
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus-visible,
.nav-links .page-numbers:hover,
.nav-links .page-numbers:focus-visible {
    color: #ffffff;
    border-color: rgba(153, 195, 255, 0.4);
    background: rgba(153, 195, 255, 0.08);
}

.post-connect-links {
    display: grid;
    gap: 12px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.post-connect-links__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.post-connect-links__items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.post-connect-links__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
}

.post-connect-links__icon,
.post-connect-links__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.post-connect-links__icon svg {
    color: currentColor;
}

.post-connect-links__icon svg path,
.post-connect-links__icon svg circle,
.post-connect-links__icon svg rect,
.post-connect-links__icon svg polygon,
.post-connect-links__icon svg line {
    fill: currentColor;
    stroke: currentColor;
}

.post-connect-links__action:hover,
.post-connect-links__action:focus-visible {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.post-connect-links__action.is-copied {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.comments-area {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.comments-area__title,
.comment-reply-title {
    margin: 0 0 14px;
    color: #ffffff;
}

.comment-list {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.comment-list .children {
    list-style: none;
    margin: 12px 0 0 14px;
    padding: 0;
    display: grid;
    gap: 12px;
}

.comment-body {
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.comment-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.comment-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.comment-author img {
    width: 48px;
    height: 48px;
    border-radius: 999px;
}

.comment-author .fn a,
.comment-metadata a,
.comment-reply-link {
    color: var(--my-theme-link);
    text-decoration: underline;
    text-underline-offset: 0.25rem;
}

.comment-content {
    color: #ffffff;
    line-height: 1.75;
}

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

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

.comment-awaiting-moderation,
.comments-area__closed,
.logged-in-as,
.comment-notes {
    color: rgba(214, 223, 236, 0.72);
}

.comment-respond {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.comment-form {
    display: grid;
    gap: 10px;
}

.comment-form label {
    display: block;
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font: inherit;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: rgba(153, 195, 255, 0.44);
    box-shadow: 0 0 0 1px rgba(153, 195, 255, 0.28);
}

.comment-form textarea {
    min-height: 124px;
    resize: vertical;
}

.comment-form-cookies-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.comment-form-cookies-consent input {
    margin-top: 3px;
}

.comment-form__submit,
.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font: inherit;
    cursor: pointer;
}

.comment-form__submit:hover,
.comment-form__submit:focus-visible,
.comment-form .submit:hover,
.comment-form .submit:focus-visible {
    outline: none;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
    .site-main {
        width: min(var(--my-theme-content-width), calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2)));
    }

    body.blog .site-main,
    body.home.blog .site-main {
        width: min(var(--my-theme-content-width), calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2)));
    }

    .site-header {
        position: relative;
        background: #080a0e;
        backdrop-filter: none;
        box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    }

    .site-page-return {
        right: var(--my-theme-page-return-right, 16px);
        bottom: var(--my-theme-page-return-bottom, 20px);
        width: 48px;
        height: 48px;
    }

    .site-main > .alignwide:not(.my-plugin-gallery-block),
    .entry-content > .alignwide:not(.my-plugin-gallery-block),
    .entry-content > .my-plugin-inline-media > .alignwide:not(.my-plugin-gallery-block),
    .site-main > .my-theme-layout-wrap.my-theme-width-wide,
    .entry-content > .my-theme-layout-wrap.my-theme-width-wide,
    .entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-wide {
        width: min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2))) !important;
        max-width: min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2))) !important;
        margin-left: calc(50% - (min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2))) / 2)) !important;
        margin-right: calc(50% - (min(var(--my-theme-max-width), calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2))) / 2)) !important;
    }

    .site-main > .alignfull:not(.my-plugin-gallery-block),
    .entry-content > .alignfull:not(.my-plugin-gallery-block),
    .entry-content > .my-plugin-inline-media > .alignfull:not(.my-plugin-gallery-block),
    .site-main > .my-theme-layout-wrap.my-theme-width-full,
    .entry-content > .my-theme-layout-wrap.my-theme-width-full,
    .entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full {
        width: calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2)) !important;
        max-width: calc(var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2)) !important;
        margin-left: calc(50% - ((var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2)) / 2)) !important;
        margin-right: calc(50% - ((var(--my-theme-global-viewport-width, 100vw) - (var(--my-theme-mobile-gutter) * 2)) / 2)) !important;
    }

    .site-main > .my-theme-layout-wrap.my-theme-width-full-override,
    .entry-content > .my-theme-layout-wrap.my-theme-width-full-override,
    .entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full-override,
    .site-main > .my-theme-full-bleed,
    .entry-content > .my-theme-full-bleed,
    .entry-content > .my-plugin-inline-media > .my-theme-full-bleed {
        width: var(--my-theme-global-viewport-width, 100vw) !important;
        max-width: var(--my-theme-global-viewport-width, 100vw) !important;
        margin-left: calc(50% - (var(--my-theme-global-viewport-width, 100vw) / 2)) !important;
        margin-right: calc(50% - (var(--my-theme-global-viewport-width, 100vw) / 2)) !important;
    }

    .site-main > .my-theme-full-bleed > .my-theme-full-bleed__inner,
    .entry-content > .my-theme-full-bleed > .my-theme-full-bleed__inner,
    .entry-content > .my-plugin-inline-media > .my-theme-full-bleed > .my-theme-full-bleed__inner,
    .site-main > .my-theme-full-bleed > .wp-block-group__inner-container,
    .site-main > .my-theme-full-bleed > .wp-block-cover__inner-container,
    .entry-content > .my-theme-full-bleed > .wp-block-group__inner-container,
    .entry-content > .my-theme-full-bleed > .wp-block-cover__inner-container,
    .entry-content > .my-plugin-inline-media > .my-theme-full-bleed > .wp-block-group__inner-container,
    .entry-content > .my-plugin-inline-media > .my-theme-full-bleed > .wp-block-cover__inner-container {
        padding-left: var(--my-theme-section-padding) !important;
        padding-right: var(--my-theme-section-padding) !important;
        box-sizing: border-box;
    }

    .site-main > .my-theme-layout-wrap.my-theme-width-full > *,
    .entry-content > .my-theme-layout-wrap.my-theme-width-full > *,
    .entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full > *,
    .site-main > .my-theme-layout-wrap.my-theme-width-full-override > *,
    .entry-content > .my-theme-layout-wrap.my-theme-width-full-override > *,
    .entry-content > .my-plugin-inline-media > .my-theme-layout-wrap.my-theme-width-full-override > * {
        padding-left: var(--my-theme-section-padding) !important;
        padding-right: var(--my-theme-section-padding) !important;
        box-sizing: border-box;
    }

    .site-nav-desktop {
        display: none;
    }

    .site-header__topbar,
    .site-header--fallback .site-header__topbar {
        position: relative;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 14px 0;
        min-height: 64px;
    }

    .site-branding {
        min-width: 0;
        flex: 0 1 auto;
        text-align: center;
    }

    .site-title {
        font-family: Arial, sans-serif;
        font-size: 24px;
        font-weight: 600;
        letter-spacing: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-header__utilities {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        flex: 0 0 auto;
        justify-content: flex-start;
    }

    .site-menu-toggle {
        display: inline-flex;
        width: 36px;
        height: 36px;
    }

    .site-menu-panel {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: auto;
        width: min(280px, calc(100vw - 32px));
        z-index: 30;
        display: block;
        background: transparent;
    }

    .site-menu-panel__inner {
        width: 100%;
        margin: 0;
        max-height: min(72vh, 560px);
        padding: 12px 18px;
        display: grid;
        gap: 10px;
        border: 1px solid var(--my-theme-nav-glass-border);
        border-radius: var(--my-theme-nav-glass-radius);
        background: var(--my-theme-nav-glass-bg);
        box-shadow: var(--my-theme-nav-glass-shadow);
        backdrop-filter: var(--my-theme-nav-glass-blur);
        -webkit-backdrop-filter: var(--my-theme-nav-glass-blur);
        overflow-x: hidden;
        overflow-y: auto;
        position: relative;
    }

    .site-menu-panel__section + .site-menu-panel__section {
        padding-top: 10px;
        border-top: 0;
    }

    .menu--mobile {
        display: grid;
        gap: 2px;
    }

    .menu--mobile > li {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 4px;
        align-items: start;
        padding: 0;
        border-bottom: 0;
    }

    .menu--mobile > li > a {
        min-height: 0;
        padding: 8px 2px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-family: Arial, sans-serif;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: 0.01em;
        text-transform: none;
        border-radius: 0;
        background: transparent;
        width: 100%;
    }

    .menu--mobile .sub-menu {
        position: static;
        min-width: 0;
        grid-column: 1 / -1;
        gap: 2px;
        padding: 4px 0 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        transition: none;
        display: none;
    }

    .menu--mobile > li.menu-item-has-children.is-open + li > a {
        padding-top: 4px;
    }

    .menu--mobile .menu-item-has-children.is-open > .sub-menu {
        display: grid;
    }

    .site-menu-panel .sub-menu,
    .site-menu-panel .sub-menu li,
    .site-menu-panel .sub-menu li a {
        background: none !important;
        background-color: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
        border: 0 !important;
        outline: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }

    .site-menu-panel .menu-item-has-children > .sub-menu {
        padding-top: 4px !important;
        padding-right: 0 !important;
        padding-bottom: 4px !important;
        padding-left: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .menu--mobile .sub-menu a {
        color: rgba(214, 223, 236, 0.7);
        padding: 6px 0 6px 19px;
        background: transparent;
        border-radius: 0;
        font-family: Arial, sans-serif;
        font-size: 16px;
        font-weight: 400;
        letter-spacing: 0.02em;
    }

    .menu--mobile .submenu-toggle {
        display: none;
    }

    .site-menu-panel .menu--secondary {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-right: 0;
    }

    .site-menu-panel .menu--secondary > li {
        display: block;
        padding: 0;
        border: 0;
    }

    .site-menu-panel .menu--secondary > li > a {
        min-height: 32px;
        padding: 0 10px;
        border: 1px solid rgba(153, 195, 255, 0.14);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.035);
        font-family: Arial, sans-serif;
        font-size: 10px;
        line-height: 1;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: rgba(226, 233, 241, 0.74);
    }

    .blog-index--has-sidebar {
        grid-template-columns: minmax(0, 1fr);
    }

    .comment-list .children {
        margin-left: 12px;
    }

    .comment-body,
    .comment-respond {
        padding: 14px;
    }
}

@media (max-width: 680px) {
    .site-footer__zone--align-center,
    .site-footer__zone--align-right {
        text-align: left;
        align-items: flex-start;
    }

    .site-footer__zone--align-center .footer-zone-navigation .menu,
    .site-footer__zone--align-right .footer-zone-navigation .menu {
        justify-items: start;
    }

    .site-footer__zone--align-center .footer-zone-navigation--display-row .menu,
    .site-footer__zone--align-right .footer-zone-navigation--display-row .menu {
        justify-content: flex-start;
    }

    .site-footer__zone .footer-zone-navigation--display-row .menu {
        display: grid;
        gap: 8px;
        width: 100%;
    }

    .site-footer__zone .footer-zone-navigation--display-row .menu li {
        width: 100%;
    }

    .site-footer__zone .footer-zone-navigation--display-row .menu a {
        white-space: normal;
    }

    .site-footer__meta {
        padding: 22px 0;
    }
}

@media (max-width: 320px) {
    .site-title {
        font-size: clamp(18px, 7vw, 24px);
    }

    .site-title__icon {
        display: none;
    }

    .site-title a {
        gap: 0;
    }
}







