:root {
    --wbz-paper: #f7f3ec;
    --wbz-paper2: #ede6d6;
    --wbz-ink: #1a1a1a;
    --wbz-ink2: #3a3a3a;
    --wbz-mute: #7a7164;
    --wbz-line: #d8cfbe;
    --wbz-umber: #8a6f4a;
    --wbz-vermilion: #c14a3a;
    font-family: 'Noto Serif','Noto Serif Thai','Noto Serif SC',serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

.wbz-body {
    background: var(--wbz-paper);
    color: var(--wbz-ink);
    min-height: 100vh;
    font-family: 'Noto Serif','Noto Serif Thai',serif;
    font-size: 15.5px;
    line-height: 1.85;
    background-image: radial-gradient(ellipse at top,#fbf8f1 0,var(--wbz-paper) 60%);
    overflow-x: hidden;
}

/* HEADER */
.wbz-hd {
    padding: 32px 40px 0;
    position: relative;
    z-index: 30;
    background: transparent;
}

.wbz-hd__row {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    padding-bottom: 24px;
}

.wbz-mark {
    display: flex;
    align-items: center;
    gap: 14px;
}

.wbz-mark__seal {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--wbz-vermilion);
    color: #fff8e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif SC',serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.2);
}

.wbz-mark__name {
    font-family: 'Cormorant Garamond',serif;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: .5px;
    color: var(--wbz-ink);
}

.wbz-mark__sub {
    font-style: italic;
    font-family: 'Cormorant Garamond';
    color: var(--wbz-mute);
    font-size: 15px;
}

.wbz-tog {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--wbz-line);
    background: transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
}

.wbz-tog i {
    width: 18px;
    height: 1px;
    background: var(--wbz-ink);
    display: block;
}

.wbz-nav {
    display: flex;
    gap: 6px;
    margin-left: auto;
    align-items: center;
}

.wbz-nav__a {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 10px 14px;
    font-size: 15px;
    color: var(--wbz-ink2);
    transition: .3s;
    position: relative;
}

.wbz-nav__a::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 1px;
    background: var(--wbz-vermilion);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.wbz-nav__a:hover {
    color: var(--wbz-vermilion);
}

.wbz-nav__a:hover::after,.wbz-nav__a.cur::after {
    transform: scaleX(1);
}

.wbz-nav__a.cur {
    color: var(--wbz-vermilion);
}

.wbz-nav__no {
    font-family: 'Noto Serif SC';
    font-size: 13px;
    color: var(--wbz-umber);
    font-weight: 400;
}

.wbz-hd__line {
    max-width: 1180px;
    margin: 0 auto;
    height: 1px;
    background: var(--wbz-line);
}

/* MAIN */
.wbz-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

/* HERO */
.wbz-hero {
    position: relative;
    text-align: center;
    padding: 80px 0 60px;
}

.wbz-hero__no {
    display: inline-block;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 17px;
    color: var(--wbz-umber);
    letter-spacing: 6px;
    margin-bottom: 36px;
}

.wbz-hero__h {
    font-family: 'Cormorant Garamond',serif;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -.5px;
    margin-bottom: 32px;
}

.wbz-hero__h em {
    display: block;
    font-style: normal;
    font-size: 96px;
    color: var(--wbz-ink);
    font-weight: 400;
}

.wbz-hero__sub {
    display: block;
    font-style: italic;
    font-size: 24px;
    color: var(--wbz-mute);
    margin-top: 18px;
    font-weight: 300;
    letter-spacing: 1px;
}

.wbz-hero__p {
    max-width: 580px;
    margin: 0 auto 38px;
    color: var(--wbz-ink2);
    font-size: 17px;
    line-height: 1.9;
    font-style: italic;
    font-family: 'Cormorant Garamond';
}

.wbz-hero__row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.wbz-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid var(--wbz-ink);
    color: var(--wbz-ink);
    background: transparent;
    font-family: 'Cormorant Garamond';
    font-size: 17px;
    letter-spacing: 1px;
    transition: .3s;
}

.wbz-btn:hover {
    background: var(--wbz-ink);
    color: var(--wbz-paper);
}

