/*
Theme Name: Trisha Gee
Template: generatepress
Version: 1.0
*/

/* ── VARIABLES ── */
:root {
    --slate:         #1E2530;
    --slate-mid:     #2E3A48;
    --steel:         #3D5260;
    --copper:        #B5622A;
    --copper-light:  #D4845A;
    --teal:          #6B9E8F;
    --warm-white:    #F9F7F4;
    --parchment:     #EDE8E0;
    --ink:           #1E2530;
    --ink-mid:       #3A4452;
    --ink-light:     #6B7280;
}

/* ── BASE ── */
body {
    background: var(--warm-white);
    color: var(--ink);
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.site-header,
.site-header .main-navigation,
.site-header .navigation-branding {
    background-color: var(--slate) !important;
}

.site-header .inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 56px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.site-title a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--warm-white) !important;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.site-description {
    display: none;
}

.main-navigation a {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-white) !important;
    opacity: 0.65;
    text-decoration: none;
    transition: opacity 0.2s;
    padding: 0 !important;
    margin-left: 36px;
}

.main-navigation a:hover {
    opacity: 1;
    background: none !important;
}

.main-navigation .current-menu-item > a {
    opacity: 1;
    color: var(--copper-light) !important;
}

/* ── HEADER POSITIONING ── */
.site-header {
    position: relative;
    width: 100%;
}

.home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.home .site-main {
    padding-top: 0;
}

/* ── REMOVE GP CONTAINER ON HOMEPAGE ── */
.home .site-main,
.home .content-area,
.home .site-content {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── HERO ── */
.hero {
    background-color: var(--slate);
    background-image:
            radial-gradient(ellipse at 68% 48%, rgba(61,82,96,0.55) 0%, transparent 60%),
            radial-gradient(ellipse at 15% 85%, rgba(107,158,143,0.1) 0%, transparent 50%);
    min-height: 94vh;
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    width: 100%;
}

.hero-text {
    padding: 140px 56px 100px 96px;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 28px;
    font-weight: 300;
}

.hero-badge {
    background: rgba(181,98,42,0.15);
    border: 1px solid rgba(181,98,42,0.35);
    color: var(--copper-light);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(40px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--warm-white);
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}

.hero-title em {
    font-style: italic;
    color: var(--copper-light);
    font-weight: 400;
}

.hero-sub {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(249,247,244,0.6);
    max-width: 420px;
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 28px;
    align-items: center;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--slate);
    background: var(--copper-light);
    padding: 12px 24px;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 2px;
}

.hero-cta-primary:hover {
    background: var(--copper);
    color: var(--warm-white);
}

.hero-cta-secondary {
    font-size: 12px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(249,247,244,0.55);
    text-decoration: none;
    border-bottom: 1px solid rgba(249,247,244,0.2);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.hero-cta-secondary:hover {
    color: var(--warm-white);
    border-color: rgba(249,247,244,0.5);
}

.hero-image {
    height: 94vh;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(181,98,42,0.15);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.hero-image-placeholder {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(to right, var(--slate) 0%, rgba(30,37,48,0.15) 35%, transparent 60%),
            linear-gradient(170deg, #2a3540 0%, #1a2535 35%, #0e1822 65%, #1a1d10 100%);
}

/* ── CREDENTIALS BAR ── */
.credentials-bar {
    background: var(--slate-mid);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    width: 100%;
}

.credentials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
    flex-shrink: 0;
}

.credential-item:last-child {
    border-right: none;
}

.credential-icon {
    color: var(--copper);
    font-size: 14px;
    opacity: 0.8;
}

.credential-text {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(249,247,244,0.55);
    white-space: nowrap;
}

.credential-text strong {
    color: rgba(249,247,244,0.85);
    font-weight: 400;
}

/* ── SHARED SECTION STYLES ── */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

.section-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--parchment);
}

.section-header-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
}

.section-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--copper);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ── INTRO ── */
.intro-section {
    background: var(--parchment);
    padding: 72px 0;
    border-bottom: 1px solid rgba(30,37,48,0.07);
}

.intro-section .section-inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 72px;
    align-items: start;
}

.intro-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}

.intro-role {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 300;
    line-height: 1.6;
}

