:root {
            --pt-yellow: #ffc120;
            --pt-yellow-soft: #fff5d6;
            --pt-ink: #171717;
            --pt-text: #303744;
            --pt-muted: #667085;
            --pt-border: #e5e7eb;
            --pt-panel: #ffffff;
            --pt-soft: #f8fafc;
            --pt-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
            --pt-radius: 8px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            max-width: 100vw;
            overflow-x: hidden;
            background: #ffffff;
            color: var(--pt-text);
            font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            line-height: 1.5;
        }

        img,
        svg {
            max-width: 100%;
            height: auto;
        }

        a {
            color: inherit;
        }

        button,
        input {
            font: inherit;
        }

        button {
            cursor: pointer;
        }

        .reveal {
            opacity: 1;
            transform: translateY(0);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #FFC120;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        body > div.lg\:hidden {
            display: block;
            position: relative;
            z-index: 101;
            background: #1a1a1a;
            color: #ffffff;
            text-align: center;
            padding: 8px 16px;
        }

        body > div.lg\:hidden a {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #ffffff;
            font-size: 0.88rem;
            font-weight: 700;
            text-decoration: none;
        }

        body > div.lg\:hidden span:first-child,
        body > div.lg\:hidden span:last-child {
            color: var(--pt-yellow);
            font-weight: 900;
            text-transform: uppercase;
        }

        nav.shadow-sm {
            position: relative;
            z-index: 80;
            min-height: 72px;
            padding: 12px 0;
            background: #ffffff;
            box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
        }

        nav.shadow-sm > div {
            width: 100%;
            height: 100%;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 16px;
        }

        nav.shadow-sm > div > div {
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        nav.shadow-sm .flex.items-center {
            display: flex;
            align-items: center;
        }

        nav.shadow-sm img[alt="PTENOTE Logo"] {
            width: auto;
            height: 48px;
            max-width: none;
        }

        nav.shadow-sm .hidden.lg\:flex {
            display: none;
        }

        nav.shadow-sm .nav-link {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #374151;
            font-size: 1.1vw;
            font-weight: 500;
            text-decoration: none;
            white-space: nowrap;
        }

        nav.shadow-sm .nav-link img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        nav.shadow-sm a[href*="learn.ptenote.com"] {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            border-radius: 8px;
            background: #2d2d2d;
            color: #ffffff;
            padding: 6px 12px;
            font-size: 0.75rem;
            font-weight: 500;
            text-decoration: none;
            transition: opacity 160ms ease;
        }

        nav.shadow-sm a[href*="learn.ptenote.com"]:hover,
        nav.shadow-sm a[href*="learn.ptenote.com"]:focus-visible {
            opacity: 0.9;
        }

        nav.shadow-sm a[href*="learn.ptenote.com"] svg {
            width: 12px;
            height: 12px;
            flex: 0 0 auto;
        }

        .blog-page {
            background: #ffffff;
        }

        .blog-container {
            width: min(1320px, calc(100% - 32px));
            margin: 0 auto;
        }

        .blog-hero {
            position: relative;
            overflow: visible;
            border-bottom: 1px solid var(--pt-border);
            background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
        }

        .blog-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(26, 26, 26, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(26, 26, 26, 0.04) 1px, transparent 1px);
            background-size: 42px 42px;
            pointer-events: none;
            mask-image: linear-gradient(to bottom, black 0%, transparent 82%);
        }

        .blog-hero__inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1fr);
            gap: 54px;
            align-items: center;
            padding: 58px 0 48px;
        }

        .hero-copy {
            max-width: 620px;
        }

        .hero-pill {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 32px;
            margin: 0 0 20px;
            padding: 0 14px;
            border-radius: 999px;
            background: var(--pt-yellow);
            color: #1a1a1a;
            font-size: 0.82rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .hero-pill span {
            color: #1a1a1a;
            font-size: 12px;
        }

        .hero-pill__icon {
            display: inline-block;
            flex: 0 0 auto;
            width: 24px;
            height: 24px;
            color: #1a1a1a;
        }

        .hero-copy h1 {
            margin: 0;
            color: var(--pt-ink);
            font-size: 4.25rem;
            line-height: 1.02;
            font-weight: 900;
        }

        .hero-copy h1 mark {
            display: inline-block;
            padding: 0 6px 3px;
            border-radius: 4px;
            background: var(--pt-yellow);
            color: #1a1a1a;
        }

        .hero-copy p {
            max-width: 520px;
            margin: 18px 0 0;
            color: var(--pt-muted);
            font-size: 1.06rem;
            font-weight: 600;
            line-height: 1.68;
        }

        .hero-search {
            width: min(100%, 560px);
            display: grid;
            grid-template-columns: minmax(0, 1fr) 48px;
            gap: 8px;
            margin-top: 24px;
            border: 1px solid #cfd6df;
            border-radius: 8px;
            background: #ffffff;
            padding: 8px;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
        }

        .hero-search input {
            min-width: 0;
            min-height: 44px;
            border: 0;
            outline: none;
            padding: 0 12px;
            color: var(--pt-text);
            background: transparent;
            font-size: 0.94rem;
        }

        .hero-search button {
            width: 44px;
            height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--pt-border);
            border-radius: 8px;
            background: #ffffff;
            color: #111827;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 18px;
        }

        .blog-button {
            min-height: 48px;
            min-width: 210px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border: 1px solid var(--pt-yellow);
            border-radius: 8px;
            background: var(--pt-yellow);
            color: #1a1a1a;
            padding: 0 22px;
            font-weight: 900;
            text-decoration: none;
            transition: transform 160ms ease, box-shadow 160ms ease;
        }

        .blog-button:hover,
        .blog-button:focus-visible {
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(255, 193, 32, 0.32);
        }

        .blog-button--ghost {
            background: #ffffff;
            border-color: #cfd6df;
        }

        .blog-button--light {
            background: #ffffff;
            border-color: #ffffff;
        }

        .hero-visual {
            position: relative;
            min-height: 430px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual__image {
            position: relative;
            z-index: 1;
            display: block;
            width: min(100%, 760px);
            height: auto;
            object-fit: contain;
        }

        .hero-screen {
            position: absolute;
            top: 18px;
            right: 86px;
            width: 500px;
            border: 15px solid #151515;
            border-bottom-width: 30px;
            border-radius: 14px;
            background: #ffffff;
            box-shadow: 0 24px 54px rgba(15, 23, 42, 0.22);
            transform: rotate(-1deg);
        }

        .hero-screen__bar {
            display: grid;
            grid-template-columns: auto 1fr 42px;
            gap: 14px;
            align-items: center;
            padding: 14px 16px 10px;
            border-bottom: 1px solid var(--pt-border);
        }

        .hero-screen__bar strong {
            color: #1a1a1a;
            font-size: 1rem;
            font-weight: 900;
        }

        .hero-screen__bar span {
            height: 6px;
            border-radius: 999px;
            background: #e5e7eb;
        }

        .hero-screen__body {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 108px;
            gap: 18px;
            align-items: center;
            padding: 18px;
        }

        .hero-screen__body small {
            width: fit-content;
            display: inline-flex;
            margin-bottom: 8px;
            border-radius: 999px;
            background: var(--pt-yellow);
            padding: 4px 10px;
            color: #1a1a1a;
            font-size: 0.7rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .hero-screen__body b {
            display: block;
            color: #1a1a1a;
            font-size: 1.26rem;
            line-height: 1.18;
        }

        .screen-lines {
            display: grid;
            gap: 8px;
            margin-top: 22px;
        }

        .screen-lines i {
            display: block;
            height: 8px;
            border-radius: 999px;
            background: #e5e7eb;
        }

        .screen-lines i:nth-child(2) {
            width: 78%;
        }

        .screen-lines i:nth-child(3) {
            width: 54%;
        }

        .hero-score {
            width: 88px;
            height: 88px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: conic-gradient(#22c55e 0 79%, #e5e7eb 79% 100%);
            color: #1a1a1a;
            font-size: 2rem;
            font-weight: 900;
            box-shadow: inset 0 0 0 11px #ffffff;
        }

        .hero-books {
            position: absolute;
            left: 58px;
            bottom: 102px;
            display: grid;
            gap: 6px;
            transform: rotate(-8deg);
        }

        .hero-books span {
            min-width: 130px;
            display: block;
            border-radius: 5px;
            background: #171717;
            color: var(--pt-yellow);
            padding: 8px 12px;
            font-size: 0.74rem;
            font-weight: 900;
            text-transform: uppercase;
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.14);
        }

        .hero-books span:nth-child(2) {
            background: #39306c;
            color: #ffffff;
        }

        .hero-books span:nth-child(3) {
            background: #0f766e;
            color: #ffffff;
        }

        .sticky-note {
            position: absolute;
            top: 0;
            right: 14px;
            width: 118px;
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            border-radius: 4px;
            background: #ffd86b;
            color: #1a1a1a;
            font-weight: 900;
            box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
            transform: rotate(-3deg);
        }

        .passport-stack {
            position: absolute;
            right: 0;
            top: 120px;
            width: 92px;
            height: 132px;
            border-radius: 6px;
            background: #101828;
            color: var(--pt-yellow);
            box-shadow: 0 18px 32px rgba(15, 23, 42, 0.18);
            transform: rotate(9deg);
        }

        .passport-stack::before {
            content: "PASSPORT";
            position: absolute;
            inset: 20px 10px auto;
            border: 1px solid rgba(255, 193, 32, 0.7);
            border-radius: 999px;
            padding: 24px 0 8px;
            font-size: 0.62rem;
            font-weight: 900;
            text-align: center;
        }

        .hero-mug {
            position: absolute;
            right: 10px;
            bottom: 78px;
            width: 112px;
            height: 104px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 14px 14px 26px 26px;
            background: #f2a000;
            color: #1a1a1a;
            font-size: 0.78rem;
            font-weight: 900;
            box-shadow: 0 20px 44px rgba(180, 83, 9, 0.2);
        }

        .hero-mug::after {
            content: "";
            position: absolute;
            right: -27px;
            top: 29px;
            width: 35px;
            height: 42px;
            border: 10px solid #f2a000;
            border-left: 0;
            border-radius: 0 999px 999px 0;
        }

        .hero-notebook {
            position: absolute;
            right: 136px;
            bottom: 22px;
            width: 260px;
            display: grid;
            gap: 5px;
            border: 1px solid #d8c39b;
            border-radius: 8px;
            background: #fff7df;
            color: #1a1a1a;
            padding: 18px 22px;
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
            transform: rotate(4deg);
        }

        .hero-notebook strong,
        .hero-notebook span {
            font-weight: 900;
        }

        .mini-owl {
            position: absolute;
            left: 180px;
            bottom: 55px;
            width: 94px;
            height: 108px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }

        .mini-owl img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: drop-shadow(0 16px 22px rgba(15, 23, 42, 0.16));
        }

        .mini-owl::before,
        .mini-owl::after {
            display: none;
        }

        .mini-owl::before {
            left: 12px;
        }

        .mini-owl::after {
            right: 12px;
        }

        .owl-cap {
            display: none;
        }

        .guide-tabs {
            background: #ffffff;
            border-bottom: 1px solid var(--pt-border);
            padding: 20px 0;
        }

        .guide-tabs__inner {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .guide-tabs a,
        .guide-tabs button {
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--pt-border);
            border-radius: 999px;
            background: #ffffff;
            color: var(--pt-text);
            padding: 0 24px;
            font-size: 0.84rem;
            font-weight: 900;
            text-decoration: none;
        }

        .guide-tabs a.is-active,
        .guide-tabs a:hover,
        .guide-tabs a:focus-visible,
        .guide-tabs button.is-active,
        .guide-tabs button:hover,
        .guide-tabs button:focus-visible {
            background: var(--pt-yellow);
            border-color: var(--pt-yellow);
            color: #1a1a1a;
        }

        .blog-main {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 330px;
            gap: 34px;
            align-items: start;
            padding: 34px 0 44px;
        }

        .blog-content {
            min-width: 0;
            display: grid;
            gap: 46px;
        }

        .section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0 0 18px;
            color: var(--pt-ink);
            font-size: 1.42rem;
            line-height: 1.2;
            font-weight: 900;
        }

        .title-spark {
            color: var(--pt-yellow);
            font-weight: 900;
        }

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

        .feature-card {
            position: relative;
            min-height: 382px;
            overflow: visible;
            border-radius: 8px;
            color: #ffffff;
            background: #171717;
            box-shadow: 0 16px 38px rgba(15, 23, 42, 0.14);
        }

        .feature-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent),
                repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 8px);
        }

        .feature-card--purple {
            background: linear-gradient(135deg, #2d1f4d, #4c2d82);
        }

        .feature-card > a {
            position: relative;
            z-index: 1;
            min-height: inherit;
            display: block;
            color: inherit;
            text-decoration: none;
            padding: 24px;
        }

        .slice-image {
            display: block;
            width: 100%;
            height: auto;
        }

        .feature-card--sliced {
            min-height: 0;
            background: transparent;
            box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
        }

        .feature-card--sliced::before,
        .feature-card--sliced .feature-badge,
        .feature-card--sliced .feature-copy,
        .feature-card--sliced .rocket-art,
        .feature-card--sliced .bars-art,
        .feature-card--sliced .mic-art {
            display: none;
        }

        .feature-card--sliced > a {
            min-height: 0;
            padding: 0;
        }

        .feature-card--sliced .slice-image {
            aspect-ratio: 1 / 1;
            object-fit: cover;
        }

        .feature-badge {
            display: inline-flex;
            align-items: center;
            width: fit-content;
            justify-self: start;
            min-height: 24px;
            border-radius: 5px;
            background: var(--pt-yellow);
            color: #1a1a1a;
            padding: 0 8px;
            font-size: 0.68rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .feature-copy {
            position: absolute;
            z-index: 2;
            left: 24px;
            right: 24px;
            bottom: 20px;
            max-width: 330px;
        }

        .feature-copy h2 {
            margin: 0;
            color: #ffffff;
            font-size: 2.18rem;
            line-height: 1.08;
            font-weight: 900;
        }

        .feature-copy h2 span {
            color: var(--pt-yellow);
        }

        .feature-copy p {
            max-width: 260px;
            margin: 14px 0 26px;
            color: rgba(255, 255, 255, 0.86);
            font-size: 0.9rem;
            line-height: 1.48;
        }

        .card-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            color: rgba(255, 255, 255, 0.78);
            font-size: 0.78rem;
            font-weight: 800;
        }

        .rocket-art {
            position: absolute;
            right: 28px;
            bottom: 82px;
            width: 150px;
            height: 170px;
            transform: rotate(22deg);
        }

        .rocket-body {
            position: absolute;
            left: 44px;
            top: 0;
            width: 78px;
            height: 142px;
            border-radius: 50% 50% 38% 38%;
            background: linear-gradient(90deg, #f8fafc, #d8dce4);
            box-shadow: inset -16px -12px 0 rgba(0, 0, 0, 0.08);
        }

        .rocket-body::before {
            content: "";
            position: absolute;
            left: 22px;
            top: 42px;
            width: 32px;
            height: 32px;
            border-radius: 999px;
            border: 6px solid #333b47;
            background: var(--pt-yellow);
        }

        .rocket-fin {
            position: absolute;
            top: 98px;
            width: 40px;
            height: 62px;
            background: #d99a1c;
        }

        .rocket-fin--left {
            left: 20px;
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
        }

        .rocket-fin--right {
            right: 10px;
            clip-path: polygon(0 0, 100% 100%, 0 100%);
        }

        .rocket-flame {
            position: absolute;
            left: 54px;
            top: 132px;
            width: 58px;
            height: 90px;
            border-radius: 50%;
            background: linear-gradient(#fff3a2, #ffb000 58%, transparent);
            filter: blur(1px);
        }

        .rocket-cloud {
            position: absolute;
            left: -28px;
            right: -16px;
            bottom: -8px;
            height: 72px;
            background:
                radial-gradient(circle at 18% 72%, #d9d9d9 0 22px, transparent 23px),
                radial-gradient(circle at 34% 54%, #f0f0f0 0 32px, transparent 33px),
                radial-gradient(circle at 58% 62%, #d7d7d7 0 28px, transparent 29px),
                radial-gradient(circle at 82% 74%, #efefef 0 24px, transparent 25px);
            transform: rotate(-22deg);
        }

        .bars-art {
            position: absolute;
            right: 18px;
            bottom: 28px;
            display: flex;
            align-items: end;
            gap: 14px;
            height: 136px;
        }

        .bars-art span {
            width: 42px;
            border-radius: 6px 6px 0 0;
            background: linear-gradient(#e4af47, #9b6819);
        }

        .bars-art span:nth-child(1) {
            height: 62px;
        }

        .bars-art span:nth-child(2) {
            height: 92px;
        }

        .bars-art span:nth-child(3) {
            height: 126px;
        }

        .mic-art {
            position: absolute;
            right: 48px;
            bottom: 42px;
            width: 180px;
            height: 250px;
        }

        .mic-head {
            position: absolute;
            left: 52px;
            top: 22px;
            width: 96px;
            height: 148px;
            border-radius: 48px;
            background: linear-gradient(135deg, #c7a7ff, #7c4fd1);
            box-shadow: inset -16px -10px 0 rgba(0, 0, 0, 0.14);
        }

        .mic-head::before {
            content: "";
            position: absolute;
            inset: 28px 18px;
            background:
                repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0 6px, transparent 6px 16px);
        }

        .mic-stand {
            position: absolute;
            left: 93px;
            top: 156px;
            width: 16px;
            height: 72px;
            background: #9a75e6;
        }

        .mic-base {
            position: absolute;
            left: 50px;
            bottom: 18px;
            width: 110px;
            height: 22px;
            border-radius: 999px;
            background: #9a75e6;
        }

        .speech-bubble {
            position: absolute;
            right: 6px;
            top: 12px;
            width: 76px;
            height: 54px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.8);
            box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
        }

        .speech-bubble::after {
            content: "";
            position: absolute;
            left: 12px;
            bottom: -12px;
            border-width: 12px 10px 0 0;
            border-style: solid;
            border-color: rgba(255, 255, 255, 0.8) transparent transparent transparent;
        }

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

        .mini-card {
            min-height: 138px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 116px;
            gap: 8px;
            overflow: hidden;
            border: 1px solid var(--pt-border);
            border-radius: 8px;
            background: #ffffff;
            color: var(--pt-text);
            text-decoration: none;
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
            transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
        }

        .mini-card--sliced {
            display: block;
            min-height: 0;
            padding: 0;
        }

        .mini-card--sliced .mini-card__copy,
        .mini-card--sliced .mini-art {
            display: none;
        }

        .mini-card--sliced .slice-image {
            aspect-ratio: 1.96 / 1;
            object-fit: cover;
        }

        .mini-card:hover,
        .mini-card:focus-visible {
            transform: translateY(-2px);
            border-color: var(--pt-yellow);
            box-shadow: var(--pt-shadow);
        }

        .mini-card__copy {
            min-width: 0;
            padding: 16px 0 12px 16px;
        }

        .mini-card h3 {
            margin: 10px 0 14px;
            color: #111827;
            font-size: 1.02rem;
            line-height: 1.18;
            font-weight: 900;
        }

        .chip {
            display: inline-flex;
            min-height: 20px;
            align-items: center;
            border-radius: 4px;
            background: var(--chip, var(--pt-yellow));
            color: #ffffff;
            padding: 0 7px;
            font-size: 0.62rem;
            font-weight: 900;
            text-transform: uppercase;
        }

        .mini-meta {
            display: flex;
            gap: 10px;
            color: #7b8494;
            font-size: 0.72rem;
            font-weight: 800;
        }

        .mini-art {
            position: relative;
            min-height: 100%;
            background: linear-gradient(135deg, #f8fafc, #ffffff);
            overflow: hidden;
        }

        .mini-art::before {
            content: "";
            position: absolute;
            inset: 10px;
            border-radius: 8px;
        }

        .art-student::before {
            left: 30px;
            top: 20px;
            width: 62px;
            height: 62px;
            border-radius: 999px;
            background: #f4c7a1;
            box-shadow: 0 62px 0 18px #d8f2df, -30px 70px 0 8px #f7b8a1;
        }

        .art-notebook::before {
            left: 10px;
            top: 22px;
            width: 95px;
            height: 70px;
            border-radius: 5px;
            background:
                linear-gradient(90deg, transparent 48%, #e4d0ad 49% 51%, transparent 52%),
                repeating-linear-gradient(0deg, transparent 0 11px, #e5e7eb 11px 12px),
                #fff7df;
            box-shadow: 14px 10px 0 rgba(15, 23, 42, 0.08);
            transform: rotate(-8deg);
        }

        .art-notebook::after {
            content: "";
            position: absolute;
            right: 24px;
            top: 26px;
            width: 10px;
            height: 88px;
            border-radius: 999px;
            background: #222;
            transform: rotate(62deg);
            box-shadow: 8px 0 0 var(--pt-yellow);
        }

        .art-book::before {
            left: 18px;
            top: 50px;
            width: 86px;
            height: 48px;
            border-radius: 5px;
            background:
                linear-gradient(90deg, #fffaf0 0 47%, #d5b37a 48% 51%, #fffaf0 52%),
                repeating-linear-gradient(0deg, transparent 0 9px, #eadfca 10px 11px);
            box-shadow: 0 12px 18px rgba(15, 23, 42, 0.1);
            transform: rotate(6deg);
        }

        .art-headphones::before {
            left: 22px;
            top: 28px;
            width: 78px;
            height: 78px;
            border: 12px solid #f3b422;
            border-bottom-color: transparent;
            border-radius: 999px;
        }

        .art-headphones::after {
            content: "";
            position: absolute;
            left: 18px;
            top: 72px;
            width: 30px;
            height: 44px;
            border-radius: 10px;
            background: #20242b;
            box-shadow: 64px 0 0 #20242b;
        }

        .art-chart::before {
            left: 14px;
            top: 26px;
            width: 96px;
            height: 74px;
            border-radius: 5px;
            background:
                linear-gradient(90deg, transparent 0 14px, #2da1ff 14px 28px, transparent 28px 42px, #22c55e 42px 56px, transparent 56px 70px, #ff8a00 70px 84px, transparent 84px),
                repeating-linear-gradient(0deg, #ffffff 0 17px, #e5e7eb 18px 19px);
            box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
            transform: rotate(-7deg);
        }

        .art-target::before {
            left: 22px;
            top: 28px;
            width: 82px;
            height: 82px;
            border-radius: 999px;
            background:
                radial-gradient(circle, #ef4444 0 12px, #ffffff 13px 26px, #ef4444 27px 38px, #ffffff 39px);
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
        }

        .feature-card--image {
            min-height: 0;
            overflow: hidden;
            border: 1px solid var(--pt-border);
            background: #ffffff;
            color: var(--pt-text);
            box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
        }

        .feature-card--image::before {
            display: none;
        }

        .feature-card--image > a {
            display: grid;
            grid-template-rows: auto 1fr;
            min-height: 100%;
            padding: 0;
            color: inherit;
        }

        .feature-thumb {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1.9 / 1;
            background: #111111;
        }

        .feature-thumb img,
        .mini-card__thumb img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            transition: transform 220ms ease;
        }

        .feature-card--image:hover .feature-thumb img,
        .feature-card--image:focus-within .feature-thumb img,
        .mini-card:hover .mini-card__thumb img,
        .mini-card:focus-visible .mini-card__thumb img {
            transform: scale(1.035);
        }

        .feature-panel {
            display: grid;
            align-content: start;
            gap: 12px;
            padding: 18px;
        }

        .feature-panel h2 {
            margin: 0;
            color: var(--pt-ink);
            font-size: 1.55rem;
            line-height: 1.12;
            font-weight: 900;
            letter-spacing: 0;
        }

        .feature-panel h2 span {
            color: inherit;
        }

        .feature-panel p {
            margin: 0;
            color: var(--pt-muted);
            font-size: 0.92rem;
            font-weight: 600;
            line-height: 1.55;
        }

        .feature-panel .card-meta {
            margin-top: 4px;
            color: #7b8494;
        }

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

        .mini-card {
            min-height: 0;
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto 1fr;
            gap: 0;
            overflow: hidden;
            border-color: #e5e7eb;
            background: #ffffff;
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
        }

        .mini-card--sliced {
            display: grid;
            min-height: 0;
            padding: 0;
        }

        .mini-card--sliced .slice-image,
        .mini-card .slice-image,
        .mini-art {
            display: none;
        }

        .mini-card--sliced .mini-card__copy {
            display: grid;
        }

        .mini-card__thumb {
            position: relative;
            display: block;
            overflow: hidden;
            aspect-ratio: 1.92 / 1;
            background: #111111;
        }

        .mini-card__copy {
            display: grid;
            grid-template-rows: auto auto 1fr auto auto;
            gap: 9px;
            min-width: 0;
            padding: 14px 15px 15px;
        }

        .mini-card h3 {
            margin: 0;
            color: #111827;
            font-size: 1.02rem;
            line-height: 1.25;
            font-weight: 900;
            letter-spacing: 0;
        }

        .mini-card__copy p {
            margin: 0;
            color: #667085;
            font-size: 0.82rem;
            font-weight: 600;
            line-height: 1.48;
        }

        .mini-meta {
            margin-top: 2px;
            justify-content: space-between;
        }

        .read-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            margin-top: 2px;
            color: #b45309;
            font-size: 0.78rem;
            font-weight: 900;
        }

        .chip {
            width: fit-content;
            color: #1a1a1a;
        }

        .blog-sidebar {
            position: sticky;
            top: 18px;
            display: grid;
            gap: 18px;
        }

        .side-card {
            border: 1px solid var(--pt-border);
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
        }

        .side-card--sliced {
            display: block;
            padding: 0;
            overflow: hidden;
        }

        .side-card--sliced > *:not(.slice-image) {
            display: none;
        }

        .side-card--sliced .slice-image {
            height: auto;
        }

        .help-card {
            display: grid;
            grid-template-columns: 35% 65%;
            gap: 0;
            align-items: stretch;
            height: 170px;
            padding: 0;
            overflow: hidden;
            border: 3px dashed var(--pt-yellow);
            background: rgba(255, 193, 32, 0.1);
        }

        .help-card .mini-owl {
            position: relative;
            left: 3px;
            bottom: auto;
            width: 100%;
            height: 100%;
            min-height: 0;
            box-sizing: border-box;
            transform: none;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: visible;
            padding: 0;
        }

        .help-card .mini-owl img {
           width: auto;
            height: 100%;
            max-width: 140px;
            max-height: 140px;
            object-fit: contain;
            object-position: center bottom;
        }

        .help-card .mini-owl::before,
        .help-card .mini-owl::after {
            top: 17px;
            width: 27px;
            height: 27px;
            border-width: 4px;
            box-shadow: inset 0 0 0 6px #f8b232;
        }

        .help-card .mini-owl::before {
            left: 8px;
        }

        .help-card .mini-owl::after {
            right: 8px;
        }

        .help-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            padding: 20px 12px 20px 12px;
        }

        .help-card h2,
        .side-widget h2 {
            margin: 0 0 6px;
            color: var(--pt-ink);
            font-size: 1.12rem;
            line-height: 1.2;
            font-weight: 900;
        }

        .help-card p {
            margin: 0;
            color: #344054;
            font-size: 0.9rem;
            font-weight: 800;
        }

        .help-card a[href^="tel"]:not(.blog-button) {
            display: block;
            margin-top: 2px;
            color: #111827;
            font-size: 1.42rem;
            line-height: 1.1;
            font-weight: 900;
            text-decoration: none;
        }

        .help-card .blog-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 0;
            min-height: 40px;
            width: 100%;
            margin-top: 12px;
            padding: 0 18px;
            font-size: 0.95rem;
            line-height: 1;
        }

        .side-widget {
            padding: 18px;
        }

        .side-card.side-card--sliced {
            display: block;
            padding: 0;
        }

        .side-card.side-card--sliced .slice-image {
            width: 100%;
            height: auto;
        }

        .side-widget ul,
        .side-widget ol {
            margin: 12px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 10px;
        }

        .side-widget li {
            color: #4b5563;
            font-size: 0.86rem;
            font-weight: 400;
        }

        .side-widget a {
            color: inherit;
            text-decoration: none;
        }

        .side-widget a:hover,
        .side-widget a:focus-visible {
            color: #b45309;
            text-decoration: underline;
        }

        .download-list li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .download-list img {
            width: 18px;
            height: 18px;
            flex: 0 0 18px;
            object-fit: contain;
        }

        .ranked-list {
            counter-reset: guide-rank;
        }

        .ranked-list li {
            counter-increment: guide-rank;
            display: grid;
            grid-template-columns: 24px minmax(0, 1fr);
            gap: 8px;
        }

        .ranked-list li::before {
            content: counter(guide-rank);
            width: 22px;
            height: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: var(--pt-yellow);
            color: #1a1a1a;
            font-size: 0.72rem;
            font-weight: 900;
        }

        .side-action {
            width: 100%;
            min-height: 42px;
            margin-top: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            border: 1px solid #cfd6df;
            border-radius: 8px;
            background: #ffffff;
            color: #111827;
            font-size: 0.86rem;
            font-weight: 900;
            text-decoration: none;
        }

        .archive-preview {
            padding: 8px 0 28px;
        }

        .archive-heading {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .archive-heading .section-title {
            margin: 0;
        }

        .archive-heading p {
            margin: 0;
            color: var(--pt-muted);
            font-size: 0.9rem;
            font-weight: 600;
        }

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

        .archive-card {
            position: relative;
            min-height: 154px;
            overflow: hidden;
            border: 1px solid var(--pt-border);
            border-radius: 8px;
            color: #ffffff;
            text-decoration: none;
            background: #1a1a1a;
            box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
        }

        .archive-card--sliced {
            display: block;
            min-height: 0;
            background: transparent;
        }

        .archive-card--sliced::before,
        .archive-card--sliced span,
        .archive-card--sliced .archive-card__art {
            display: none;
        }

        .archive-card--sliced .slice-image {
            aspect-ratio: 3.43 / 1;
            object-fit: cover;
        }

        .archive-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
        }

        .archive-card span {
            position: absolute;
            left: 24px;
            top: 50%;
            width: calc(54% - 48px);
            max-width: 360px;
            transform: translateY(-50%);
            color: #ffffff;
            font-size: 1.3rem;
            line-height: 1.08;
            font-weight: 900;
            text-transform: uppercase;
        }

        .archive-card__art {
            position: absolute;
            right: 0;
            inset-block: 0;
            width: 46%;
            background: #f6f6f6;
        }

        .archive-card--expert .archive-card__art::before {
            content: "";
            position: absolute;
            left: 20px;
            top: 22px;
            width: 74px;
            height: 74px;
            border-radius: 999px;
            background: #f4c7a1;
            box-shadow: 0 76px 0 28px #bfdbfe;
        }

        .archive-card--essay .archive-card__art {
            background:
                repeating-linear-gradient(0deg, transparent 0 16px, #e7dcc7 17px 18px),
                #fff7df;
        }

        .archive-card--essay .archive-card__art::before {
            content: "";
            position: absolute;
            right: 42px;
            top: 20px;
            width: 10px;
            height: 118px;
            border-radius: 999px;
            background: #20242b;
            transform: rotate(62deg);
            box-shadow: 8px 0 0 var(--pt-yellow);
        }

        .booking-banner {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 310px 190px;
            gap: 30px;
            align-items: center;
            min-height: 216px;
            margin: 14px auto 36px;
            border-radius: 8px;
            background: #141414;
            color: #ffffff;
            padding: 26px 30px;
            overflow: visible;
            box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
        }

        .booking-banner--sliced {
            display: block;
            padding: 0;
            overflow: hidden;
            background: transparent;
        }

        .booking-banner--sliced > *:not(.slice-image) {
            display: none;
        }

        .booking-banner--sliced .slice-image {
            aspect-ratio: 7.84 / 1;
            object-fit: cover;
        }

        .booking-banner h2 {
            max-width: 610px;
            margin: 0;
            color: #ffffff;
            font-size: 2.2rem;
            line-height: 1.1;
            font-weight: 900;
        }

        .booking-banner h2 span {
            color: var(--pt-yellow);
            text-decoration: underline;
        }

        .booking-banner p {
            max-width: 590px;
            margin: 10px 0 0;
            color: rgba(255, 255, 255, 0.78);
            font-weight: 600;
        }

        .booking-actions {
            display: grid;
            gap: 12px;
        }

        .booking-banner .mini-owl {
            position: absolute;
            left: auto;
            right: 30px;
            bottom: -25px;
            transform: none;
            justify-self: end;
            align-self: end;
            width: 214px;
            height: 214px;
        }

        .path-section {
            padding: 18px 0 34px;
        }

        .path-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .path-card {
            display: grid;
            grid-template-columns: 76px minmax(0, 1fr);
            gap: 14px;
            min-height: 160px;
            border: 1px solid var(--pt-border);
            border-radius: 8px;
            background: #ffffff;
            padding: 16px;
            color: var(--pt-text);
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
            transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
        }

        .path-card:hover,
        .path-card:focus-visible {
            transform: translateY(-2px);
            border-color: var(--pt-yellow);
            box-shadow: var(--pt-shadow);
        }

        .path-icon {
            width: 70px;
            height: 70px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background: var(--icon-bg, var(--pt-yellow-soft));
            color: var(--icon-color, #1a1a1a);
            font-size: 1.8rem;
            font-weight: 900;
        }

        .path-icon img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }

        .path-icon--image {
            background: transparent;
            padding: 0;
            font-size: 0;
        }

        .path-card strong {
            display: block;
            color: var(--pt-ink);
            font-size: 0.96rem;
            line-height: 1.22;
            font-weight: 900;
        }

        .path-card span {
            display: block;
            margin-top: 8px;
            color: var(--pt-muted);
            font-size: 0.82rem;
            font-weight: 600;
            line-height: 1.44;
        }

        .path-card em {
            display: inline-block;
            margin-top: 14px;
            color: #f97316;
            font-size: 0.82rem;
            font-style: normal;
            font-weight: 900;
        }

        .contact-strip {
            display: grid;
            grid-template-columns: 96px minmax(0, 1fr) auto auto;
            gap: 16px;
            align-items: center;
            margin-bottom: 0;
            border: 1px solid rgba(255, 193, 32, 0.58);
            border-radius: 8px;
            background: var(--pt-yellow-soft);
            padding: 10px 18px;
        }

        .contact-strip--sliced {
            display: block;
            padding: 0;
            overflow: hidden;
            background: transparent;
        }

        .contact-strip--sliced > *:not(.slice-image) {
            display: none;
        }

        .contact-strip--sliced .slice-image {
            aspect-ratio: 14.7 / 1;
            object-fit: cover;
        }

        .contact-strip .mini-owl {
            position: relative;
            left: auto;
            bottom: auto;
            width: 86px;
            height: 86px;
        }

        .contact-strip strong {
            display: block;
            color: var(--pt-ink);
            font-weight: 900;
        }

        .contact-strip span {
            display: block;
            color: var(--pt-muted);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .contact-strip a {
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            padding: 0 26px;
            font-weight: 900;
            text-decoration: none;
            white-space: nowrap;
        }

        .whatsapp-link {
            background: #22c55e;
            color: #ffffff;
        }

        .call-link {
            border: 1px solid #d1d5db;
            background: #ffffff;
            color: #1a1a1a;
        }

        .hidden-by-filter {
            display: none !important;
        }

        .blog-pagination {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 28px 0 0;
        }

        .blog-pagination a,
        .blog-pagination span {
            min-width: 42px;
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--pt-border);
            border-radius: 8px;
            background: #ffffff;
            color: #1a1a1a;
            padding: 0 14px;
            font-size: 0.92rem;
            font-weight: 800;
            text-decoration: none;
        }

        .blog-pagination .is-current {
            border-color: var(--pt-yellow);
            background: var(--pt-yellow);
        }

        .blog-pagination .is-disabled {
            cursor: not-allowed;
            color: #9ca3af;
            background: #f3f4f6;
            border-color: #e5e7eb;
            opacity: 0.72;
        }

        .blog-pagination .pagination-ellipsis {
            min-width: auto;
            border-color: transparent;
            background: transparent;
            padding: 0 4px;
            color: #6b7280;
            box-shadow: none;
        }

        .blog-pagination a:hover,
        .blog-pagination a:focus-visible {
            border-color: var(--pt-yellow);
            box-shadow: 0 8px 20px rgba(255, 193, 32, 0.2);
        }

        footer.footer-section {
            position: relative;
            overflow: hidden;
            background: #1a1a1a;
            color: #ffffff;
            padding: 32px 48px 96px;
        }

        footer.footer-section .copy-right,
        footer.footer-section > .max-w-\[1400px\] {
            position: relative;
            z-index: 1;
            width: min(1400px, calc(100% - 24px));
            margin: 0 auto;
        }

        footer.footer-section .row.text-white {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            color: #ffffff;
            font-size: 42px;
            line-height: 1;
            font-weight: 400;
        }

        footer.footer-section .row.text-white > .flex {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            line-height: 1;
        }

        footer.footer-section picture img {
            width: 80px;
            max-width: 80px;
        }

        footer.footer-section .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 28px;
            margin: 24px 0 28px;
        }

        footer.footer-section h4 {
            margin: 0 0 12px;
            color: #b45309;
            font-size: 1rem;
            font-weight: 900;
        }

        footer.footer-section ul {
            display: grid;
            gap: 8px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        footer.footer-section li.flex {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        footer.footer-section li.flex > img {
            width: 18px;
            height: 18px;
            max-width: 18px;
            flex: 0 0 18px;
            object-fit: contain;
        }

        footer.footer-section .footer-link {
            color: #aaaaaa;
            font-size: 13px;
            line-height: 1.3;
            text-decoration: none;
        }

        footer.footer-section .footer-link:hover,
        footer.footer-section .footer-link:focus-visible {
            text-decoration: underline;
        }

        footer.footer-section .footer-bottom {
            border-top: 1px solid #444444;
            padding-top: 18px;
            text-align: center;
        }

        footer.footer-section .footer-bottom > div {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 12px;
            margin-bottom: 12px;
        }

        footer.footer-section .footer-bottom a {
            color: #888888;
            font-size: 13px;
            text-decoration: underline;
        }

        footer.footer-section .footer-bottom p {
            margin: 0;
            color: #666666;
            font-size: 12px;
        }

        footer.footer-section .footer-bottom strong {
            color: #b45309;
        }

        body > nav.fixed.bottom-2 {
            position: fixed;
            left: 16px;
            right: 16px;
            bottom: 8px;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 2px;
            min-height: 74px;
            padding: 4px 12px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 35px;
            background: rgba(255, 255, 255, 0.7);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(12px);
        }

        body > nav.fixed.bottom-2 .mobile-nav-item {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            color: #6b7280;
            font-size: 0.68rem;
            font-weight: 700;
            text-decoration: none;
            white-space: nowrap;
        }

        body > nav.fixed.bottom-2 img {
            width: 20px;
            height: 20px;
        }

        body > nav.fixed.bottom-2 a[id="mobileNavHome"] > div {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -18px;
            margin-bottom: 8px;
            border: 4px solid #ffffff;
            border-radius: 999px;
            background: var(--pt-yellow);
            box-shadow: 0 8px 20px rgba(255, 193, 32, 0.4);
        }

        @media (min-width: 1024px) {
            body > div.lg\:hidden {
                display: none;
            }

            nav.shadow-sm {
                height: 80px;
                padding: 0;
            }

            nav.shadow-sm > div {
                padding: 0 32px;
            }

            nav.shadow-sm > div > div {
                min-height: 80px;
            }

            nav.shadow-sm .hidden.lg\:flex {
                display: flex;
                align-items: center;
                gap: 32px;
            }

            nav.shadow-sm img[alt="PTENOTE Logo"] {
                height: max(4vw, 55px);
            }

            nav.shadow-sm a[href*="learn.ptenote.com"] {
                gap: 0.5vw;
                padding: 0.7vw 1.5vw;
                font-size: 0.85vw;
            }

            nav.shadow-sm a[href*="learn.ptenote.com"] svg {
                width: max(1vw, 14px);
                height: max(1vw, 14px);
            }

            body > nav.fixed.bottom-2 {
                display: none;
            }

            footer.footer-section {
                padding-bottom: 24px;
            }
        }

        @media (max-width: 1180px) {
            .blog-hero__inner,
            .blog-main,
            .booking-banner,
            .contact-strip {
                grid-template-columns: 1fr;
            }

            .booking-banner .mini-owl {
                justify-self: center;
                right: 50%;
                bottom: -25px;
                transform: translateX(50%);
            }

            .hero-visual {
                max-width: 720px;
                min-height: 410px;
            }

            .blog-sidebar {
                position: static;
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .help-card {
                grid-column: 1 / -1;
                display: none;
            }

            .path-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .latest-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .contact-strip {
                grid-template-columns: 90px 1fr;
            }
        }

        @media (max-width: 900px) {
            .hero-copy h1 {
                font-size: 3.1rem;
            }

            .featured-grid,
            .archive-grid,
            .blog-sidebar,
            .path-grid {
                grid-template-columns: 1fr;
            }

            .latest-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .booking-banner {
                padding: 22px;
            }

            .booking-banner .mini-owl {
                width: 190px;
                height: 190px;
            }

            footer.footer-section .footer-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 700px) {
            body {
                padding-bottom: 0;
            }

            .blog-container {
                width: min(100% - 24px, 1320px);
            }

            .latest-grid {
                grid-template-columns: 1fr;
            }

            .blog-hero__inner {
                gap: 28px;
                padding: 38px 0 32px;
            }

            .hero-copy h1 {
                font-size: 2.36rem;
            }

            .hero-search {
                width: 100%;
            }

            .blog-button {
                width: 100%;
                min-width: 0;
            }

            .hero-visual {
                min-height: 350px;
            }

            .hero-screen {
                left: 12px;
                right: 12px;
                width: auto;
                border-width: 12px 12px 24px;
            }

            .hero-screen__body {
                grid-template-columns: 1fr;
            }

            .hero-score {
                position: absolute;
                right: 14px;
                bottom: 14px;
                width: 68px;
                height: 68px;
                font-size: 1.42rem;
                box-shadow: inset 0 0 0 9px #ffffff;
            }

            .hero-books {
                left: 0;
                bottom: 52px;
            }

            .sticky-note,
            .passport-stack,
            .hero-mug {
                display: none;
            }

            .mini-owl {
                left: 58px;
                bottom: 58px;
            }

            .hero-notebook {
                left: 92px;
                right: 14px;
                bottom: 0;
                width: auto;
                padding: 14px;
            }

            .feature-card {
                min-height: 330px;
            }

            .feature-copy h2 {
                font-size: 1.68rem;
            }

            .rocket-art,
            .mic-art {
                opacity: 0.74;
                transform: scale(0.8) rotate(22deg);
                transform-origin: right bottom;
            }

            .mic-art {
                transform: scale(0.78);
            }

            .mini-card {
                grid-template-columns: minmax(0, 1fr) 96px;
            }

            .archive-heading {
                display: grid;
            }

            .booking-banner h2 {
                font-size: 1.66rem;
            }

            .contact-strip {
                grid-template-columns: 1fr;
            }

            .contact-strip .mini-owl {
                display: none;
            }

            .contact-strip a {
                width: 100%;
            }

            footer.footer-section .row.text-white {
                gap: 12px;
            }

            footer.footer-section .footer-grid {
                grid-template-columns: 1fr;
            }

            body > nav.fixed.bottom-2 {
                left: 8px;
                right: 8px;
                padding-inline: 6px;
            }

            body > nav.fixed.bottom-2 .mobile-nav-item {
                font-size: 0.62rem;
            }
        }

        footer.footer-section {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            background: #1a1a1a;
            color: #ffffff;
            padding: 4vh 1rem calc(4vh + 70px);
        }

        footer.footer-section .footer-overlay {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 26, 0.3);
            z-index: 2;
            pointer-events: none;
        }

        footer.footer-section .copy-right {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        footer.footer-section > .max-w-\[1400px\],
        footer.footer-section > .footer-inner {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        footer.footer-section > .max-w-\[1400px\],
        footer.footer-section > .footer-inner {
            padding: 0 1rem;
        }

        footer.footer-section .copy-right .container {
            padding: 1rem 0;
            margin-top: -2.5vmax !important;
        }

        footer.footer-section .row.text-white,
        footer.footer-section .phone-row {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            align-items: center;
            color: #ffffff;
            font-size: 2rem;
            line-height: 1;
            font-weight: 400;
        }

        footer.footer-section .row.text-white > .flex,
        footer.footer-section .phone-row > div {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            color: #ffffff;
            font-size: 3vw;
            line-height: 1;
        }

        footer.footer-section picture img {
            display: block;
            width: 80px;
            max-width: 80px;
            height: auto;
        }

        footer.footer-section .footer-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1.5rem;
            margin: 0 0 4vh;
        }

        footer.footer-section h4 {
            margin: 0 0 1.5vh;
            color: #b45309;
            font-size: 3.5vw;
            line-height: 1.2;
            font-weight: 700;
        }

        footer.footer-section ul {
            display: flex;
            flex-direction: column;
            gap: 0.8vh;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        footer.footer-section li.flex {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        footer.footer-section li.flex > img {
            width: 14px;
            height: 14px;
            max-width: 14px;
            flex: 0 0 14px;
            object-fit: contain;
            opacity: 0.5;
        }

        footer.footer-section .footer-link {
            color: #aaaaaa;
            font-size: 3vw;
            line-height: 1.3;
            text-decoration: none;
            transition: color 300ms ease;
        }

        footer.footer-section li.flex .footer-link {
            font-size: 2.8vw;
        }

        footer.footer-section .footer-link:hover,
        footer.footer-section .footer-link:focus-visible {
            text-decoration: underline;
        }

        footer.footer-section .footer-bottom {
            border-top: 1px solid #444444;
            padding-top: 2vh;
            text-align: center;
        }

        footer.footer-section .footer-bottom > div {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5vh;
        }

        footer.footer-section .footer-bottom span {
            display: none;
            color: #555555;
        }

        footer.footer-section .footer-bottom a {
            color: #888888;
            font-size: 2.8vw;
            text-decoration: underline;
            transition: color 300ms ease;
        }

        footer.footer-section .footer-bottom a:hover,
        footer.footer-section .footer-bottom a:focus-visible {
            color: #b45309;
        }

        footer.footer-section .footer-bottom p {
            margin: 0;
            color: #666666;
            font-size: 2.5vw;
        }

        footer.footer-section .footer-bottom p a {
            margin: 0;
        }

        footer.footer-section .footer-bottom strong {
            color: #b45309;
        }

        @media (min-width: 640px) {
            footer.footer-section {
                padding: 6vh 3rem calc(6vh + 70px);
            }

            footer.footer-section > .max-w-\[1400px\],
            footer.footer-section > .footer-inner {
                padding: 0 1.5rem;
            }

            footer.footer-section .footer-grid {
                gap: 2rem;
            }

            footer.footer-section h4 {
                font-size: 1.1vw;
            }

            footer.footer-section .footer-link,
            footer.footer-section .footer-bottom a {
                font-size: 0.9vw;
            }

            footer.footer-section li.flex .footer-link,
            footer.footer-section .footer-bottom p {
                font-size: 0.85vw;
            }

            footer.footer-section li.flex > img {
                width: 18px;
                height: 18px;
                max-width: 18px;
                flex-basis: 18px;
            }

            footer.footer-section .footer-bottom > div {
                gap: 0;
            }

            footer.footer-section .footer-bottom span {
                display: inline;
            }

            footer.footer-section .footer-bottom a {
                margin: 0 1rem;
            }
        }

        @media (min-width: 1024px) {
            footer.footer-section {
                padding-bottom: 2vh;
            }

            footer.footer-section > .max-w-\[1400px\],
            footer.footer-section > .footer-inner {
                padding: 0 2rem;
            }

            footer.footer-section .footer-grid {
                grid-template-columns: repeat(4, minmax(0, 1fr));
            }
        }

        @media (max-width: 1180px) {
            .guide-tabs__inner {
                overflow-x: auto;
                flex-wrap: nowrap;
                justify-content: flex-start;
                -webkit-overflow-scrolling: touch;
            }

            .guide-tabs__inner a {
                flex: 0 0 auto;
            }

            .booking-banner {
                grid-template-columns: minmax(0, 1fr);
                padding-right: 240px;
            }
        }

        @media (max-width: 900px) {
            .blog-container {
                width: min(100% - 28px, 1320px);
            }

            .blog-hero__inner,
            .blog-main {
                grid-template-columns: minmax(0, 1fr);
            }

            .hero-copy {
                max-width: none;
            }

            .featured-grid,
            .latest-grid,
            .path-grid,
            .blog-sidebar {
                grid-template-columns: minmax(0, 1fr);
            }

            .feature-panel h2 {
                font-size: 1.35rem;
            }

            .path-card {
                min-height: 0;
            }
        }

        @media (max-width: 700px) {
            nav.shadow-sm > div {
                padding: 0 14px;
            }

            nav.shadow-sm img[alt="PTENOTE Logo"] {
                height: 42px;
            }

            nav.shadow-sm a[href*="learn.ptenote.com"] {
                min-height: 34px;
                padding: 0 11px;
                font-size: 0.75rem;
            }

            .blog-hero__inner {
                padding: 34px 0 30px;
            }

            .hero-copy h1 {
                font-size: clamp(2.15rem, 12vw, 3rem);
            }

            .hero-copy p {
                font-size: 0.98rem;
            }

            .hero-actions,
            .hero-actions .blog-button,
            .booking-actions,
            .booking-actions .blog-button {
                width: 100%;
            }

            .hero-visual {
                min-height: 0;
            }

            .hero-visual__image {
                width: 100%;
                height: auto;
            }

            .mini-card,
            .mini-card__copy {
                min-width: 0;
            }

            .mini-meta {
                justify-content: flex-start;
            }

            .blog-pagination {
                gap: 8px;
            }

            .blog-pagination a,
            .blog-pagination span {
                min-width: 38px;
                min-height: 38px;
                padding: 0 11px;
            }

            .path-card {
                grid-template-columns: 64px minmax(0, 1fr);
                gap: 12px;
                padding: 14px;
            }

            .path-icon {
                width: 60px;
                height: 60px;
            }

            .booking-banner {
                min-height: 0;
                grid-template-columns: minmax(0, 1fr);
                padding: 22px 20px 148px;
            }

            .booking-banner h2 {
                font-size: clamp(1.55rem, 8vw, 2rem);
            }

            .booking-banner .mini-owl {
                right: 50%;
                bottom: -22px;
                width: 176px;
                height: 176px;
                transform: translateX(50%);
            }

            footer.footer-section .row.text-white,
            footer.footer-section .phone-row {
                gap: 14px;
                font-size: clamp(1.35rem, 7vw, 2rem);
            }

            footer.footer-section .row.text-white > .flex,
            footer.footer-section .phone-row > div {
                font-size: inherit;
            }

            footer.footer-section picture img {
                width: 56px;
                max-width: 56px;
            }

            footer.footer-section .footer-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        @media (max-width: 420px) {
            .blog-container {
                width: min(100% - 20px, 1320px);
            }

            body > div.lg\:hidden a {
                flex-wrap: wrap;
                gap: 4px 8px;
                font-size: 0.76rem;
            }

            .hero-search {
                grid-template-columns: minmax(0, 1fr) 44px;
                padding: 6px;
            }

            .feature-panel,
            .mini-card__copy {
                padding: 14px;
            }

            .path-card {
                grid-template-columns: minmax(0, 1fr);
                text-align: left;
            }

            body > nav.fixed.bottom-2 {
                left: 6px;
                right: 6px;
                min-height: 68px;
                padding: 4px 6px;
            }

            body > nav.fixed.bottom-2 .mobile-nav-item {
                font-size: 0.56rem;
            }

            body > nav.fixed.bottom-2 a[id="mobileNavHome"] > div {
                width: 56px;
                height: 56px;
            }
        }

        .latest-grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .latest-grid .mini-card {
            min-width: 0;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            grid-template-rows: auto 1fr;
            overflow: hidden;
        }

        .latest-grid .mini-card__thumb {
            width: 100%;
            aspect-ratio: 1.92 / 1;
            overflow: hidden;
        }

        .latest-grid .mini-card__copy {
            min-width: 0;
            padding: clamp(14px, 3.6vw, 16px);
        }

        .latest-grid .mini-card h3,
        .latest-grid .mini-card p {
            overflow-wrap: anywhere;
        }

        @media (max-width: 980px) {
            .latest-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 620px) {
            .latest-grid {
                grid-template-columns: minmax(0, 1fr);
            }
        }

        @media (max-width: 700px) {
            .booking-banner {
                grid-template-columns: minmax(0, 1fr) 126px;
                gap: 16px;
                align-items: end;
                padding: 22px 18px 18px;
            }

            .booking-banner > div:first-child {
                grid-column: 1 / -1;
            }

            .booking-banner .booking-actions {
                grid-column: 1;
                align-self: center;
            }

            .booking-banner .mini-owl {
                position: relative;
                grid-column: 2;
                right: auto;
                bottom: -18px;
                justify-self: end;
                align-self: end;
                width: 130px;
                height: 130px;
                transform: none;
            }

            .booking-banner .blog-button {
                min-width: 0;
                width: 100%;
                padding: 0 12px;
                font-size: 0.88rem;
            }
        }

        @media (max-width: 380px) {
            .booking-banner {
                grid-template-columns: minmax(0, 1fr) 108px;
                gap: 12px;
                padding-inline: 14px;
            }

            .booking-banner .mini-owl {
                width: 112px;
                height: 112px;
            }

            .booking-banner .blog-button {
                min-height: 42px;
                font-size: 0.78rem;
            }
        }

        .booking-banner {
            grid-template-columns: minmax(0, 1fr) 290px 190px;
            overflow: visible;
        }

        .booking-banner .mini-owl {
            position: relative;
            right: auto;
            bottom: -25px;
            width: clamp(168px, 15vw, 214px);
            height: clamp(168px, 15vw, 214px);
            justify-self: end;
            align-self: end;
            transform: none;
        }

        @media (max-width: 1180px) {
            .booking-banner {
                grid-template-columns: minmax(0, 1fr) 230px 168px;
                gap: 22px;
                min-height: 206px;
                padding: 24px 26px;
            }

            .booking-banner .mini-owl {
                width: 174px;
                height: 174px;
            }
        }

        @media (max-width: 860px) {
            .booking-banner {
                grid-template-columns: minmax(0, 1fr) 188px 148px;
                gap: 18px;
                padding: 22px 20px;
            }

            .booking-banner h2 {
                font-size: clamp(1.65rem, 4vw, 2rem);
            }

            .booking-banner p {
                font-size: 0.94rem;
            }

            .booking-banner .mini-owl {
                width: 154px;
                height: 154px;
            }
        }

        @media (max-width: 700px) {
            .booking-banner {
                grid-template-columns: minmax(0, 1fr) 132px;
                gap: 14px;
                min-height: 0;
                padding: 22px 18px 18px;
                align-items: end;
            }

            .booking-banner > div:first-child {
                grid-column: 1 / -1;
            }

            .booking-banner .booking-actions {
                grid-column: 1;
                align-self: center;
                width: 100%;
            }

            .booking-banner .mini-owl {
                grid-column: 2;
                width: 152px;
                height: 152px;
                bottom: -25px;
                justify-self: end;
            }
        }

        @media (max-width: 380px) {
            .booking-banner {
                grid-template-columns: minmax(0, 1fr) 108px;
                gap: 12px;
                padding-inline: 14px;
            }

            .booking-banner .mini-owl {
                width: 114px;
                height: 114px;
            }
        }

        @media (max-width: 768px) {
            .booking-banner {
                grid-template-columns: minmax(0, 1fr) 132px;
                gap: 14px;
                padding: 24px 18px 18px;
                text-align: center;
                justify-items: stretch;
                align-items: end;
            }

            .booking-banner > div:first-child {
                grid-column: 1 / -1;
            }

            .booking-banner .booking-actions {
                grid-column: 1;
                width: 100%;
                align-self: center;
            }

            .booking-banner .mini-owl {
                grid-column: 2;
                width: 158px;
                height: 158px;
                bottom: -50px;
                justify-self: end;
            }
        }

        .booking-banner .mini-owl {
            bottom: -45px;
        }

        @media (min-width: 1201px) {
            .booking-banner .mini-owl {
                bottom: -50px;
            }
        }

        @media (max-width: 768px) {
            .booking-banner .mini-owl {
                bottom: -35px;
                right: -15px;
            }
        }

        @media (max-width: 640px) {
            .blog-pagination {
                gap: 7px;
                row-gap: 8px;
                margin-top: 24px;
                padding-inline: 4px;
                max-width: 100%;
            }

            .blog-pagination a,
            .blog-pagination span {
                min-width: 36px;
                min-height: 36px;
                padding: 0 9px;
                border-radius: 7px;
                font-size: 0.84rem;
                line-height: 1;
            }

            .blog-pagination .pagination-ellipsis {
                min-width: 16px;
                padding: 0;
            }
        }

        @media (max-width: 420px) {
            .blog-pagination {
                gap: 5px;
                row-gap: 7px;
            }

            .blog-pagination a,
            .blog-pagination span {
                min-width: 31px;
                min-height: 31px;
                padding: 0 7px;
                font-size: 0.76rem;
            }

            .blog-pagination .pagination-ellipsis {
                min-width: 10px;
                font-size: 0.72rem;
            }
        }
