:root {
    --blue: #22aee4;
    --green: #80bd3f;
    --ink: #171717;
    --muted: #707070;
    --paper: #ffffff;
    --soft: #f2f2f2;
    --rule: #e6e6e6;
    --glass: rgba(255, 255, 255, 0.76);
    --glass-strong: rgba(255, 255, 255, 0.92);
    --hairline: rgba(23, 23, 23, 0.08);
    --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    --serif: var(--display);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
}

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

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

.site-shell {
    min-height: 100vh;
}

.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px 24px 24px;
}

.site-brand {
    display: grid;
    justify-items: center;
    gap: 4px;
    color: var(--ink);
    text-align: center;
}

.site-brand-tagline {
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(31px, 3.55vw, 52px);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 0.98;
}

.site-brand-community {
    color: var(--blue);
    font-size: clamp(12px, 1.1vw, 15px);
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-nav ul {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.site-nav a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    height: 24px;
}

.nav-menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.nav-menu-trigger:hover,
.nav-menu:focus-within .nav-menu-trigger {
    color: var(--ink);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 13px);
    left: 50%;
    z-index: 20;
    display: grid;
    gap: 6px;
    min-width: 288px;
    padding: 8px;
    border: 1px solid var(--hairline);
    border-radius: 20px;
    background: var(--glass);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
    backdrop-filter: blur(26px) saturate(1.45);
    -webkit-backdrop-filter: blur(26px) saturate(1.45);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px) scale(0.975);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-dropdown-shows {
    grid-template-columns: repeat(2, minmax(132px, 1fr));
}

.nav-dropdown-socials {
    grid-template-columns: repeat(2, minmax(178px, 1fr));
    min-width: 420px;
}

.nav-dropdown-apps {
    grid-template-columns: 1fr;
    min-width: 260px;
}

.nav-dropdown-gear {
    grid-template-columns: repeat(2, minmax(158px, 1fr));
    min-width: 380px;
}

.nav-dropdown-connect {
    grid-template-columns: 1fr;
    min-width: 280px;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0) scale(1);
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.36);
    color: var(--ink);
    font-size: 12px;
    letter-spacing: 0.06em;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28) inset;
    transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-dropdown a:hover {
    background: var(--glass-strong);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(34, 174, 228, 0.12) inset;
    color: #0b7ca8;
    transform: translateY(-1px);
}