.intro-text {
    font-size: 20px;
    line-height: 1.78;
    color: var(--ink);
    font-weight: 300;
}

.intro-text strong {
    font-weight: 600;
}

/* ── RECENT POSTS ── */
.recent-posts {
    padding: 96px 0;
    background: var(--warm-white);
}

.posts-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
}

.post-card {
    background: var(--warm-white);
    padding: 36px;
    border: 1px solid var(--parchment);
    transition: border-color 0.2s, background 0.2s;
}

.post-card:hover {
    border-color: rgba(181,98,42,0.25);
    background: #fdfcf9;
}

.post-card.featured {
    padding: 44px;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 440px;
    background: var(--slate);
    border-color: transparent;
    position: relative;
    overflow: hidden;
}

.post-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.post-card.featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,37,48,0.96) 45%, rgba(30,37,48,0.2) 100%);
    z-index: 1;
}

.post-card.featured > * {
    position: relative;
    z-index: 2;
}

.post-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 12px;
}

.post-card.featured .post-tag {
    color: var(--copper-light);
}

.post-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 10px;
}

.post-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.post-title a:hover {
    color: var(--copper);
}

.post-card.featured .post-title {
    font-size: 26px;
    color: var(--warm-white);
    margin-bottom: 14px;
}

.post-card.featured .post-title a:hover {
    color: var(--copper-light);
}

.post-excerpt {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-light);
    margin-bottom: 18px;
    font-weight: 300;
}

.post-card.featured .post-excerpt {
    color: rgba(249,247,244,0.6);
    font-size: 16px;
}

.post-meta {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-light);
}

.post-card.featured .post-meta {
    color: rgba(249,247,244,0.38);
}

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

/* ── FOOTER ── */
.site-footer {
    background: var(--slate) !important;
    padding: 0 !important;
    color: rgba(249,247,244,0.5);
}

.site-footer .inside-footer {
    max-width: 100%;
    padding: 0 !important;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 56px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid rgba(249,247,244,0.07);
}

.footer-brand {
    flex-shrink: 0;
    line-height: 0;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-nav a {
    font-size: 13px;
    color: rgba(249,247,244,0.5);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: var(--warm-white);
}

.footer-social {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.footer-social .social-link {
    width: 32px;
    height: 32px;
    font-size: 15px;
}

.footer-base {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-size: 12px;
    color: rgba(249,247,244,0.25);
    letter-spacing: 0.04em;
}

.site-content {
    display: block !important;
}

/* ── POST HERO ── */
.post-hero {
    background-color: var(--slate);
    background-image:
            radial-gradient(ellipse at 80% 50%, rgba(61,82,96,0.45) 0%, transparent 65%),
            radial-gradient(ellipse at 10% 80%, rgba(107,158,143,0.08) 0%, transparent 50%);
    padding: 120px 0 72px;
    position: relative;
}

.post-hero::after {
    content: '';
    position: absolute;
    left: 56px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--copper) 25%, var(--copper) 75%, transparent);
    opacity: 0.3;
}

.post-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 56px;
}

.post-hero-category {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper-light);
    text-decoration: none;
    margin-bottom: 24px;
    font-weight: 300;
    transition: color 0.2s;
}

.post-hero-category:hover {
    color: var(--warm-white);
}

.post-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--warm-white);
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}

.post-hero-details {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(249,247,244,0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-hero-divider {
    color: var(--copper);
    opacity: 0.5;
}

/* ── FEATURED IMAGE ── */
.post-featured-image {
    background: var(--parchment);
    padding: 0;
    border-bottom: 1px solid rgba(30,37,48,0.08);
}

.post-featured-image-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 56px;
    transform: translateY(-32px);
}

.post-featured-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 8px 40px rgba(30,37,48,0.18);
}

/* ── POST CONTENT ── */
.post-content-wrap {
    background: var(--warm-white);
    padding: 16px 0 96px;
}

.post-content-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 56px;
}

.post-content {
    font-size: 19px;
    line-height: 1.85;
    color: var(--ink);
    font-weight: 300;
}

.post-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin: 56px 0 20px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.post-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: 40px 0 16px;
    line-height: 1.3;
}

.post-content p {
    margin-bottom: 28px;
}