.wbz-link {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 17px;
    color: var(--wbz-vermilion);
    border-bottom: 1px solid var(--wbz-vermilion);
    padding-bottom: 2px;
    transition: .3s;
}

.wbz-link:hover {
    color: var(--wbz-ink);
    border-color: var(--wbz-ink);
}

.wbz-hero__seal {
    position: absolute;
    right: 0;
    top: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .85;
}

.wbz-hero__seal span {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    background: var(--wbz-vermilion);
    color: #fff8e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif SC';
    font-weight: 700;
    font-size: 36px;
    transform: rotate(-6deg);
    box-shadow: inset 0 0 0 4px rgba(255,255,255,.18),0 0 0 1px rgba(193,74,58,.3);
}

/* RULE */
.wbz-rule {
    height: 1px;
    background: var(--wbz-line);
    margin: 60px 0;
    position: relative;
}

.wbz-rule::after {
    content: '·';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-58%);
    background: var(--wbz-paper);
    padding: 0 16px;
    color: var(--wbz-umber);
    font-size: 24px;
}

/* CAPTION */
.wbz-cap {
    text-align: center;
    margin-bottom: 48px;
}

.wbz-cap__no {
    display: block;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-umber);
    font-size: 15px;
    letter-spacing: 5px;
    margin-bottom: 14px;
}

.wbz-cap__h {
    font-family: 'Cormorant Garamond';
    font-weight: 400;
    font-size: 48px;
    color: var(--wbz-ink);
    letter-spacing: -.4px;
    line-height: 1.15;
}

.wbz-cap__sub {
    display: block;
    margin-top: 10px;
    color: var(--wbz-mute);
    font-family: 'Noto Serif SC';
    font-size: 15px;
    letter-spacing: 4px;
}

/* FEATURE */
.wbz-feature__c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.wbz-feature__fig {
    overflow: hidden;
}

.wbz-feature__cap {
    padding: 0 12px;
}

.wbz-feature__date {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-umber);
    font-size: 15px;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 18px;
}

.wbz-feature__h {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 36px;
    line-height: 1.25;
    color: var(--wbz-ink);
    margin-bottom: 18px;
}

.wbz-feature__p {
    color: var(--wbz-ink2);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 22px;
    font-style: italic;
    font-family: 'Cormorant Garamond';
}

.wbz-feature__more {
    font-family: 'Cormorant Garamond';
    font-size: 17px;
    color: var(--wbz-vermilion);
    border-bottom: 1px solid var(--wbz-vermilion);
    padding-bottom: 2px;
}

/* CATEGORIES */
.wbz-cats__grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0;
    border-top: 1px solid var(--wbz-line);
    border-left: 1px solid var(--wbz-line);
}

.wbz-cats__c {
    position: relative;
    padding: 34px 32px;
    border-right: 1px solid var(--wbz-line);
    border-bottom: 1px solid var(--wbz-line);
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 170px;
    transition: .3s;
    background: transparent;
}

.wbz-cats__c:hover {
    background: var(--wbz-paper2);
}

.wbz-cats__no {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-umber);
    font-size: 14px;
    letter-spacing: 3px;
}

.wbz-cats__h {
    font-family: 'Cormorant Garamond';
    font-weight: 400;
    font-size: 30px;
    color: var(--wbz-ink);
    line-height: 1.2;
}

.wbz-cats__line {
    width: 32px;
    height: 1px;
    background: var(--wbz-vermilion);
    transition: .4s;
}

.wbz-cats__c:hover .wbz-cats__line {
    width: 80px;
}

.wbz-cats__arr {
    position: absolute;
    right: 32px;
    bottom: 30px;
    font-family: 'Cormorant Garamond';
    font-size: 22px;
    color: var(--wbz-mute);
    transition: .3s;
}

.wbz-cats__c:hover .wbz-cats__arr {
    color: var(--wbz-vermilion);
    transform: translateX(6px);
}

/* GRID */
.wbz-grid__list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px 48px;
}