.nav-social-icon {
    position: relative;
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    color: var(--ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.84) inset;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-dropdown a:hover .nav-social-icon {
    transform: scale(1.06);
}

.icon-youtube {
    color: #ff0033;
}

.icon-instagram {
    color: #c13584;
}

.icon-threads {
    color: #111111;
}

.icon-bluesky {
    color: #1083fe;
}

.icon-x {
    color: #111111;
}

.icon-tiktok {
    color: #00a6b8;
}

.icon-mastodon {
    color: #6364ff;
}

.icon-linkedin {
    color: #0a66c2;
}

.icon-gear {
    color: var(--green);
}

.icon-cal {
    color: var(--blue);
}

.icon-youtube::before {
    content: "";
    width: 0;
    height: 0;
    margin-left: 2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.icon-instagram::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.icon-threads::before {
    content: "@";
    font-size: 16px;
}

.icon-bluesky::before {
    content: "B";
}

.icon-x::before {
    content: "X";
}

.icon-tiktok::before {
    content: "♪";
    font-size: 14px;
}

.icon-mastodon::before {
    content: "M";
}

.icon-linkedin::before {
    content: "in";
}

.icon-gear::before {
    content: "G";
}

.icon-cal::before {
    content: "C";
}

.icon-more::before {
    content: "...";
}

.site-search-link {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    color: var(--muted) !important;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-search-link:hover {
    background: rgba(34, 174, 228, 0.08);
    color: var(--ink) !important;
    transform: translateY(-1px);
}

.search-icon {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.search-icon::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
}

.site-main {
    width: 100%;
}

.featured-story {
    display: grid;
    grid-template-columns: minmax(190px, 0.74fr) minmax(390px, 1.42fr) minmax(280px, 1fr);
    gap: 36px;
    align-items: center;
    width: min(1200px, calc(100% - 48px));
    margin: 10px auto 38px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--rule);
}

.featured-kicker {
    align-self: center;
}

.featured-kicker span {
    display: block;
    width: 56px;
    height: 2px;
    margin-bottom: 26px;
    background: var(--blue);
}

.featured-eyebrow {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.featured-kicker h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(34px, 3.3vw, 52px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: 0;
    text-wrap: balance;
}

.featured-kicker p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.featured-kicker a,
.featured-link {
    display: inline-flex;
    align-items: center;
    margin-top: 22px;
    color: #0b7ca8;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-kicker a::after,
.featured-link::after {
    content: "→";
    margin-left: 10px;
}

.featured-media {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 5px;
    background: #ddd;
}

.featured-card {
    align-self: center;
}

.featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-copy h2 {
    margin: 8px 0 0;
    font-family: var(--serif);
    font-size: clamp(30px, 2.8vw, 44px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
    text-wrap: balance;
}

.featured-copy p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.latest-section {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto 76px;
}

.latest-section > h2 {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 40px;
    width: 100%;
    margin: 0;
}

.post-card {
    background: transparent;
    opacity: 1;
    transform: translateY(0);
}

.js-enabled .post-card {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--card-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js-enabled .post-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.post-card:hover,
.post-card:focus-within,
.js-enabled .post-card.is-visible:hover,
.js-enabled .post-card.is-visible:focus-within {
    transform: translateY(-3px);
}

.post-card-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ddd;
    border-radius: 4px;
    transition: box-shadow 220ms ease;
}

.post-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 360ms ease;
}

.post-card:hover .post-card-media,
.post-card:focus-within .post-card-media {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.post-card:hover .post-card-media img,
.post-card:focus-within .post-card-media img {
    filter: brightness(1.03) contrast(1.02);
    transform: scale(1.025);
}

.post-card-body {
    padding: 16px 2px 0;
}

.post-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1.4;
    text-transform: uppercase;
}

.post-card-meta a {
    color: #0b7ca8;
}

.post-card-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(20px, 1.38vw, 24px);
    font-weight: 580;
    line-height: 1.13;
    letter-spacing: 0;
    text-wrap: balance;
}

.post-card-title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    transition: color 180ms ease;
}

.post-card:hover .post-card-title a,
.post-card:focus-within .post-card-title a {
    color: #0b7ca8;
}

.post-card-excerpt {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px auto 80px;
    color: var(--muted);
    font-size: 14px;
}

.infinite-scroll-enabled .pagination {
    display: none;
}

.pagination.is-visible-fallback {
    display: flex;
}

.infinite-scroll-sentinel {
    display: grid;
    justify-items: center;
    gap: 14px;
    min-height: 90px;
    margin: -34px auto 70px;
    color: #b0b0b0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.infinite-scroll-sentinel button {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: var(--paper);
    color: var(--muted);
    cursor: pointer;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.infinite-scroll-sentinel button:hover {
    border-color: rgba(34, 174, 228, 0.38);
    color: #0b7ca8;
    transform: translateY(-1px);
}

.infinite-scroll-sentinel.is-loading button,
.infinite-scroll-sentinel.is-done button {
    display: none;
}

.infinite-scroll-sentinel::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    margin: 2px auto 0;
    border: 1px solid var(--rule);
    border-top-color: var(--blue);
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 180ms ease, transform 180ms ease;
}

.infinite-scroll-sentinel.is-loading::after {
    opacity: 1;
    transform: scale(1);
    animation: lwt-spin 900ms linear infinite;
}

.infinite-scroll-sentinel:not(.is-loading)::after {
    display: none;
}

@keyframes lwt-spin {
    to {
        transform: rotate(360deg);
    }
}

.article {
    width: min(1320px, calc(100% - 48px));
    margin: 0 auto;
}

.article-header {
    margin: 12px auto 42px;
    text-align: center;
}

.article-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.article-page-feature {
    width: min(960px, 100%);
    margin: 34px auto 0;
}

.article-page-feature img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
}

.article-content {
    width: min(1080px, 100%);
    margin: 0 auto;
}

.gh-content {
    font-family: var(--serif);
    font-size: clamp(20px, 1.45vw, 26px);
    line-height: 1.95;
}

.article.tag-archive {
    width: min(1180px, calc(100% - 48px));
}

.article.tag-archive .article-header {
    max-width: 880px;
    margin-bottom: 34px;
}

.article.tag-archive .article-title {
    font-size: clamp(36px, 4.2vw, 62px);
    line-height: 1.08;
}

.article.tag-archive .article-content {
    width: min(920px, 100%);
}

.article.tag-archive .gh-content {
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.72;
}

.gh-content > * {
    margin-left: auto;
    margin-right: auto;
}

.gh-content p {
    margin-top: 0;
    margin-bottom: 34px;
}

.post-template .gh-content > p:first-of-type {
    width: min(840px, 100%);
    margin-bottom: 48px;
    color: var(--ink);
    font-family: var(--sans);
    font-size: clamp(23px, 2vw, 31px);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.52;
}

.article.tag-archive .gh-content p {
    margin-bottom: 24px;
}

.post-template .article.tag-archive .gh-content > p:first-of-type {
    width: min(800px, 100%);
    margin-bottom: 36px;
    font-size: clamp(19px, 1.65vw, 24px);
    font-weight: 500;
    line-height: 1.58;
}

.gh-content a {
    color: #0b7ca8;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.gh-content figure,
.gh-content .kg-card {
    margin-top: 0;
    margin-bottom: 56px;
}

.gh-content figure:has(+ p),
.gh-content .kg-card:has(+ p) {
    margin-bottom: 34px;
}

.gh-content .kg-width-wide {
    width: min(1080px, 100%);
}

.gh-content .kg-width-full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.gh-content iframe,
.gh-content .kg-embed-card iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.gh-content .kg-image-card img,
.gh-content > img {
    width: 100%;
    height: auto;
}

.video-notes,
.video-resources {
    width: min(980px, 100%);
    margin: 0 auto 42px;
    font-family: var(--sans);
}

.video-notes {
    padding-top: 4px;
}

.video-notes-intro {
    width: min(920px, 100%);
}

.video-notes-label,
.video-resource-grid span {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.video-notes h2,
.video-resources h2 {
    margin: 0 0 16px;
    font-family: var(--display);
    font-size: clamp(28px, 3.1vw, 44px);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.video-notes h3 {
    margin: 0 0 14px;
    font-family: var(--display);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
}

.video-resource-grid h3 {
    margin: 0 0 10px;
    font-family: var(--display);
    font-size: 19px;
    font-weight: 750;
    line-height: 1.2;
}

.video-resource-grid h3 a {
    color: var(--ink);
    text-decoration: none;
}

.video-resource-grid h3 a:hover,
.video-resource-grid h3 a:focus-visible {
    color: #0b7ca8;
}

.video-notes p,
.video-resources p {
    margin: 0 0 16px;
    color: #424242;
    font-size: 17px;
    line-height: 1.62;
}

.video-notes-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 1px;
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    background: var(--rule);
}

.video-notes-grid > div {
    padding: 24px;
    background: #fbfbfb;
}

.video-notes ul {
    margin: 0;
    padding-left: 1.1em;
}

.video-notes li {
    margin-bottom: 8px;
    color: #424242;
    font-size: 16px;
    line-height: 1.52;
}

.video-resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.video-resource-grid > div {
    min-height: 178px;
    padding: 22px;
    border: 1px solid var(--hairline);
    border-radius: 8px;
    background: var(--paper);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.video-resource-grid > div:hover,
.video-resource-grid > div:focus-within {
    border-color: rgba(25, 168, 219, 0.28);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.055);
    transform: translateY(-2px);
}

.video-resource-grid span {
    display: block;
}

.video-resource-list {
    overflow: hidden;
    border: 1px solid var(--hairline);
    border-radius: 8px;
    background: #fbfbfb;
    box-shadow: none;
}

.video-resources:has(.video-resource-list) h2 {
    margin-bottom: 12px;
    font-size: clamp(24px, 2.3vw, 34px);
    letter-spacing: -0.01em;
}

.video-resource-list a {
    display: grid;
    grid-template-columns: minmax(108px, 0.26fr) minmax(0, 0.42fr) minmax(0, 0.62fr) 18px;
    gap: 16px;
    align-items: center;
    padding: 14px 18px;
    color: var(--ink);
    text-decoration: none;
    transition: background-color 180ms ease, color 180ms ease;
}

.video-resource-list a + a {
    border-top: 1px solid var(--hairline);
}

.video-resource-list a:hover,
.video-resource-list a:focus-visible {
    background: rgba(25, 168, 219, 0.032);
}

.video-resource-list span {
    color: rgba(25, 168, 219, 0.76);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.video-resource-list strong {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.25;
}

.video-resource-list em {
    color: #595959;
    font-size: 14px;
    font-style: normal;
    line-height: 1.42;
}

.video-resource-list svg {
    width: 16px;
    height: 16px;
    color: #b0b0b0;
    transition: color 180ms ease, transform 180ms ease;
}

.video-resource-list a:hover svg,
.video-resource-list a:focus-visible svg {
    color: var(--blue);
    transform: translateX(2px);
}

.youtube-subscribe-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(840px, 100%);
    margin: -22px auto 50px;
    padding: 16px 18px;
    border: 1px solid var(--hairline);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.05);
    color: var(--muted);
    font-family: var(--sans);
    font-size: 14px;
    line-height: 1.35;
}

.youtube-subscribe-cta strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.2;
}

.youtube-subscribe-cta a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    border-radius: 999px;
    background: #ff0033;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.youtube-subscribe-cta a:hover {
    box-shadow: 0 10px 28px rgba(255, 0, 51, 0.22);
    color: #ffffff;
    transform: translateY(-1px);
}