.post-content a {
    color: var(--copper);
    text-decoration: underline;
    text-decoration-color: rgba(181,98,42,0.35);
    text-underline-offset: 3px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.post-content a:hover {
    color: var(--ink);
    text-decoration-color: rgba(30,37,48,0.35);
}

.post-content strong {
    font-weight: 600;
    color: var(--ink);
}

.post-content em {
    font-style: italic;
}

.post-content ul,
.post-content ol {
    margin: 0 0 28px 24px;
    padding: 0;
}

.post-content li {
    margin-bottom: 8px;
    line-height: 1.75;
}

.post-content blockquote {
    border-left: 2px solid var(--copper);
    margin: 40px 0;
    padding: 4px 0 4px 32px;
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.55;
    color: var(--ink-mid);
}

.post-content code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 15px;
    background: var(--parchment);
    color: var(--ink);
    padding: 2px 7px;
    border-radius: 3px;
}

.post-content pre {
    background: var(--slate);
    border-radius: 4px;
    padding: 28px 32px;
    overflow-x: auto;
    margin: 32px 0;
}

.post-content pre code {
    background: none;
    color: var(--warm-white);
    padding: 0;
    font-size: 14px;
    line-height: 1.7;
}

.post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
}

.post-content figure {
    margin: 40px 0;
}

.post-content figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--ink-light);
    margin-top: 10px;
    font-style: italic;
}

/* ── POST TAGS ── */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid var(--parchment);
}

.post-tag-link {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-decoration: none;
    background: var(--parchment);
    padding: 5px 14px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}

.post-tag-link:hover {
    background: var(--copper);
    color: var(--warm-white);
}

/* ── POST NAVIGATION ── */
.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
}

.post-nav-prev,
.post-nav-next {
    background: var(--parchment);
    padding: 28px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.2s;
}

.post-nav-prev:hover,
.post-nav-next:hover {
    background: var(--parchment);
}

.post-nav-next {
    text-align: right;
}

.post-nav-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--copper);
    font-weight: 300;
}

.post-nav-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.2s;
}

.post-nav-title:hover {
    color: var(--copper);
}

.page .site-header,
.single .site-header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.page .post-hero,
.single .post-hero {
    margin-top: 0 !important;
}

.featured-image.page-header-image {
    display: none !important;
}

/* ── BLOG LAYOUT ── */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 56px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 56px;
    align-items: start;
}

.blog-content {
    min-width: 0;
}

/* ── BLOG FEATURED POST ── */
.blog-featured-post {
    position: relative;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 2px;
    overflow: hidden;
    border-radius: 2px;
}

.blog-featured-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.blog-featured-image--no-image {
    background: var(--slate);
    background-image: radial-gradient(ellipse at 70% 50%, rgba(61,82,96,0.55) 0%, transparent 60%);
}

.blog-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,37,48,0.96) 40%, rgba(30,37,48,0.2) 100%);
}

.blog-featured-content {
    position: relative;
    z-index: 2;
    padding: 44px;
}

.blog-featured-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--warm-white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.blog-featured-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-featured-title a:hover {
    color: var(--copper-light);
}

.blog-featured-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(249,247,244,0.6);
    margin-bottom: 16px;
    font-weight: 300;
    max-width: 560px;
}

/* ── BLOG GRID ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 2px;
}

.blog-card {
    background: var(--warm-white);
    border: 1px solid var(--parchment);
    transition: border-color 0.2s;
    overflow: hidden;
}

.blog-card:hover {
    border-color: rgba(181,98,42,0.25);
}

.blog-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--ink);
    margin: 8px 0 10px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--copper);
}

/* ── PAGINATION ── */
.blog-pagination {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--parchment);
}

.blog-pagination .page-numbers {
    display: inline-flex;
    list-style: none;
    gap: 4px;
    padding: 0;
    margin: 0;
}

.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    font-size: 13px;
    color: var(--ink-light);
    text-decoration: none;
    border: 1px solid var(--parchment);
    transition: all 0.2s;
}

.blog-pagination .page-numbers li a:hover {
    border-color: var(--copper);
    color: var(--copper);
}

