:root {
    --thp-black: #090909;
    --thp-ink: #151515;
    --thp-muted: #6f6f6b;
    --thp-line: #d8d8d4;
    --thp-paper: #ffffff;
    --thp-soft: #ececea;
    --thp-soft-2: #f5f5f3;
    --thp-orange: #f4772a;
    --thp-gold: #ffbd4a;
    --thp-purple: #bc73df;
    --thp-blue-black: #101a24;
    --thp-radius: 28px;
    --thp-max: 1200px;
    --thp-reading: 850px;
    --thp-shadow: 0 22px 70px rgba(18, 18, 18, 0.08);
    --thp-font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--thp-ink);
    background: var(--thp-paper);
    font-family: var(--thp-font);
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--thp-orange); color: var(--thp-black); }

.thp-sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.thp-skip {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 9999;
    transform: translateY(-180%);
    background: var(--thp-black);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
}
.thp-skip:focus { transform: translateY(0); }
.thp-wrap { width: min(calc(100% - 48px), var(--thp-max)); margin-inline: auto; }
.thp-main { min-height: 60vh; }
.thp-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.thp-site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.94);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(16px);
}
.thp-nav-wrap {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.thp-brand img { display: block; width: 210px; height: auto; }
.thp-nav { display: flex; align-items: center; gap: 30px; font-weight: 700; }
.thp-nav a { text-decoration: none; }
.thp-nav a:hover { color: var(--thp-orange); }
.thp-nav-cta {
    padding: 12px 19px;
    background: var(--thp-black);
    color: #fff;
    border-radius: 999px;
}
.thp-nav a.thp-nav-cta:hover { color: #fff; background: var(--thp-orange); }
.thp-search {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.thp-search svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.thp-menu-toggle { display: none; }

.thp-hero { padding: 34px 0 72px; }
.thp-hero-shell {
    position: relative;
    min-height: 700px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    border-radius: 10px;
    background: #e9e9e7;
}
.thp-hero-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: clamp(42px, 7vw, 92px);
}
.thp-hero-copy h1 {
    max-width: 7.5ch;
    margin: 0;
    font-size: clamp(56px, 7vw, 100px);
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-transform: uppercase;
}
.thp-hero-copy h1 span { color: var(--thp-black); }
.thp-hero-copy > p {
    max-width: 510px;
    margin: 34px 0 30px;
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.35;
}
.thp-hero-visual { position: relative; min-height: 700px; }
.thp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(14px);
}
.thp-orb-one {
    width: 520px; height: 520px;
    right: -90px; bottom: -90px;
    background: radial-gradient(circle at 40% 34%, #ffd059 0 16%, #ff9b3e 34%, rgba(244,119,42,0.68) 52%, rgba(188,115,223,0.36) 70%, transparent 79%);
}
.thp-orb-two {
    width: 270px; height: 270px;
    right: 34%; top: 18%;
    background: radial-gradient(circle at 34% 34%, rgba(255,190,76,0.92), rgba(244,119,42,0.48) 42%, rgba(188,115,223,0.42) 64%, transparent 76%);
}
.thp-hero-ring {
    position: absolute;
    width: 540px; height: 540px;
    right: -30px; top: 80px;
    border: 1px solid rgba(0,0,0,0.32);
    border-left-color: transparent;
    border-radius: 50%;
}
.thp-hero-line {
    position: absolute;
    width: 55%;
    right: 7%; bottom: 18%;
    height: 1px;
    background: rgba(0,0,0,0.25);
}

.thp-signup {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    width: min(100%, 520px);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    overflow: hidden;
}
.thp-signup input {
    min-width: 0;
    padding: 18px 22px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--thp-ink);
}
.thp-signup button {
    min-width: 135px;
    padding: 16px 22px;
    border: 0;
    background: var(--thp-black);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}
.thp-signup button:hover { background: var(--thp-orange); color: var(--thp-black); }
.thp-success, .thp-error {
    display: none;
    grid-column: 1 / -1;
    margin: 0;
    padding: 10px 22px 16px;
    font-size: 13px;
}
.thp-signup.success .thp-success { display: block; }
.thp-signup.error .thp-error { display: block; }

.thp-sec { padding: 96px 0; }
.thp-sec-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}
.thp-sec-head h2,
.thp-thesis h2,
.thp-split-copy h2,
.thp-chart-copy h2,
.thp-cta-inner h2 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}
.thp-text-link { font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.thp-text-link:hover { color: var(--thp-orange); }

.thp-post-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 38px;
}
.thp-post-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.thp-post-card { min-width: 0; }
.thp-card-art {
    position: relative;
    display: block;
    aspect-ratio: 1.48 / 1;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 8% 14%, rgba(255,190,74,0.98), rgba(244,119,42,0.68) 30%, rgba(188,115,223,0.44) 45%, rgba(255,255,255,0.96) 62%),
        #fff;
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.thp-card-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.02), rgba(255,255,255,0.34));
}
.thp-card-date {
    position: absolute;
    z-index: 2;
    top: 20px; left: 20px;
    font-size: 10px;
    font-weight: 700;
    text-decoration: underline;
}
.thp-card-circle {
    position: absolute;
    z-index: 1;
    width: 72%;
    aspect-ratio: 1;
    right: -12%; top: 4%;
    border: 1px solid rgba(0,0,0,0.55);
    border-left-color: transparent;
    border-radius: 50%;
}
.thp-card-title {
    position: absolute;
    z-index: 3;
    top: 30%; left: 43%; right: 7%;
    font-size: clamp(17px, 1.8vw, 29px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    font-weight: 700;
}
.thp-card-art img {
    position: absolute;
    z-index: 3;
    left: 20px; bottom: 18px;
    width: 105px;
    height: auto;
}
.thp-card-copy { padding-top: 20px; }
.thp-card-copy h2, .thp-card-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.04;
    letter-spacing: -0.045em;
}
.thp-card-copy h3 { font-size: clamp(23px, 2.1vw, 31px); }
.thp-card-copy a { text-decoration: none; }
.thp-card-copy a:hover { color: var(--thp-orange); }
.thp-card-copy p {
    margin: 0;
    color: var(--thp-muted);
    font-size: 18px;
    line-height: 1.35;
}