.youtube-subscribe-icon {
    width: 0;
    height: 0;
    margin-left: 1px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.article.tag-archive .gh-content figure {
    width: min(760px, 100%);
    margin-bottom: 34px;
}

.article.tag-archive .gh-content figure img {
    width: auto;
    max-height: 720px;
    margin: 0 auto;
    object-fit: contain;
}

.archive-figure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
    gap: 18px;
    align-items: start;
    width: min(920px, 100%);
    margin: 0 auto 42px;
}

.archive-figure-grid figure {
    display: grid;
    align-items: center;
    width: 100%;
    min-height: 136px;
    margin: 0;
    padding: 12px;
    border: 1px solid var(--rule);
    border-radius: 6px;
    background: #fbfbfb;
}

.archive-figure-grid figure img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

.archive-figure-grid figcaption,
.article.tag-archive .gh-content figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0 14px;
    width: min(1080px, 100%);
    margin: 84px auto 120px;
    color: var(--muted);
    font-family: var(--serif);
    font-size: 18px;
}

.article-tags a::after {
    content: "•";
    margin-left: 14px;
    color: #b0b0b0;
}

.article-tags a:last-child::after {
    content: "";
    margin: 0;
}

.article-next {
    display: flex;
    justify-content: flex-end;
    min-height: 120px;
    margin-bottom: 40px;
}