.wbz-grid__c {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.wbz-grid__fig {
    display: block;
    overflow: hidden;
}

.wbz-grid__cat {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 14px;
    color: var(--wbz-umber);
    letter-spacing: 3px;
}

.wbz-grid__h {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 26px;
    line-height: 1.3;
    color: var(--wbz-ink);
}

.wbz-grid__p {
    color: var(--wbz-ink2);
    font-size: 15.5px;
    line-height: 1.8;
    font-style: italic;
    font-family: 'Cormorant Garamond';
}

.wbz-grid__body {
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FEED */
.wbz-feed__list {
    list-style: none;
    max-width: 880px;
    margin: 0 auto;
}

.wbz-feed__r {
    border-bottom: 1px solid var(--wbz-line);
}

.wbz-feed__r:first-child {
    border-top: 1px solid var(--wbz-line);
}

.wbz-feed__r a {
    display: grid;
    grid-template-columns: 90px 1fr 80px;
    gap: 32px;
    align-items: baseline;
    padding: 24px 8px;
    transition: .3s;
}

.wbz-feed__r a:hover {
    padding-left: 24px;
    background: var(--wbz-paper2);
}

.wbz-feed__d {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-umber);
    font-size: 18px;
    letter-spacing: 1px;
}

.wbz-feed__h {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: var(--wbz-ink);
}

.wbz-feed__y {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-mute);
    font-size: 16px;
    text-align: right;
}

/* ABOUT */
.wbz-about {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.wbz-about__body {
    margin-top: 24px;
    color: var(--wbz-ink2);
    font-size: 16px;
    line-height: 2;
    font-style: italic;
    font-family: 'Cormorant Garamond';
}

/* CATEGORY */
.wbz-cat__hd {
    text-align: center;
    padding: 60px 0 30px;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--wbz-line);
}

.wbz-cat__h {
    font-family: 'Cormorant Garamond';
    font-weight: 400;
    font-size: 64px;
    color: var(--wbz-ink);
    line-height: 1.1;
    margin: 14px 0 20px;
}

.wbz-cat__p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--wbz-mute);
    font-size: 16px;
    font-style: italic;
    font-family: 'Cormorant Garamond';
}

.wbz-cat__split {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 60px;
}

.wbz-row {
    display: grid;
    grid-template-columns: 60px 220px 1fr;
    gap: 30px;
    align-items: start;
    padding: 30px 0;
    border-bottom: 1px solid var(--wbz-line);
}

.wbz-row__no {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-umber);
    font-size: 18px;
    letter-spacing: 3px;
}

.wbz-row__fig {
    overflow: hidden;
}

.wbz-row__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wbz-row__body time {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-umber);
    font-size: 14px;
    letter-spacing: 2px;
}

.wbz-row__h {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 24px;
    line-height: 1.35;
    color: var(--wbz-ink);
}

.wbz-row__p {
    color: var(--wbz-ink2);
    font-size: 15.5px;
    line-height: 1.85;
    font-style: italic;
    font-family: 'Cormorant Garamond';
}

.wbz-page {
    margin-top: 40px;
    text-align: center;
    font-family: 'Cormorant Garamond';
    font-size: 17px;
}

.wbz-page a,.wbz-page span {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 4px;
    color: var(--wbz-mute);
    transition: .3s;
}

.wbz-page .current,.wbz-page a:hover {
    color: var(--wbz-vermilion);
    border-bottom: 1px solid var(--wbz-vermilion);
}

.wbz-side {
    position: sticky;
    top: 40px;
}

.wbz-side__h {
    text-align: center;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 17px;
    color: var(--wbz-umber);
    letter-spacing: 5px;
    margin-bottom: 24px;
}

.wbz-side__list {
    list-style: none;
    counter-reset: wbzlist;
}

.wbz-side__list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--wbz-line);
}

.wbz-side__list li:last-child {
    border-bottom: 0;
}

.wbz-side__list a {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-family: 'Cormorant Garamond';
    font-size: 17px;
    line-height: 1.5;
    color: var(--wbz-ink);
}

.wbz-side__list a:hover {
    color: var(--wbz-vermilion);
}

.wbz-side__no {
    font-style: italic;
    color: var(--wbz-umber);
    min-width: 24px;
}

/* POST */
.wbz-post {
    max-width: 780px;
    margin: 0 auto;
}

.wbz-crumb {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-mute);
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 36px;
    text-align: center;
}