.blog-pagination .page-numbers li .current {
    background: var(--copper);
    border-color: var(--copper);
    color: var(--warm-white);
}

/* ── SIDEBAR ── */
.blog-sidebar {
    position: sticky;
    top: 24px;
}

.blog-sidebar .widget {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--parchment);
}

.blog-sidebar .widget:last-child {
    border-bottom: none;
}

.blog-sidebar .widget-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--parchment);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar ul li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(30,37,48,0.06);
    font-size: 14px;
}

.blog-sidebar ul li a {
    color: var(--ink-mid);
    text-decoration: none;
    transition: color 0.2s;
}

.blog-sidebar ul li a:hover {
    color: var(--copper);
}

/* ── GLOBAL CONTAINER FIX ── */
#page.grid-container {
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#site-main {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.site-content {
    display: block !important;
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── BOOKS PAGE ── */
.books-section {
    background: var(--warm-white);
    padding: 80px 0;
}

.books-featured-section {
    background: var(--parchment);
    padding: 80px 0;
    border-top: 1px solid rgba(30,37,48,0.07);
}

.books-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

/* ── MY BOOKS LIST ── */
.book-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.book-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 56px;
    align-items: start;
    background: var(--warm-white);
    border: 1px solid var(--parchment);
    padding: 48px;
    transition: border-color 0.2s;
}

.book-item:hover {
    border-color: rgba(181,98,42,0.25);
}

.book-item-cover {
    position: relative;
}

.book-item-cover img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 4px 4px 20px rgba(30,37,48,0.15);
}

.book-item-category {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 12px;
    font-weight: 300;
}

.book-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.book-item-authors {
    font-size: 14px;
    color: var(--ink-light);
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 300;
}

.book-item-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-mid);
    margin-bottom: 28px;
    font-weight: 300;
}

.book-item-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.book-link-primary {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--copper);
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
}

.book-link-primary:hover {
    background: var(--slate);
}

.book-link-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper);
    text-decoration: none;
    border-bottom: 1px solid rgba(181,98,42,0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.book-link-secondary:hover {
    color: var(--ink);
    border-color: rgba(30,37,48,0.3);
}

/* ── FEATURED BOOKS GRID ── */
.featured-books-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.featured-book {
    background: var(--warm-white);
    border: 1px solid transparent;
    transition: border-color 0.2s;
    overflow: hidden;
}

.featured-book:hover {
    border-color: rgba(181,98,42,0.25);
}

.featured-book-cover {
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

.featured-book-cover--placeholder {
    background: var(--slate);
    background-image: radial-gradient(ellipse at 60% 40%, rgba(61,82,96,0.5) 0%, transparent 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
}

.featured-book-cover--placeholder::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 5px;
    background: var(--copper);
    opacity: 0.6;
}

.featured-book-cover--placeholder span {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(249,247,244,0.4);
    text-align: center;
    line-height: 1.4;
}

.featured-book-content {
    padding: 24px;
}

.featured-book-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.featured-book-author {
    font-size: 13px;
    color: var(--ink-light);
    margin-bottom: 6px;
    font-weight: 300;
    font-style: italic;
}

.featured-book-role {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 16px;
    font-weight: 300;
}

/* ── COURSES PAGE ── */
.courses-featured-section {
    background: var(--slate);
    padding: 80px 0;
}

.featured-training-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.featured-training-card-inner {
    background: var(--slate-mid);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 360px;
}

.featured-training-card-text {
    padding: 56px 64px;
}

.featured-training-card-text::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--copper);
}

.featured-training-card-image {
    position: relative;
    overflow: hidden;
}

.featured-training-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
}

.featured-training-tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 16px;
    font-weight: 400;
}

.featured-training-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--warm-white);
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.featured-training-instructor {
    font-size: 14px;
    color: rgba(249,247,244,0.5);
    margin-bottom: 20px;
    font-style: italic;
}

.featured-training-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(249,247,244,0.7);
    margin-bottom: 32px;
    max-width: 680px;
}


.courses-section {
    background: var(--warm-white);
    padding: 80px 0;
}

.courses-livelessons-section {
    background: var(--parchment);
    padding: 80px 0;
}