.article-next a {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    max-width: 620px;
    font-family: var(--serif);
    font-size: clamp(26px, 2.4vw, 40px);
    line-height: 1.12;
    text-align: right;
}

.article-next svg {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.latest-strip {
    background: var(--soft);
    padding: 28px 0 42px;
}

.latest-strip-inner {
    width: min(1450px, calc(100% - 48px));
    margin: 0 auto;
}

.latest-strip h2 {
    margin: 0 0 18px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
}

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

.mini-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.mini-card span {
    display: block;
    margin-top: 14px;
    font-family: var(--serif);
    font-size: clamp(20px, 1.7vw, 30px);
    line-height: 1.15;
    text-align: center;
}

.lwt-page {
    width: min(1200px, calc(100% - 48px));
    margin: 12px auto 96px;
}

.lwt-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
    gap: 54px;
    align-items: center;
    margin-bottom: 62px;
}

.lwt-page-hero.compact {
    display: block;
    width: min(780px, 100%);
    margin: 0 auto 52px;
    text-align: center;
}

.lwt-hero-copy p,
.lwt-split-band p:first-child,
.lwt-contact-panel span,
.lwt-contact-actions span,
.supporter-paths span,
.supporter-grid span,
.glossary-grid span {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lwt-hero-copy h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(46px, 5.2vw, 78px);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 0.98;
    text-wrap: balance;
}

.lwt-hero-copy > span {
    display: block;
    max-width: 660px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

.lwt-page-hero.compact .lwt-hero-copy > span {
    margin-left: auto;
    margin-right: auto;
}

.lwt-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lwt-action-row.left {
    margin-top: 22px;
}

.lwt-action-row a,
.lwt-contact-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.05);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.lwt-action-row a:hover,
.lwt-contact-actions a:hover {
    color: #0b7ca8;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.lwt-about-hero {
    align-items: end;
}

.lwt-about-collage {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 14px;
    align-items: end;
}

.lwt-about-collage img,
.lwt-feature-image img,
.glossary-grid img,
.supporter-grid img {
    width: 100%;
    object-fit: cover;
}

.lwt-about-collage img {
    aspect-ratio: 1 / 1;
    border-radius: 26px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.1);
    filter: saturate(0.94);
}

.lwt-about-collage .primary {
    grid-row: span 2;
    aspect-ratio: 4 / 5;
    object-position: center top;
}

.lwt-feature-image img {
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.lwt-visual-lanes,
.lwt-contact-board,
.lwt-contact-actions,
.supporter-paths,
.supporter-grid,
.glossary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 62px;
}

