:root {
    --pmt-ink: #0b1220;
    --pmt-muted: #526174;
    --pmt-blue: #c89a32;
    --pmt-blue-dark: #9d7120;
    --pmt-cyan: #e3bd63;
    --pmt-soft: #f7f5ef;
    --pmt-line: #e5dfd0;
    --pmt-white: #ffffff;
    --pmt-radius: 22px;
    --pmt-shadow: 0 24px 70px rgba(12, 30, 66, 0.14);
}

.pmt-premium-active .site-content {
    padding: 0 !important;
    max-width: none !important;
}

.pmt-premium-active #primary,
.pmt-premium-active .content-area,
.pmt-premium-active .inside-article,
.pmt-premium-active .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pmt-premium-active .entry-header,
.pmt-premium-active .entry-footer,
.pmt-premium-active .comments-area,
.pmt-premium-active .post-navigation {
    display: none !important;
}

.pmt-page,
.pmt-page * {
    box-sizing: border-box;
}

.pmt-page {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    overflow: clip;
    background: var(--pmt-white);
    color: var(--pmt-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.75;
}

.pmt-page a {
    text-decoration: none;
}

.pmt-page img {
    display: block;
    max-width: 100%;
}

.pmt-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.pmt-section {
    padding: 86px 0;
}

.pmt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--pmt-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pmt-eyebrow::before {
    width: 26px;
    height: 2px;
    background: currentColor;
    content: "";
}

.pmt-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(227, 189, 99, 0.17), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #111820 58%, #1c211f 100%);
    color: var(--pmt-white);
}

.pmt-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.pmt-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.pmt-orb-one {
    right: -180px;
    top: -150px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 100px rgba(24, 184, 255, 0.09);
}

.pmt-orb-two {
    left: -210px;
    bottom: -300px;
    width: 560px;
    height: 560px;
    background: rgba(15, 99, 246, 0.13);
}

.pmt-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
    gap: 78px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 90px;
}

.pmt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #f2d991;
    font-size: 13px;
    font-weight: 700;
    backdrop-filter: blur(12px);
}

.pmt-kicker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pmt-cyan);
    box-shadow: 0 0 0 5px rgba(24, 184, 255, 0.13);
}

.pmt-hero h1 {
    max-width: 760px;
    margin: 0 0 22px;
    color: var(--pmt-white);
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.pmt-lead {
    max-width: 720px;
    margin: 0 0 30px;
    color: #d5d8dc;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.7;
}

.pmt-lead strong {
    color: var(--pmt-white);
}

.pmt-hero-actions,
.pmt-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.pmt-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pmt-btn:hover,
.pmt-btn:focus-visible {
    transform: translateY(-2px);
}

.pmt-btn-primary {
    background: linear-gradient(135deg, var(--pmt-blue), #e0b34f);
    color: var(--pmt-white) !important;
    box-shadow: 0 15px 34px rgba(200, 154, 50, 0.31);
}

.pmt-btn-primary:hover {
    background: linear-gradient(135deg, var(--pmt-blue-dark), var(--pmt-blue));
}

.pmt-btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.07);
    color: var(--pmt-white) !important;
}

.pmt-btn-light {
    background: var(--pmt-white);
    color: var(--pmt-blue-dark) !important;
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.16);
}

.pmt-btn-outline-light {
    border-color: rgba(255, 255, 255, 0.32);
    color: var(--pmt-white) !important;
}

.pmt-btn-block {
    width: 100%;
}

.pmt-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: #e8dfc6;
    font-size: 14px;
    font-weight: 700;
}

.pmt-microcopy {
    margin: 16px 0 0;
    color: #91a6bf;
    font-size: 12px;
}

.pmt-hero-visual {
    position: relative;
}

.pmt-hero-image-wrap {
    position: relative;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    backdrop-filter: blur(16px);
}

.pmt-hero-image {
    width: 100%;
    min-height: 420px;
    border-radius: 19px;
    object-fit: cover;
}