.courses-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.courses-section-inner .section-subtitle {
    font-size: 16px;
    color: var(--ink-mid);
    margin-top: 8px;
    line-height: 1.6;
}

.course-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.course-item {
    padding: 36px 40px;
    background: var(--warm-white);
    border: 1px solid transparent;
    border-left: 3px solid var(--copper);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.courses-livelessons-section .course-item {
    background: var(--warm-white);
}

.course-item:hover {
    border-color: rgba(181,98,42,0.25);
    border-left-color: var(--copper);
    box-shadow: 0 2px 16px rgba(30,37,48,0.06);
}

.course-item-category {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 10px;
    font-weight: 400;
}

.course-item-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.course-item-instructor {
    font-size: 14px;
    color: var(--ink-light);
    margin-bottom: 16px;
    font-weight: 300;
    font-style: italic;
}

.course-item-desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-mid);
    margin-bottom: 24px;
    max-width: 760px;
}

.course-item-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.course-link-primary {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--warm-white);
    background: var(--copper);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
}

.course-link-primary:hover {
    background: var(--slate);
}

.course-link-secondary {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink-mid);
    text-decoration: none;
    border-bottom: 1px solid rgba(30,37,48,0.15);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.course-link-secondary:hover {
    color: var(--ink);
    border-color: rgba(30,37,48,0.3);
}

/* ── POST HERO SUBTITLE ── */
.post-hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(249,247,244,0.55);
    font-weight: 300;
    margin-top: 16px;
    max-width: 560px;
}

/* ── TALK PAGE ── */
.talk-video {
    margin: 40px 0 24px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--slate);
}

.talk-video iframe,
.talk-video video {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.talk-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--parchment);
}

.talk-link-btn {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--copper);
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
}

.talk-link-btn:hover {
    background: var(--slate);
}

.talk-link-btn--secondary {
    background: transparent;
    color: var(--copper);
    border: 1px solid rgba(181,98,42,0.4);
}

.talk-link-btn--secondary:hover {
    background: transparent;
    color: var(--ink);
    border-color: rgba(30,37,48,0.4);
}

/* ── SPEAKING PAGE ── */
.speaking-section {
    background: var(--warm-white);
    padding: 80px 0;
    border-top: 1px solid rgba(30,37,48,0.06);
}

.speaking-section--parchment {
    background: var(--parchment);
}

.speaking-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 56px;
}

.speaking-section-intro {
    font-size: 16px;
    color: var(--ink-light);
    font-weight: 300;
    margin-bottom: 32px;
    margin-top: -24px;
    max-width: 640px;
    line-height: 1.7;
}

/* ── SPEAKING TAGS ── */
.speaking-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 12px;
    font-weight: 300;
}

.speaking-tag--teal {
    color: var(--teal);
}

.speaking-tag--muted {
    color: var(--ink-light);
}

/* ── KEYNOTE CARDS ── */
.speaking-keynotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.keynote-card {
    background: var(--slate);
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
}

.keynote-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--copper);
    opacity: 0.6;
}

.keynote-card:hover {
    background: var(--slate-mid);
}

.keynote-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--warm-white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.keynote-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.keynote-title a:hover {
    color: var(--copper-light);
}

.keynote-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(249,247,244,0.6);
    margin-bottom: 24px;
    font-weight: 300;
}

.speaking-details-link {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--copper-light);
    text-decoration: none;
    transition: color 0.2s;
}

.speaking-details-link:hover {
    color: var(--warm-white);
}

/* ── CURRENT TALKS ── */
.speaking-talks {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.talk-row-card {
    background: var(--warm-white);
    border: 1px solid rgba(30,37,48,0.08);
    padding: 36px;
    transition: border-color 0.2s;
}

.talk-row-card:hover {
    border-color: rgba(181,98,42,0.25);
}

.talk-row-card-header {
    margin-bottom: 12px;
}

.talk-row-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0;
}

.talk-row-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.talk-row-card-title a:hover {
    color: var(--copper);
}

.talk-row-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-light);
    margin-bottom: 16px;
    font-weight: 300;
    max-width: 720px;
}

/* ── EVERGREEN TALKS ── */
.speaking-evergreen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.evergreen-item {
    background: var(--warm-white);
    border: 1px solid var(--parchment);
    padding: 28px 32px;
    transition: border-color 0.2s;
}