.thp-thesis { background: var(--thp-soft); }
.thp-thesis-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: start;
}
.thp-thesis-statement {
    max-width: 10ch;
    margin: 48px 0 0;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.9;
    letter-spacing: -0.065em;
    font-weight: 800;
}
.thp-thesis-copy { padding-top: 50px; }
.thp-thesis-copy p { font-size: 19px; color: var(--thp-muted); }
.thp-thesis-copy h3 {
    margin: 24px 0 42px;
    font-size: clamp(30px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.thp-split,
.thp-chart-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
}
.thp-split-copy, .thp-chart-copy { position: sticky; top: 140px; }
.thp-split-copy p, .thp-chart-copy p {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--thp-muted);
    font-size: 20px;
    line-height: 1.45;
}
.thp-visual-card {
    margin: 0;
    overflow: hidden;
    border-radius: var(--thp-radius);
    box-shadow: var(--thp-shadow);
    background: #fff;
}
.thp-visual-card img { display: block; width: 100%; }
.thp-chart-section { background: var(--thp-soft-2); }
.thp-chart-grid { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); }

.thp-topic-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid var(--thp-line);
    border-bottom: 1px solid var(--thp-line);
}
.thp-topic-grid article {
    min-height: 280px;
    padding: 24px;
    border-right: 1px solid var(--thp-line);
}
.thp-topic-grid article:last-child { border-right: 0; }
.thp-topic-grid span { color: var(--thp-orange); font-size: 12px; font-weight: 800; }
.thp-topic-grid h3 {
    margin: 110px 0 0;
    font-size: clamp(22px, 2.3vw, 34px);
    line-height: 1;
    letter-spacing: -0.04em;
}

.thp-cta-band {
    padding: 80px 0;
    color: #fff;
    background:
        linear-gradient(90deg, #050505 0%, #08111a 56%, rgba(244,119,42,0.74) 82%, #050505 100%);
}
.thp-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
    gap: 70px;
    align-items: center;
}
.thp-cta-inner h2 { max-width: 780px; }
.thp-signup-dark { border-color: rgba(255,255,255,0.3); }