.wbz-crumb a {
    color: var(--wbz-ink2);
}

.wbz-crumb a:hover {
    color: var(--wbz-vermilion);
}

.wbz-crumb em {
    color: var(--wbz-umber);
    font-style: italic;
}

.wbz-post__hd {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--wbz-line);
}

.wbz-post__date {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-umber);
    font-size: 16px;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 18px;
}

.wbz-post__h {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 44px;
    line-height: 1.2;
    color: var(--wbz-ink);
    margin-bottom: 20px;
}

.wbz-post__lead {
    color: var(--wbz-ink2);
    font-size: 18px;
    line-height: 1.85;
    font-style: italic;
    font-family: 'Cormorant Garamond';
    max-width: 600px;
    margin: 0 auto 22px;
}

.wbz-post__meta {
    display: flex;
    justify-content: center;
    gap: 14px;
    color: var(--wbz-mute);
    font-size: 14px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    letter-spacing: 1.5px;
}

.wbz-post__cover {
    margin-bottom: 40px;
    overflow: hidden;
}

.wbz-post__body {
    font-family: 'Noto Serif','Noto Serif Thai',serif;
    font-size: 17px;
    line-height: 2;
    color: var(--wbz-ink2);
    padding: 0 4px;
}

.wbz-post__body h2,.wbz-post__body h3 {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    color: var(--wbz-ink);
    margin: 36px 0 18px;
    line-height: 1.3;
}

.wbz-post__body h2 {
    font-size: 30px;
}

.wbz-post__body h3 {
    font-size: 24px;
}

.wbz-post__body p {
    margin-bottom: 18px;
}

.wbz-post__body img {
    margin: 24px auto;
    display: block;
}

.wbz-post__body blockquote {
    border-left: 2px solid var(--wbz-vermilion);
    padding: 8px 0 8px 24px;
    margin: 24px 0;
    font-style: italic;
    font-family: 'Cormorant Garamond';
    font-size: 19px;
    color: var(--wbz-ink2);
}

.wbz-post__tags {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 50px 0;
    color: var(--wbz-umber);
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.wbz-tag {
    padding: 6px 14px;
    border: 1px solid var(--wbz-line);
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 15px;
    color: var(--wbz-ink2);
    transition: .3s;
}

.wbz-tag:hover {
    border-color: var(--wbz-vermilion);
    color: var(--wbz-vermilion);
}

.wbz-post__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px 0;
    padding-top: 30px;
    border-top: 1px solid var(--wbz-line);
}

.wbz-post__nav-c {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 8px;
}

.wbz-post__nav-c--r {
    text-align: right;
}

.wbz-post__nav-k {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 14px;
    color: var(--wbz-umber);
    letter-spacing: 2px;
}

.wbz-post__nav-h {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: var(--wbz-ink);
}

.wbz-post__nav-c:hover .wbz-post__nav-h {
    color: var(--wbz-vermilion);
}