.evergreen-item:hover {
    border-color: rgba(181,98,42,0.2);
}

.evergreen-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin: 0;
}

.evergreen-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.evergreen-title a:hover {
    color: var(--copper);
}

/* ── SPEAKER BIO ── */
.speaking-bio {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 64px;
    align-items: start;
}

.speaking-bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-mid);
    font-weight: 300;
}

.speaking-bio-text p {
    margin-bottom: 20px;
}

.speaking-bio-text em {
    font-style: italic;
}

.speaking-bio-downloads {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 28px;
    flex-wrap: wrap;
}

.speaking-bio-photo img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 4px 4px 20px rgba(30,37,48,0.15);
}

/* ── SPEAKING CONTACT ── */
.speaking-contact {
    background: var(--slate);
    padding: 80px 0;
}

.speaking-contact-inner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.speaking-contact-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--warm-white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.speaking-contact-desc {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(249,247,244,0.55);
    margin-bottom: 36px;
    font-weight: 300;
}

.evergreen-collab {
    font-size: 12px;
    color: var(--ink-light);
    font-style: italic;
    margin-top: 6px;
    font-weight: 300;
}

/* ── SPEAKING HERO ── */
.speaking-hero {
    background-color: var(--slate);
    background-image:
            radial-gradient(ellipse at 68% 48%, rgba(61,82,96,0.55) 0%, transparent 60%),
            radial-gradient(ellipse at 15% 85%, rgba(107,158,143,0.1) 0%, transparent 50%);
    min-height: 70vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.speaking-hero-text {
    padding: 140px 56px 100px 96px;
    position: relative;
    z-index: 1;
}

.speaking-hero-image {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.speaking-hero-image {
    height: 70vh;
    position: relative;
    overflow: hidden;
}

.speaking-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    filter: grayscale(100%);
}

.speaking-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(181,98,42,0.15);
    mix-blend-mode: multiply;
    pointer-events: none;
}

/* ── TALKS ARCHIVE ── */
.archive-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 56px;
}

/* TOPIC NAV */
.archive-topic-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--parchment);
}

.archive-topic-nav a {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-decoration: none;
    background: var(--parchment);
    padding: 6px 16px;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    border: 1px solid transparent;
}

.archive-topic-nav a:hover {
    background: var(--copper);
    color: var(--warm-white);
}

/* TOPIC SECTIONS */
.archive-topic {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--parchment);
}

.archive-topic:last-child {
    border-bottom: none;
}

.archive-topic-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--copper);
    display: inline-block;
    letter-spacing: -0.01em;
}

/* TALK ROWS */
.archive-talk-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.archive-talk {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(30,37,48,0.06);
    align-items: baseline;
}

.archive-talk:last-child {
    border-bottom: none;
}

.archive-talk-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    grid-column: 1;
    grid-row: 1;
}

.archive-talk-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.archive-talk-title a:hover {
    color: var(--copper);
}

.archive-talk-meta {
    font-size: 13px;
    color: var(--ink-light);
    font-style: italic;
    font-weight: 300;
    grid-column: 1;
    grid-row: 2;
    margin-top: 2px;
}

.archive-talk-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

.archive-link {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s;
}

.archive-link:hover {
    color: var(--copper);
}

/* ── SOCIAL ICONS ── */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    background: rgba(249,247,244,0.08);
    border: 1px solid rgba(249,247,244,0.15);
    color: rgba(249,247,244,0.6);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-size: 18px;
}

.social-link:hover {
    background: rgba(181,98,42,0.2);
    border-color: rgba(181,98,42,0.4);
    color: var(--copper-light);
}

.social-link svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.si {
    font-size: 16px;
    line-height: 1;
}