.lwt-visual-lanes a,
.lwt-contact-panel,
.lwt-contact-actions a,
.supporter-paths a,
.supporter-grid article,
.glossary-grid a,
.lwt-quote-panel {
    border: 1px solid var(--hairline);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);
}

.lwt-visual-lanes a {
    display: grid;
    align-content: space-between;
    min-height: 190px;
    padding: 24px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.lwt-visual-lanes a:hover,
.supporter-paths a:hover,
.glossary-grid a:hover,
.supporter-grid article:hover {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.lwt-visual-lanes span,
.supporter-paths span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lwt-visual-lanes strong {
    font-size: 22px;
    line-height: 1.2;
}

.supporter-paths {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 48px;
}

.supporter-paths a {
    display: grid;
    align-content: space-between;
    min-height: 160px;
    padding: 24px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.supporter-paths strong {
    display: block;
    margin-top: 42px;
    font-size: 21px;
    line-height: 1.18;
}

.lwt-split-band {
    display: grid;
    grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
    gap: 48px;
    align-items: start;
    margin: 0 0 62px;
    padding: 44px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.lwt-split-band h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(34px, 3.6vw, 56px);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1;
    text-wrap: balance;
}

.lwt-split-band div:last-child p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.62;
}

.lwt-quote-panel {
    width: min(860px, 100%);
    margin: 0 auto;
    padding: 42px;
    text-align: center;
}

.lwt-quote-panel blockquote {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.lwt-quote-panel cite {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
}

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

.lwt-contact-panel {
    padding: 28px;
}

.lwt-contact-panel.positive {
    background: linear-gradient(135deg, rgba(34, 174, 228, 0.08), rgba(128, 189, 63, 0.08));
}

.lwt-contact-panel ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.lwt-contact-panel li {
    padding: 13px 0;
    border-top: 1px solid var(--hairline);
    font-size: 20px;
    font-weight: 650;
    line-height: 1.25;
}

.lwt-contact-actions a {
    display: grid;
    align-content: center;
    min-height: 130px;
    border-radius: 24px;
    padding: 24px;
}

.lwt-contact-actions strong {
    display: block;
    margin-top: 6px;
    font-size: 22px;
    line-height: 1.2;
}

.supporter-grid article {
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.supporter-grid img {
    aspect-ratio: 1 / 1;
    filter: saturate(0.92);
}

.supporter-grid span,
.supporter-grid strong {
    display: block;
    padding: 0 18px;
}

.supporter-grid span {
    margin-top: 16px;
}

.supporter-grid strong {
    padding-bottom: 20px;
    font-size: 20px;
}

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

.glossary-grid a {
    overflow: hidden;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.glossary-grid img {
    aspect-ratio: 16 / 6;
}

.glossary-grid span,
.glossary-grid strong,
.glossary-grid p {
    display: block;
    margin-left: 22px;
    margin-right: 22px;
}

.glossary-grid span {
    margin-top: 20px;
}

.glossary-grid strong {
    margin-top: 6px;
    font-size: 28px;
}

.glossary-grid p {
    margin-top: 8px;
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.terms-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.terms-layout nav {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 8px;
}

.terms-layout nav a {
    padding: 10px 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.terms-copy {
    width: min(780px, 100%);
}

.terms-copy h2 {
    margin: 0 0 12px;
    font-family: var(--display);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 650;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.terms-copy p {
    margin: 0 0 42px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.66;
}

.featured-kicker a:hover,
.featured-link:hover {
    color: var(--ink);
}

.socials-page,
.shows-page,
.gear-page {
    width: min(1120px, calc(100% - 48px));
    margin: 16px auto 96px;
}

.socials-hero,
.shows-hero,
.gear-hero {
    width: min(760px, 100%);
    margin: 0 auto 46px;
    text-align: center;
}

.socials-hero p,
.shows-hero p,
.gear-hero p {
    margin: 0 0 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.socials-hero h1,
.shows-hero h1,
.gear-hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.socials-hero span,
.shows-hero span,
.gear-hero span {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.55;
}

.gear-hero {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 44px;
    align-items: end;
    width: min(1040px, 100%);
    text-align: left;
}

.gear-hero span {
    margin-top: 0;
    padding-bottom: 8px;
}

.gear-feature {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 1px;
    overflow: hidden;
    margin-bottom: 48px;
    border: 1px solid var(--rule);
    border-radius: 7px;
    background: var(--rule);
}

.gear-feature-card {
    display: grid;
    align-content: end;
    min-height: 292px;
    padding: 32px;
    background: var(--ink);
    color: var(--paper);
    transition: background 180ms ease, transform 180ms ease;
}

.gear-feature-card.quiet {
    background: #fbfbfb;
    color: var(--ink);
}

.gear-feature-card:hover,
.gear-card:hover {
    transform: translateY(-2px);
}

.gear-feature-card span,
.gear-card span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.gear-feature-card strong {
    display: block;
    max-width: 520px;
    margin-top: 10px;
    font-family: var(--serif);
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 560;
    line-height: 1.01;
    letter-spacing: -0.02em;
}

.gear-feature-card em,
.gear-card em {
    display: block;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-style: normal;
    line-height: 1.5;
}

.gear-feature-card.quiet em,
.gear-card em {
    color: var(--muted);
}

.gear-section {
    margin-top: 48px;
}

.gear-section-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 18px;
}

.gear-section-heading h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

.gear-section-heading a {
    color: #0b7ca8;
    font-size: 13px;
    font-weight: 750;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: 7px;
    background: var(--rule);
}

.gear-card {
    display: grid;
    align-content: space-between;
    min-height: 180px;
    padding: 24px;
    background: var(--paper);
    transition: background 180ms ease, transform 180ms ease;
}

.gear-card:hover {
    background: #fbfbfb;
}

.gear-card strong {
    display: block;
    margin-top: 30px;
    font-size: 19px;
    font-weight: 650;
    line-height: 1.24;
}

.gear-card em {
    margin-top: 10px;
    font-size: 14px;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: 7px;
    background: var(--rule);
}

.show-card {
    display: grid;
    align-content: space-between;
    min-height: 190px;
    padding: 26px;
    background: var(--paper);
    transition: background 180ms ease, transform 180ms ease;
}

.show-card:hover {
    background: #fbfbfb;
    transform: translateY(-2px);
}

.show-card span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.show-card strong {
    display: block;
    margin-top: 54px;
    max-width: 320px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.show-card.quiet span {
    color: var(--muted);
}

.show-card.quiet {
    grid-column: 1 / -1;
    min-height: 132px;
}

.show-card.quiet strong {
    margin-top: 28px;
}

.socials-feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.95fr 0.95fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: 7px;
    background: var(--rule);
}

.social-feature {
    position: relative;
    display: grid;
    align-content: end;
    min-height: 270px;
    padding: 28px;
    background: #fbfbfb;
    transition: background 180ms ease, transform 180ms ease;
}

.social-feature:hover {
    transform: translateY(-3px);
}

.social-icon {
    position: absolute;
    top: 28px;
    left: 28px;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--rule);
    border-radius: 999px;
}

.social-feature.primary .social-icon {
    border-color: rgba(255, 255, 255, 0.22);
}

.social-icon::before {
    content: "";
    display: block;
}

.social-icon-youtube::before {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid currentColor;
}

.social-icon-instagram::before {
    width: 24px;
    height: 24px;
    border: 3px solid currentColor;
    border-radius: 8px;
    box-shadow: 12px -10px 0 -10px currentColor;
}

.social-icon-threads::before {
    content: "@";
    color: currentColor;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 600;
    line-height: 1;
}

.social-feature.primary {
    background: var(--ink);
    color: var(--paper);
}

.social-feature span,
.socials-directory span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.social-feature strong {
    display: block;
    margin-top: 8px;
    font-family: var(--serif);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 500;
    line-height: 1.02;
}

.social-feature em {
    display: block;
    max-width: 360px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
    font-style: normal;
    line-height: 1.5;
}

.social-feature.primary em {
    color: rgba(255, 255, 255, 0.72);
}

.socials-directory {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 32px;
    overflow: hidden;
    border: 1px solid var(--rule);
    border-radius: 7px;
    background: var(--rule);
}

.socials-directory a {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 4px 14px;
    min-height: 104px;
    padding: 22px;
    background: var(--paper);
    transition: background 180ms ease, transform 180ms ease;
}

.socials-directory a:hover {
    background: #fbfbfb;
    transform: translateY(-2px);
}

.social-mini-icon {
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.socials-directory strong {
    font-size: 17px;
    line-height: 1.25;
}

.gh-content h2 {
    margin: 48px auto 14px;
    font-family: var(--serif);
    font-size: clamp(30px, 2.6vw, 44px);
    font-weight: 500;
    line-height: 1.1;
}

.article.tag-archive .gh-content h2,
.article.tag-archive .gh-content h3,
.article.tag-archive .gh-content h4 {
    width: min(760px, 100%);
    margin: 46px auto 14px;
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.12;
}

.article.tag-archive .gh-content h2 {
    font-size: clamp(28px, 2.6vw, 42px);
}

.article.tag-archive .gh-content h3 {
    font-size: clamp(24px, 2.1vw, 34px);
}

.gh-content ul {
    padding-left: 1.2em;
    margin-top: -10px;
    margin-bottom: 34px;
}

.gh-content li {
    margin-bottom: 10px;
}

@media (prefers-reduced-motion: reduce) {
    .js-enabled .post-card,
    .social-feature,
    .socials-directory a,
    .nav-dropdown,
    .lwt-action-row a,
    .lwt-contact-actions a,
    .lwt-visual-lanes a,
    .supporter-paths a,
    .glossary-grid a,
    .supporter-grid article {
        transition: none;
    }

    .js-enabled .post-card {
        opacity: 1;
        transform: none;
    }

    .post-card:hover,
    .post-card:focus-within {
        transform: none;
    }

    .nav-dropdown a,
    .nav-social-icon,
    .site-search-link,
    .post-card-media,
    .post-card-media img,
    .post-card-title a {
        transition: none;
    }

    .post-card:hover .post-card-media,
    .post-card:focus-within .post-card-media {
        box-shadow: none;
    }

    .post-card:hover .post-card-media img,
    .post-card:focus-within .post-card-media img {
        filter: none;
        transform: none;
    }

    .infinite-scroll-sentinel.is-loading::after {
        animation: none;
    }
}

@media (max-width: 980px) {
    .featured-story {
        grid-template-columns: 1fr 1fr;
    }

    .featured-kicker {
        grid-column: 1 / -1;
        text-align: center;
    }

    .featured-kicker span {
        margin-left: auto;
        margin-right: auto;
    }

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

    .socials-feature-grid,
    .shows-grid,
    .gear-grid,
    .gear-feature,
    .gear-hero,
    .lwt-page-hero,
    .lwt-split-band {
        grid-template-columns: 1fr;
    }

    .lwt-page-hero {
        gap: 34px;
    }

    .lwt-visual-lanes,
    .lwt-contact-actions,
    .supporter-paths,
    .supporter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lwt-contact-board,
    .glossary-grid,
    .terms-layout {
        grid-template-columns: 1fr;
    }

    .terms-layout nav {
        position: static;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0 18px;
        padding-bottom: 18px;
        border-bottom: 1px solid var(--rule);
    }

    .social-feature {
        min-height: 220px;
    }

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

    .post-card-title {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 26px 18px 24px;
    }

    .site-brand-tagline {
        font-size: 27px;
    }

    .site-brand-community {
        font-size: 12px;
    }

    .site-nav ul {
        gap: 18px;
        flex-wrap: wrap;
    }

    .site-nav {
        gap: 18px;
    }

    .nav-dropdown {
        display: none;
        right: auto;
        left: 0;
        max-width: calc(100vw - 32px);
        transform: translate(0, -6px) scale(0.98);
    }

    .nav-dropdown-shows,
    .nav-dropdown-socials,
    .nav-dropdown-apps,
    .nav-dropdown-gear,
    .nav-dropdown-connect {
        grid-template-columns: 1fr;
        min-width: 230px;
    }

    .nav-menu:hover .nav-dropdown,
    .nav-menu:focus-within .nav-dropdown {
        display: grid;
        transform: translate(0, 0) scale(1);
    }

    .nav-menu-socials .nav-dropdown {
        right: 0;
        left: auto;
    }

    .featured-story {
        grid-template-columns: 1fr;
        width: min(420px, calc(100% - 32px));
        gap: 22px;
        margin-top: 4px;
        margin-bottom: 32px;
        padding-bottom: 28px;
    }

    .featured-kicker {
        text-align: left;
    }

    .featured-kicker span {
        width: 44px;
        margin: 0 0 18px;
    }

    .featured-kicker h1 {
        font-size: 32px;
    }

    .featured-copy h2 {
        font-size: 31px;
    }

    .latest-section {
        width: min(420px, calc(100% - 32px));
        margin-bottom: 64px;
    }

    .socials-page,
    .shows-page,
    .gear-page,
    .lwt-page {
        width: min(420px, calc(100% - 32px));
        margin-bottom: 72px;
    }

    .socials-hero,
    .shows-hero,
    .gear-hero,
    .lwt-page-hero,
    .lwt-page-hero.compact {
        margin-bottom: 32px;
        text-align: left;
    }

    .gear-feature-card {
        min-height: 230px;
        padding: 26px;
    }

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

    .lwt-hero-copy h1 {
        font-size: 40px;
        line-height: 1.03;
    }

    .lwt-hero-copy > span {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.55;
    }

    .lwt-action-row {
        gap: 10px;
        margin-top: 22px;
    }

    .lwt-action-row a,
    .lwt-contact-actions a {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }

    .lwt-about-collage {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        align-items: stretch;
    }

    .lwt-about-collage img,
    .lwt-feature-image img {
        border-radius: 18px;
    }

    .lwt-about-collage .primary {
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }

    .lwt-visual-lanes,
    .lwt-contact-board,
    .lwt-contact-actions,
    .supporter-paths,
    .supporter-grid,
    .glossary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 42px;
    }

    .lwt-visual-lanes a {
        min-height: 132px;
        padding: 20px;
    }

    .supporter-paths strong {
        margin-top: 26px;
        font-size: 20px;
    }

    .supporter-paths a {
        min-height: 132px;
        padding: 20px;
    }

    .lwt-split-band {
        gap: 22px;
        margin-bottom: 42px;
        padding: 34px 0;
    }

    .lwt-split-band h2 {
        font-size: 34px;
    }

    .lwt-split-band div:last-child p,
    .terms-copy p {
        font-size: 16px;
        line-height: 1.6;
    }

    .lwt-quote-panel {
        padding: 28px 20px;
    }

    .lwt-contact-panel {
        padding: 22px;
    }

    .lwt-contact-panel li {
        font-size: 17px;
    }

    .lwt-contact-actions a {
        min-height: 104px;
        padding: 20px;
    }

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

    .supporter-grid strong {
        font-size: 17px;
    }

    .glossary-grid img {
        aspect-ratio: 16 / 8;
    }

    .glossary-grid strong {
        font-size: 24px;
    }

    .terms-layout nav {
        grid-template-columns: 1fr 1fr;
        gap: 0 14px;
    }

    .socials-hero h1,
    .shows-hero h1 {
        font-size: 40px;
    }

    .socials-directory {
        grid-template-columns: 1fr;
    }

    .socials-directory a {
        grid-template-columns: 42px 1fr;
    }

    .post-grid,
    .latest-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .post-card-title {
        font-size: 25px;
    }

    .article {
        width: calc(100% - 32px);
    }

    .article-header {
        margin-bottom: 28px;
    }

    .article-title {
        font-size: 38px;
    }

    .gh-content {
        font-size: 20px;
        line-height: 1.75;
    }

    .article.tag-archive {
        width: calc(100% - 32px);
    }

    .article.tag-archive .gh-content {
        font-size: 16px;
        line-height: 1.68;
    }

    .post-template .gh-content > p:first-of-type {
        margin-bottom: 38px;
        font-size: 22px;
        line-height: 1.55;
    }

    .post-template .article.tag-archive .gh-content > p:first-of-type {
        font-size: 19px;
        line-height: 1.58;
    }

    .youtube-subscribe-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-top: -16px;
        margin-bottom: 38px;
        padding: 16px;
    }

    .video-notes,
    .video-resources {
        margin-bottom: 34px;
    }

    .video-notes h2,
    .video-resources h2 {
        font-size: 30px;
    }

    .video-notes-grid,
    .video-resource-grid {
        grid-template-columns: 1fr;
    }

    .video-notes-grid > div,
    .video-resource-grid > div {
        padding: 20px;
    }

    .video-resource-list a {
        grid-template-columns: 1fr 18px;
        gap: 8px 14px;
        padding: 16px;
    }

    .video-resource-list span,
    .video-resource-list strong,
    .video-resource-list em {
        grid-column: 1;
    }

    .video-resource-list svg {
        grid-column: 2;
        grid-row: 1 / span 3;
        align-self: center;
    }

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

    .archive-figure-grid figure {
        min-height: 112px;
        padding: 10px;
    }

    .archive-figure-grid figure img {
        max-height: 160px;
    }

    .article-tags {
        margin: 54px auto 80px;
        font-size: 16px;
    }

    .article-next {
        justify-content: flex-start;
    }

    .article-next a {
        text-align: left;
        font-size: 28px;
    }

    .latest-strip-inner {
        width: min(420px, calc(100% - 32px));
    }
}