.pmt-floating-card {
    position: absolute;
    max-width: 230px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    background: rgba(7, 17, 31, 0.9);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.pmt-floating-card strong,
.pmt-floating-card span {
    display: block;
}

.pmt-floating-card strong {
    color: var(--pmt-white);
    font-size: 14px;
}

.pmt-floating-card span {
    margin-top: 3px;
    color: #a9bed5;
    font-size: 12px;
    line-height: 1.45;
}

.pmt-floating-card-top {
    top: -28px;
    right: -26px;
}

.pmt-floating-card-bottom {
    bottom: -28px;
    left: -30px;
}

.pmt-proof-strip {
    position: relative;
    z-index: 4;
    border-bottom: 1px solid var(--pmt-line);
    background: var(--pmt-white);
}

.pmt-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pmt-proof-grid > div {
    padding: 28px 24px;
    border-right: 1px solid var(--pmt-line);
}

.pmt-proof-grid > div:last-child {
    border-right: 0;
}

.pmt-proof-grid strong,
.pmt-proof-grid span {
    display: block;
}

.pmt-proof-grid strong {
    margin-bottom: 4px;
    color: var(--pmt-ink);
    font-size: 15px;
}

.pmt-proof-grid span {
    color: var(--pmt-muted);
    font-size: 13px;
    line-height: 1.5;
}

.pmt-quick-answer {
    background: var(--pmt-soft);
}

.pmt-quick-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 60px;
    align-items: center;
}

.pmt-quick-grid h2,
.pmt-section-heading h2,
.pmt-instructor-section h2,
.pmt-faq-section h2,
.pmt-final-cta h2,
.pmt-cta-panel h2 {
    margin: 0;
    color: var(--pmt-ink);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.pmt-answer-card {
    padding: 32px 36px;
    border: 1px solid var(--pmt-line);
    border-radius: var(--pmt-radius);
    background: var(--pmt-white);
    box-shadow: 0 18px 50px rgba(12, 30, 66, 0.07);
}

.pmt-answer-card p {
    margin: 0;
    color: #34465b;
    font-size: 18px;
}

.pmt-toc {
    border-top: 1px solid var(--pmt-line);
    border-bottom: 1px solid var(--pmt-line);
    background: #fbfdff;
}

.pmt-toc .pmt-container {
    padding: 28px 0;
}

.pmt-toc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pmt-toc-head strong {
    font-size: 18px;
}

.pmt-toc-toggle {
    padding: 7px 12px;
    border: 1px solid var(--pmt-line);
    border-radius: 8px;
    background: var(--pmt-white);
    color: var(--pmt-blue-dark);
    font-weight: 700;
    cursor: pointer;
}

.pmt-toc ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px 24px;
    margin: 22px 0 0;
    padding-left: 24px;
}

.pmt-toc a {
    color: #31445a;
    font-size: 14px;
}

.pmt-toc a:hover {
    color: var(--pmt-blue);
}

.pmt-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 72px;
    align-items: start;
    padding-top: 82px;
    padding-bottom: 96px;
}

.pmt-article {
    min-width: 0;
}

.pmt-article-section {
    padding: 0 0 60px;
    scroll-margin-top: 30px;
}

.pmt-article-section + .pmt-article-section {
    padding-top: 8px;
    border-top: 1px solid #edf1f6;
}

.pmt-article-section h2 {
    max-width: 800px;
    margin: 0 0 22px;
    color: var(--pmt-ink);
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.pmt-article-section p {
    margin: 0 0 18px;
    color: #34465b;
    font-size: 17px;
    line-height: 1.82;
}

.pmt-article-section p:last-child {
    margin-bottom: 0;
}

.pmt-article-section strong {
    color: var(--pmt-ink);
}

.pmt-sidebar {
    position: relative;
}

.pmt-sticky-card {
    position: sticky;
    top: 30px;
    padding: 28px;
    border: 1px solid var(--pmt-line);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #f7faff);
    box-shadow: var(--pmt-shadow);
}

.pmt-card-badge {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #fff8e3;
    color: var(--pmt-blue-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pmt-sticky-card h2 {
    margin: 0 0 18px;
    font-size: 25px;
    line-height: 1.25;
}

.pmt-sticky-card ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.pmt-sticky-card li {
    position: relative;
    margin: 0;
    padding: 9px 0 9px 28px;
    border-bottom: 1px solid #e9eef5;
    color: #425369;
    font-size: 14px;
}

.pmt-sticky-card li::before {
    position: absolute;
    top: 11px;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e6f4ff;
    color: var(--pmt-blue);
    content: "✓";
    font-size: 11px;
    font-weight: 900;
    line-height: 18px;
    text-align: center;
}

.pmt-sticky-card > p {
    margin: 13px 0 0;
    color: #7a899a;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
}

.pmt-cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    margin-top: 10px;
    padding: 42px;
    border-radius: 24px;
    background: linear-gradient(135deg, #08182d, #0d3d79);
    color: var(--pmt-white);
    box-shadow: var(--pmt-shadow);
}

.pmt-cta-panel h2,
.pmt-cta-panel .pmt-eyebrow {
    color: var(--pmt-white);
}

.pmt-cta-panel h2 {
    font-size: clamp(28px, 3vw, 39px);
}

.pmt-cta-panel p {
    margin: 12px 0 0;
    color: #c1d4e9;
}

.pmt-gallery-section {
    padding: 96px 0;
    background: #07111f;
    color: var(--pmt-white);
}

.pmt-gallery-section .pmt-section-heading {
    max-width: 800px;
    margin-bottom: 42px;
}

.pmt-gallery-section h2 {
    color: var(--pmt-white);
}

.pmt-gallery-section .pmt-section-heading > p {
    color: #aabbd0;
}

.pmt-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 270px;
    gap: 18px;
}

.pmt-gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: #101d2d;
    cursor: zoom-in;
}

.pmt-gallery-wide {
    grid-column: span 2;
}

.pmt-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.3s ease;
}