.wbz-related__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.wbz-related__c {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wbz-related__c figure {
    overflow: hidden;
}

.wbz-related__c h4 {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 17px;
    line-height: 1.4;
    color: var(--wbz-ink);
}

.wbz-related__c time {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 14px;
    color: var(--wbz-umber);
}

.wbz-related__c:hover h4 {
    color: var(--wbz-vermilion);
}

/* 404 */
.wbz-404 {
    text-align: center;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.wbz-404__seal {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background: var(--wbz-vermilion);
    color: #fff8e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif SC';
    font-size: 60px;
    font-weight: 700;
    transform: rotate(-4deg);
    box-shadow: inset 0 0 0 5px rgba(255,255,255,.18);
}

.wbz-404__h {
    font-family: 'Cormorant Garamond';
    font-weight: 300;
    font-size: 80px;
    line-height: .95;
    color: var(--wbz-ink);
    letter-spacing: -1px;
}

.wbz-404__p {
    color: var(--wbz-mute);
    font-size: 17px;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

/* FOOTER */
.wbz-ft {
    margin-top: 80px;
    padding: 0 40px;
}

.wbz-ft__line {
    max-width: 1180px;
    margin: 0 auto 40px;
    height: 1px;
    background: var(--wbz-line);
}

.wbz-ft__top {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 60px;
}

.wbz-ft__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wbz-ft__brand .wbz-mark__seal {
    margin-bottom: 6px;
}

.wbz-ft__brand h4 {
    font-family: 'Cormorant Garamond';
    font-weight: 500;
    font-size: 22px;
    color: var(--wbz-ink);
}

.wbz-ft__brand p {
    color: var(--wbz-mute);
    font-size: 14.5px;
    line-height: 1.85;
    font-family: 'Cormorant Garamond';
    font-style: italic;
}

.wbz-ft__cols {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.wbz-ft__h {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-size: 16px;
    color: var(--wbz-umber);
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.wbz-ft__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wbz-ft__col a {
    font-family: 'Cormorant Garamond';
    font-size: 16px;
    color: var(--wbz-ink2);
}

.wbz-ft__col a:hover {
    color: var(--wbz-vermilion);
}

.wbz-ft__zen {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-ink2);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.wbz-ft__bot {
    max-width: 1180px;
    margin: 50px auto 0;
    padding: 24px 0;
    border-top: 1px solid var(--wbz-line);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-family: 'Cormorant Garamond';
    font-style: italic;
    color: var(--wbz-mute);
    font-size: 14px;
    letter-spacing: 1px;
}

.wbz-ft__dot {
    color: var(--wbz-umber);
}

/* RESPONSIVE */
@media(max-width:960px) {
    .wbz-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--wbz-paper);
        border-top: 1px solid var(--wbz-line);
        padding: 14px 24px;
    }

    .wbz-nav.open {
        display: flex;
    }

    .wbz-tog {
        display: flex;
    }

    .wbz-mark__sub {
        display: none;
    }

    .wbz-hero__h em {
        font-size: 60px;
    }

    .wbz-hero__sub {
        font-size: 18px;
    }

    .wbz-hero__seal {
        width: 60px;
        height: 60px;
    }

    .wbz-hero__seal span {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .wbz-cap__h {
        font-size: 32px;
    }

    .wbz-feature__c {
        grid-template-columns: 1fr;
    }

    .wbz-cats__grid {
        grid-template-columns: 1fr;
    }

    .wbz-grid__list {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wbz-feed__r a {
        grid-template-columns: 80px 1fr;
    }

    .wbz-feed__y {
        display: none;
    }

    .wbz-cat__split {
        grid-template-columns: 1fr;
    }

    .wbz-cat__h {
        font-size: 42px;
    }

    .wbz-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wbz-related__grid {
        grid-template-columns: repeat(2,1fr);
    }

    .wbz-post__h {
        font-size: 30px;
    }

    .wbz-post__nav {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wbz-ft__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wbz-ft__cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

}


/* ===== Carousel Scroll ===== */
.wbz-carousel-wrap {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}
.wbz-carousel-track {
    display: flex;
    animation: wbz-scroll 25s linear infinite;
}
.wbz-carousel-track:hover {
    animation-play-state: paused;
}
.wbz-carousel-slide {
    display: flex;
    gap: 12px;
    padding: 0 6px;
    flex-shrink: 0;
}
@keyframes wbz-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* Universal logo */
.tpl-logo-img,.tpl-logo-img img{display:inline-block !important;vertical-align:middle;max-width:180px;width:auto;height:48px;margin-right:6px;object-fit:contain}
mip-img.tpl-logo-img{width:auto;max-width:180px;height:48px}

/* === Unified online hero buttons (added by batch script) === */
[data-tpl-online]{position:relative;color:#fff !important;border:none !important}
[data-tpl-online="play"]{background:linear-gradient(135deg,#10b981,#059669) !important;box-shadow:0 4px 14px rgba(16,185,129,.4) !important}
[data-tpl-online="enter"]{background:linear-gradient(135deg,#3b82f6,#1d4ed8) !important;box-shadow:0 4px 14px rgba(59,130,246,.4) !important}
[data-tpl-online="download"]{background:linear-gradient(135deg,#a855f7,#7c3aed) !important;box-shadow:0 4px 14px rgba(168,85,247,.4) !important}
[data-tpl-online="register"]{background:linear-gradient(135deg,#f59e0b,#d97706) !important;box-shadow:0 4px 14px rgba(245,158,11,.4) !important}
[data-tpl-online]:hover{filter:brightness(1.1);transform:translateY(-2px)}
.tpl-online-btns{display:flex !important;flex-wrap:wrap;gap:10px;margin:14px 0;justify-content:center;align-items:center}
.tpl-online-btns [data-tpl-online]{display:inline-block;padding:10px 18px;border-radius:25px;font-size:14px;font-weight:700;text-decoration:none;white-space:nowrap;cursor:pointer;color:#fff !important}

/* About - extended static block */
.wbz-about__sub{
    margin-top:8px;
    color:var(--wbz-mute);
    font-size:13px;
    letter-spacing:6px;
    font-style:italic;
    font-family:'Cormorant Garamond';
}
.wbz-about__static{
    max-width:760px;
    margin:50px auto 0;
    text-align:left;
    border-top:1px solid var(--wbz-line);
    padding-top:40px;
}
.wbz-about__lead{
    color:var(--wbz-ink2);
    font-size:15px;
    line-height:2;
    text-align:justify;
    text-indent:2em;
    margin-bottom:36px;
    position:relative;
}
.wbz-about__lead::first-letter{
    font-family:'Cormorant Garamond',serif;
    font-size:48px;
    line-height:1;
    color:var(--wbz-vermilion);
    float:left;
    margin:4px 8px 0 0;
    font-weight:600;
}
.wbz-about__pillars{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin:40px 0;
    padding:30px 0;
    border-top:1px solid var(--wbz-line);
    border-bottom:1px solid var(--wbz-line);
}
.wbz-pillar{
    text-align:center;
    padding:0 8px;
    border-right:1px dashed var(--wbz-line);
}
.wbz-pillar:last-child{border-right:none}
.wbz-pillar__sym{
    display:block;
    font-size:32px;
    color:var(--wbz-umber);
    line-height:1;
    margin-bottom:14px;
    font-family:serif;
}
.wbz-pillar__h{
    font-family:'Cormorant Garamond',serif;
    font-size:18px;
    font-weight:500;
    color:var(--wbz-ink);
    margin:0 0 8px;
    letter-spacing:1px;
}
.wbz-pillar__p{
    font-size:12px;
    color:var(--wbz-mute);
    line-height:1.7;
    font-style:italic;
    margin:0;
}
.wbz-about__quote{
    margin:40px auto;
    max-width:600px;
    text-align:center;
    padding:24px 30px;
    border-left:2px solid var(--wbz-vermilion);
    border-right:2px solid var(--wbz-vermilion);
    background:var(--wbz-paper2);
}
.wbz-about__quote p{
    font-family:'Cormorant Garamond','Noto Serif Thai',serif;
    font-size:17px;
    font-style:italic;
    color:var(--wbz-ink);
    line-height:1.9;
    margin:0 0 10px;
}
.wbz-about__quote cite{
    font-size:12px;
    color:var(--wbz-mute);
    letter-spacing:2px;
    font-style:normal;
}
.wbz-about__stamp{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    margin-top:30px;
    padding-top:24px;
    border-top:1px dashed var(--wbz-line);
}
.wbz-about__stamp-mark{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    background:var(--wbz-vermilion);
    color:#fff8e8;
    font-family:'Noto Serif SC',serif;
    font-size:22px;
    font-weight:700;
    border-radius:4px;
    transform:rotate(-4deg);
    box-shadow:0 2px 0 rgba(0,0,0,.1);
}
.wbz-about__stamp-txt{
    font-size:13px;
    color:var(--wbz-mute);
    letter-spacing:3px;
    font-style:italic;
}
@media(max-width:700px){
    .wbz-about__pillars{grid-template-columns:repeat(2,1fr);gap:20px}
    .wbz-pillar{border-right:none;border-bottom:1px dashed var(--wbz-line);padding-bottom:16px}
    .wbz-pillar:nth-last-child(-n+2){border-bottom:none}
    .wbz-pillar:nth-child(odd){border-right:1px dashed var(--wbz-line)}
    .wbz-about__lead::first-letter{font-size:40px}
}