.credential-item {
    padding-right: 24px;
    margin-right: 24px;
}

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
    .site-header .inside-header {
        padding: 20px 32px;
    }

    .hero-text {
        padding: 120px 40px 80px 48px;
    }

    .speaking-hero-text {
        padding: 100px 40px 80px 48px;
    }

    .section-inner,
    .speaking-section-inner,
    .books-section-inner,
    .courses-section-inner,
    .archive-layout,
    .post-hero-inner,
    .post-content-inner,
    .post-featured-image-inner,
    .credentials-inner,
    .footer-inner,
    .footer-base {
        padding-left: 32px;
        padding-right: 32px;
    }

    .blog-layout {
        padding: 48px 32px;
    }

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

    .post-card.featured {
        grid-column: span 2;
    }

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

    .speaking-keynotes {
        grid-template-columns: 1fr;
    }

    .speaking-bio {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .speaking-bio-photo {
        max-width: 280px;
    }

    .featured-training-card-inner {
        grid-template-columns: 1fr 300px;
    }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {

    /* Header */
    .site-header .inside-header {
        padding: 14px 20px;
    }

    /* Hamburger toggle button */
    .menu-toggle {
        background: transparent !important;
        border: 1px solid rgba(249,247,244,0.25) !important;
        color: var(--warm-white) !important;
        padding: 5px 12px !important;
        border-radius: 2px !important;
        font-size: 12px !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
        background: rgba(249,247,244,0.08) !important;
        border-color: rgba(249,247,244,0.5) !important;
        color: var(--warm-white) !important;
    }

    /* Mobile nav dropdown */
    .main-navigation .main-nav {
        background: var(--slate-mid) !important;
        border-top: 1px solid rgba(249,247,244,0.07) !important;
    }

    /* Reset nav link overrides so GeneratePress mobile menu works */
    .main-navigation a {
        padding: 12px 20px !important;
        margin-left: 0 !important;
        border-bottom: 1px solid rgba(249,247,244,0.06) !important;
        display: block !important;
    }

    /* Homepage hero */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text {
        padding: 120px 20px 48px;
    }

    .hero-image {
        height: 56vw;
        min-height: 240px;
    }

    /* Speaking/About/Courses/Talks hero */
    .speaking-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .speaking-hero-text {
        padding: 120px 20px 48px;
    }

    .speaking-hero-image {
        height: 56vw;
        min-height: 240px;
    }

    /* Credentials bar - wrap to multiple lines */
    .credentials-inner {
        padding: 0 20px;
        row-gap: 12px;
    }

    .credential-item {
        padding-right: 20px;
        margin-right: 20px;
    }

    /* Section padding */
    .section-inner,
    .speaking-section-inner,
    .books-section-inner,
    .courses-section-inner,
    .archive-layout,
    .post-hero-inner,
    .post-content-inner,
    .post-featured-image-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Intro section */
    .intro-section .section-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .intro-text {
        font-size: 17px;
    }

    /* Recent posts - single column */
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-card.featured {
        grid-row: span 1;
        min-height: 300px;
    }

    /* Blog layout - hide sidebar, single column */
    .blog-layout {
        grid-template-columns: 1fr;
        padding: 32px 20px;
    }

    .blog-sidebar {
        display: none;
    }

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

    /* Post content */
    .post-hero {
        padding: 80px 0 40px;
    }

    .post-hero::after {
        display: none;
    }

    .post-content {
        font-size: 17px;
    }

    .post-featured-image-inner {
        transform: translateY(-12px);
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }

    /* Books */
    .book-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
    }

    .book-item-cover {
        max-width: 140px;
    }

    .featured-books-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Courses featured card */
    .featured-training-card {
        padding: 0 20px;
    }

    .featured-training-card-inner {
        grid-template-columns: 1fr;
    }

    .featured-training-card-image {
        height: 220px;
    }

    .featured-training-card-image img {
        position: relative;
        inset: auto;
        width: 100%;
        height: 100%;
    }

    .featured-training-card-text {
        padding: 28px 24px;
    }

    /* Speaking */
    .speaking-keynotes {
        grid-template-columns: 1fr;
    }

    .keynote-card {
        padding: 28px 20px;
    }

    .speaking-evergreen {
        grid-template-columns: 1fr;
    }

    .speaking-bio {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .speaking-bio-photo {
        max-width: 200px;
    }

    /* Talks archive - stack links below title */
    .archive-talk {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .archive-talk-links {
        grid-column: 1;
        grid-row: 3;
        margin-top: 6px;
    }

    /* Footer */
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px 20px 16px;
        gap: 16px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .footer-base {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 12px 20px;
    }
}