.pmt-gallery-item:hover img,
.pmt-gallery-item:focus-visible img {
    transform: scale(1.045);
    opacity: 0.84;
}

.pmt-gallery-item span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 10px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 10px;
    background: rgba(4, 12, 24, 0.78);
    color: var(--pmt-white);
    font-size: 13px;
    font-weight: 800;
    text-align: left;
    backdrop-filter: blur(10px);
}

.pmt-instructor-section {
    padding: 96px 0;
    background: var(--pmt-soft);
}

.pmt-instructor-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 68px;
    align-items: center;
}

.pmt-instructor-image {
    position: relative;
}

.pmt-instructor-image::before {
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid #bcd4ee;
    border-radius: 24px;
    content: "";
}

.pmt-instructor-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: var(--pmt-shadow);
}

.pmt-instructor-section p {
    color: #405267;
}

.pmt-source-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pmt-source-links a {
    padding: 9px 13px;
    border: 1px solid #cbd9e8;
    border-radius: 9px;
    background: var(--pmt-white);
    color: var(--pmt-blue-dark);
    font-size: 13px;
    font-weight: 700;
}

.pmt-source-links a:hover {
    border-color: var(--pmt-blue);
}

.pmt-review-note {
    margin-top: 20px;
    font-size: 12px;
}

.pmt-faq-section {
    padding: 100px 0;
}

.pmt-faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.pmt-faq-grid > div:first-child {
    position: sticky;
    top: 30px;
}

.pmt-faq-list {
    border-top: 1px solid var(--pmt-line);
}

.pmt-faq-item {
    border-bottom: 1px solid var(--pmt-line);
}

.pmt-faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--pmt-ink);
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.pmt-faq-item button span:last-child {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    place-items: center;
    border-radius: 50%;
    background: #fff8e3;
    color: var(--pmt-blue);
    font-size: 21px;
    transition: transform 0.2s ease;
}

.pmt-faq-item button[aria-expanded="true"] span:last-child {
    transform: rotate(45deg);
}

.pmt-faq-answer {
    padding: 0 50px 24px 0;
}

.pmt-faq-answer p {
    margin: 0;
    color: var(--pmt-muted);
}