.thp-footer { padding: 64px 0 24px; color: #fff; background: var(--thp-black); }
.thp-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(150px, 0.5fr));
    gap: 70px;
}
.thp-footer-brand img { width: 230px; filter: invert(1); }
.thp-footer-brand p { max-width: 380px; color: #adada8; font-size: 17px; }
.thp-footer-links, .thp-footer-legal { display: grid; align-content: start; gap: 13px; }
.thp-footer-links strong, .thp-footer-legal strong { margin-bottom: 8px; }
.thp-footer a, .thp-footer button { color: #bdbdb8; text-decoration: none; }
.thp-footer button { width: max-content; padding: 0; border: 0; background: transparent; cursor: pointer; }
.thp-footer a:hover, .thp-footer button:hover { color: var(--thp-orange); }
.thp-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.18);
    color: #858580;
    font-size: 13px;
}

.thp-listing-hero {
    padding: 100px 0 54px;
    border-bottom: 1px solid var(--thp-line);
}
.thp-listing-hero h1 {
    margin: 0;
    font-size: clamp(64px, 10vw, 132px);
    line-height: 0.88;
    letter-spacing: -0.07em;
}
.thp-listing-hero p { max-width: 680px; margin: 28px 0 0; color: var(--thp-muted); font-size: 21px; }
.thp-listing { padding-top: 58px; }
.thp-pagination, .pagination {
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 18px;
}
.pagination a { padding: 13px 20px; border: 1px solid var(--thp-line); border-radius: 999px; text-decoration: none; }
.pagination a:hover { border-color: var(--thp-black); background: var(--thp-black); color: #fff; }

.post-template, .page-template { background: var(--thp-soft); }
.thp-article-wrap { padding: 54px 24px 96px; }
.thp-article-card {
    width: min(100%, 930px);
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--thp-shadow);
}
.thp-article-header { padding: 28px 40px 0; }
.thp-article-meta-row {
    display: flex;
    justify-content: flex-end;
    gap: 13px;
    color: var(--thp-muted);
    font-size: 13px;
}
.thp-article-meta-row > * + *::before { content: "|"; margin-right: 13px; }
.thp-article-brand-panel {
    position: relative;
    overflow: hidden;
    min-height: 120px;
    display: flex;
    align-items: center;
    margin: 20px 0 36px;
    padding: 28px 30px;
    border-radius: 16px;
    background: #e9e9e7;
}
.thp-article-brand-panel::after {
    content: "";
    position: absolute;
    width: 230px; height: 230px;
    right: -30px; top: -85px;
    border-radius: 50%;
    filter: blur(5px);
    background: radial-gradient(circle, rgba(255,190,70,0.96), rgba(244,119,42,0.58) 42%, rgba(188,115,223,0.5) 62%, transparent 72%);
}
.thp-article-brand-panel img { position: relative; z-index: 2; width: 205px; }
.thp-article-header h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(46px, 6.4vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}
.thp-article-excerpt {
    max-width: 760px;
    margin: 20px 0 0;
    color: #4e4e4b;
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.25;
}
.thp-article-image { margin: 30px 40px 0; }
.thp-article-image img { width: 100%; max-height: 560px; object-fit: cover; border-radius: 18px; }
.thp-article-image figcaption { margin-top: 10px; color: var(--thp-muted); font-size: 13px; }
.thp-article-content {
    max-width: var(--thp-reading);
    margin: 0 auto;
    padding: 0 30px 58px;
    font-size: 19px;
    line-height: 1.58;
}
.thp-article-header + .thp-article-content { padding-top: 0; }
.thp-article-image + .thp-article-content { padding-top: 30px; }
.thp-article-content > :first-child,
.thp-article-content .long-horizon-post > :first-child { margin-top: 0; }
.thp-article-content .kg-card { margin-top: 0; }
.thp-article-content .kg-html-card { margin: 0; }
.thp-article-content .long-horizon-post { max-width: none !important; margin: 0 !important; }
.thp-article-content p { margin: 0 0 1.25em; }
.thp-article-content h2 {
    margin: 2.15em 0 0.72em !important;
    font-size: clamp(27px, 3.2vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}
.thp-article-content h3 {
    margin: 1.9em 0 0.7em !important;
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.1;
}
.thp-article-content a { color: var(--thp-orange); text-decoration-thickness: 2px; text-underline-offset: 3px; overflow-wrap: anywhere; }
.thp-article-content blockquote {
    margin: 2em 0;
    padding: 25px 28px;
    border-left: 4px solid var(--thp-orange);
    background: var(--thp-soft-2);
    font-size: 1.08em;
}
.thp-article-content hr { margin: 2.6em 0; border: 0; border-top: 1px solid var(--thp-line); }
.thp-article-content img { border-radius: 18px; }
.thp-article-content pre { overflow-x: auto; }
.thp-article-content table { width: 100%; border-collapse: collapse; }
.thp-article-content th, .thp-article-content td { padding: 10px; border-bottom: 1px solid var(--thp-line); text-align: left; }
.thp-keep-reading { padding: 90px 0; background: #fff; }

.thp-page-wrap .thp-article-content { padding-top: 32px; }
.thp-error-page { min-height: 70vh; display: grid; place-items: center; padding: 100px 0; text-align: center; }
.thp-error-page h1 { max-width: 900px; margin: 0 auto; font-size: clamp(54px, 8vw, 110px); line-height: 0.92; letter-spacing: -0.065em; }
.thp-error-page p { max-width: 560px; margin: 28px auto; color: var(--thp-muted); font-size: 20px; }
.thp-button { display: inline-block; padding: 15px 22px; background: var(--thp-black); color: #fff; border-radius: 999px; text-decoration: none; font-weight: 800; }

button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--thp-orange); outline-offset: 3px; }

@media (max-width: 1000px) {
    .thp-hero-shell { grid-template-columns: 1fr; min-height: auto; }
    .thp-hero-copy { padding-bottom: 30px; }
    .thp-hero-visual { min-height: 360px; }
    .thp-post-grid-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .thp-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .thp-topic-grid article { border-bottom: 1px solid var(--thp-line); }
    .thp-topic-grid article:nth-child(2n) { border-right: 0; }
    .thp-topic-grid article:last-child { grid-column: 1 / -1; }
    .thp-split, .thp-chart-grid { grid-template-columns: 1fr; }
    .thp-split-copy, .thp-chart-copy { position: static; }
    .thp-chart-copy { max-width: 760px; }
    .thp-cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .thp-wrap { width: min(calc(100% - 32px), var(--thp-max)); }
    .thp-nav-wrap { min-height: 76px; }
    .thp-brand img { width: 175px; }
    .thp-menu-toggle {
        position: relative;
        display: grid;
        place-items: center;
        width: 44px; height: 44px;
        border: 1px solid var(--thp-line);
        border-radius: 50%;
        background: #fff;
    }
    .thp-menu-lines, .thp-menu-lines::before, .thp-menu-lines::after {
        width: 18px; height: 2px; background: var(--thp-black); content: ""; display: block;
    }
    .thp-menu-lines::before { transform: translateY(-6px); }
    .thp-menu-lines::after { transform: translateY(4px); }
    .thp-nav {
        position: absolute;
        left: 16px; right: 16px; top: calc(100% + 8px);
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
        padding: 18px;
        border: 1px solid var(--thp-line);
        border-radius: 20px;
        background: #fff;
        box-shadow: var(--thp-shadow);
    }
    .thp-nav.is-open { display: flex; }
    .thp-nav a, .thp-nav button { min-height: 44px; display: flex; align-items: center; }
    .thp-search { justify-content: flex-start; }
    .thp-nav-cta { justify-content: center; }
    .thp-hero { padding: 16px 0 50px; }
    .thp-hero-copy { padding: 40px 24px 24px; }
    .thp-hero-copy h1 { font-size: clamp(52px, 16vw, 72px); }
    .thp-hero-copy > p { font-size: 18px; }
    .thp-hero-visual { min-height: 290px; }
    .thp-orb-one { width: 360px; height: 360px; }
    .thp-orb-two { width: 190px; height: 190px; }
    .thp-hero-ring { width: 360px; height: 360px; right: -90px; top: 20px; }
    .thp-signup { grid-template-columns: 1fr; border-radius: 22px; }
    .thp-signup button { min-height: 52px; }
    .thp-sec { padding: 70px 0; }
    .thp-sec-head { align-items: start; flex-direction: column; }
    .thp-post-grid, .thp-post-grid-three { grid-template-columns: 1fr; gap: 42px; }
    .thp-card-title { font-size: clamp(21px, 7.2vw, 34px); }
    .thp-thesis-grid { grid-template-columns: 1fr; }
    .thp-thesis-statement { font-size: clamp(48px, 15vw, 74px); }
    .thp-thesis-copy { padding-top: 0; }
    .thp-topic-grid { grid-template-columns: 1fr; }
    .thp-topic-grid article, .thp-topic-grid article:nth-child(2n) { border-right: 0; }
    .thp-topic-grid article:last-child { grid-column: auto; }
    .thp-topic-grid h3 { margin-top: 70px; }
    .thp-footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .thp-footer-bottom { flex-direction: column; }
    .thp-listing-hero { padding: 72px 0 38px; }
    .thp-article-wrap { padding: 22px 10px 70px; }
    .thp-article-card { border-radius: 20px; }
    .thp-article-header { padding: 20px 20px 0; }
    .thp-article-meta-row { justify-content: flex-start; }
    .thp-article-brand-panel { min-height: 100px; margin-bottom: 28px; padding: 22px; }
    .thp-article-brand-panel img { width: 170px; }
    .thp-article-header h1 { font-size: clamp(42px, 13vw, 62px); }
    .thp-article-excerpt { font-size: 20px; }
    .thp-article-image { margin: 20px 20px 0; }
    .thp-article-image + .thp-article-content { padding-top: 20px; }
    .thp-article-content { padding: 0 20px 42px; font-size: 18px; }
    .thp-keep-reading { padding: 70px 0; }
}

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


/* Ghost Koenig editor wide and full-width cards */
.thp-article-content .kg-width-wide {
    width: min(1200px, calc(100vw - 48px));
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.thp-article-content .kg-width-full {
    width: 100vw;
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.thp-article-content .kg-width-wide img,
.thp-article-content .kg-width-full img {
    width: 100%;
    height: auto;
}

@media (max-width: 760px) {
    .thp-article-content .kg-width-wide,
    .thp-article-content .kg-width-full {
        width: calc(100vw - 20px);
    }
}


/* Archive: 3-column layout on large desktop */
.thp-listing .thp-post-grid.thp-post-grid-three {
    gap: 42px 34px;
}
.thp-listing .thp-post-grid.thp-post-grid-three .thp-card-copy {
    padding-top: 16px;
}
.thp-listing .thp-post-grid.thp-post-grid-three .thp-card-copy h2 {
    font-size: clamp(20px, 1.9vw, 28px);
    margin-bottom: 8px;
}
.thp-listing .thp-post-grid.thp-post-grid-three .thp-card-copy p {
    font-size: 16px;
    line-height: 1.35;
}
.thp-listing .thp-post-grid.thp-post-grid-three .thp-card-art {
    aspect-ratio: 1.42 / 1;
}
.thp-listing .thp-post-grid.thp-post-grid-three .thp-card-title {
    top: 28%;
    left: 40%;
    right: 6%;
    font-size: clamp(16px, 1.35vw, 24px);
}
.thp-listing .thp-post-grid.thp-post-grid-three .thp-card-date {
    top: 18px;
    left: 18px;
}
.thp-listing .thp-post-grid.thp-post-grid-three .thp-card-art img {
    left: 18px;
    bottom: 16px;
    width: 96px;
}
@media (max-width: 1000px) {
    .thp-listing .thp-post-grid.thp-post-grid-three .thp-card-copy h2 {
        font-size: clamp(22px, 2.8vw, 30px);
    }
    .thp-listing .thp-post-grid.thp-post-grid-three .thp-card-title {
        font-size: clamp(18px, 2vw, 27px);
    }
}
@media (max-width: 760px) {
    .thp-listing .thp-post-grid.thp-post-grid-three .thp-card-copy p {
        font-size: 18px;
    }
    .thp-listing .thp-post-grid.thp-post-grid-three .thp-card-art {
        aspect-ratio: 1.48 / 1;
    }
}