.pmt-final-cta {
    padding: 84px 0 110px;
    background: linear-gradient(135deg, #0c58df, #0a2b59);
    color: var(--pmt-white);
}

.pmt-final-cta-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.pmt-final-cta h2,
.pmt-final-cta .pmt-eyebrow {
    color: var(--pmt-white);
}

.pmt-final-cta p {
    max-width: 720px;
    margin-bottom: 0;
    color: #c9dcf6;
}

.pmt-mobile-bar {
    position: fixed;
    z-index: 9997;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: none;
    max-width: 680px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto;
    padding: 12px 12px 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(7, 17, 31, 0.94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    color: var(--pmt-white);
    backdrop-filter: blur(14px);
}

.pmt-mobile-bar strong,
.pmt-mobile-bar span {
    display: block;
}

.pmt-mobile-bar strong {
    font-size: 14px;
}

.pmt-mobile-bar span {
    color: #9fb1c7;
    font-size: 11px;
}

.pmt-mobile-bar .pmt-btn {
    min-height: 44px;
    padding: 12px 18px;
    font-size: 13px;
}

.pmt-lightbox {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 30px;
    background: rgba(1, 7, 14, 0.92);
    backdrop-filter: blur(10px);
}

.pmt-lightbox[hidden] {
    display: none;
}

.pmt-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 84vh;
    border-radius: 14px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.pmt-lightbox-close {
    position: fixed;
    top: 18px;
    right: 24px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--pmt-white);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

@media (min-width: 1025px) {
    .pmt-mobile-bar.is-visible {
        display: flex;
    }
}

@media (max-width: 1024px) {
    .pmt-hero {
        min-height: auto;
    }

    .pmt-hero-grid {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-top: 70px;
    }

    .pmt-hero-copy {
        max-width: 820px;
    }

    .pmt-hero-visual {
        max-width: 760px;
        margin: 0 auto;
    }

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

    .pmt-proof-grid > div:nth-child(2) {
        border-right: 0;
    }

    .pmt-proof-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--pmt-line);
    }

    .pmt-quick-grid,
    .pmt-faq-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .pmt-toc ol {
        grid-template-columns: repeat(2, 1fr);
    }

    .pmt-content-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pmt-sidebar {
        order: -1;
    }

    .pmt-sticky-card {
        position: relative;
        top: auto;
    }

    .pmt-instructor-grid {
        grid-template-columns: 300px 1fr;
        gap: 45px;
    }

    .pmt-faq-grid > div:first-child {
        position: relative;
        top: auto;
    }

    .pmt-final-cta-inner,
    .pmt-cta-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .pmt-page {
        font-size: 16px;
    }

    .pmt-container {
        width: min(100% - 28px, 1180px);
    }

    .pmt-section {
        padding: 64px 0;
    }

    .pmt-hero-grid {
        padding-top: 56px;
        padding-bottom: 72px;
    }

    .pmt-hero h1 {
        font-size: clamp(39px, 12vw, 56px);
    }

    .pmt-lead {
        font-size: 17px;
    }

    .pmt-hero-actions,
    .pmt-final-actions {
        flex-direction: column;
    }

    .pmt-hero-actions .pmt-btn,
    .pmt-final-actions .pmt-btn {
        width: 100%;
    }

    .pmt-hero-image-wrap {
        transform: none;
    }

    .pmt-hero-image {
        min-height: 300px;
    }

    .pmt-floating-card {
        position: static;
        max-width: none;
        margin-top: 10px;
    }

    .pmt-proof-grid {
        grid-template-columns: 1fr;
    }

    .pmt-proof-grid > div,
    .pmt-proof-grid > div:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--pmt-line);
    }

    .pmt-proof-grid > div:last-child {
        border-bottom: 0;
    }

    .pmt-answer-card {
        padding: 25px;
    }

    .pmt-toc ol {
        grid-template-columns: 1fr;
    }

    .pmt-content-layout {
        padding-top: 64px;
        padding-bottom: 75px;
    }

    .pmt-article-section {
        padding-bottom: 46px;
    }

    .pmt-article-section h2 {
        font-size: 30px;
    }

    .pmt-cta-panel {
        padding: 28px;
    }

    .pmt-gallery-section,
    .pmt-instructor-section,
    .pmt-faq-section {
        padding: 72px 0;
    }

    .pmt-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 235px;
    }

    .pmt-gallery-wide {
        grid-column: span 1;
    }

    .pmt-instructor-grid {
        grid-template-columns: 1fr;
    }

    .pmt-instructor-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .pmt-faq-answer {
        padding-right: 0;
    }

    .pmt-final-cta {
        padding: 70px 0 120px;
    }

    .pmt-mobile-bar,
    .pmt-mobile-bar.is-visible {
        display: flex;
        right: 10px;
        bottom: 10px;
        left: 10px;
    }

    .pmt-mobile-bar > div {
        display: none;
    }

    .pmt-mobile-bar .pmt-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pmt-page *,
    .pmt-page *::before,
    .pmt-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}


.pmt-risk-banner {
    padding: 18px 0;
    background: #fff4d7;
    border-top: 1px solid #e6cf92;
    border-bottom: 1px solid #e6cf92;
    color: #4a3714;
    font-size: 15px;
    line-height: 1.6;
}

.pmt-risk-banner strong { color: #2b200d; }

.pmt-author-section {
    padding: 92px 0;
    background: #0b0e12;
    color: #d5d8dc;
}

.pmt-author-grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 70px;
}

.pmt-author-section h2 { color: #fff; }
.pmt-author-image img { border-radius: 24px; box-shadow: 0 25px 70px rgba(0,0,0,.34); }

@media (max-width: 820px) {
    .pmt-author-grid { grid-template-columns: 1fr; gap: 34px; }
}
