/* ============================================
   Marketing Robot — Ghost Blog Theme
   Design system raccord avec marketingrobot.fr
   ============================================ */

/* --- Variables (identiques au site principal) --- */
:root {
    --primary: #262626;
    --secondary: #FF6B6B;
    --secondary-dark: #ff5252;
    --accent: #4ECDC4;
    --accent-dark: #3dbdb5;
    --neutral: #737373;
    --neutral-light: #a3a3a3;
    --light: #FAF9F7;
    --white: #FFFFFF;
    --border: #E8E8E6;
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--light);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    line-height: 1.2;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--secondary-dark);
}

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

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 760px;
}

/* ============================================
   HEADER (copié de marketingrobot.fr)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--primary);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

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

.nav a {
    text-decoration: none;
    color: var(--neutral);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--secondary);
}

.nav a.nav-active {
    color: var(--secondary);
    font-weight: 600;
}

/* Buttons (identiques) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: #1a1a1a;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    margin: 6px 0;
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    padding: 16px 0 24px;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--neutral);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-of-type {
    border-bottom: none;
}

.mobile-nav a.nav-active {
    color: var(--secondary);
}

.mobile-nav .mobile-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav,
    .header-inner > .btn {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* ============================================
   BLOG HERO
   ============================================ */
.blog-hero {
    padding: 140px 0 60px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -2px;
    margin: 16px 0;
    position: relative;
}

.blog-hero h1 .highlight {
    color: var(--secondary);
}

.blog-hero p {
    font-size: 18px;
    color: var(--neutral);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.section-tag {
    display: inline-block;
    width: fit-content;
    background: rgba(78, 205, 196, 0.15);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    position: relative;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
    text-align: left;
}

.author-avatar-lg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.12);
    font-size: 28px;
}

/* ============================================
   FEATURED POST
   ============================================ */
.featured-section {
    padding: 0 0 40px;
    background: var(--white);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.featured-card:hover {
    box-shadow: 0 20px 60px rgba(38, 38, 38, 0.1);
    transform: translateY(-4px);
}

.featured-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--light);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
}

.featured-content h2 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--primary);
}

.featured-content h2 a {
    color: var(--primary);
    text-decoration: none;
}

.featured-content h2 a:hover {
    color: var(--secondary);
}

.featured-content > p {
    font-size: 16px;
    color: var(--neutral);
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-content {
        padding: 28px;
    }
    .featured-content h2 {
        font-size: 22px;
    }
}

/* ============================================
   POST TAG BADGE
   ============================================ */
.post-tag {
    display: inline-block;
    width: fit-content;
    background: rgba(78, 205, 196, 0.15);
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-decoration: none;
    align-self: flex-start;
}

.post-tag:hover {
    background: rgba(78, 205, 196, 0.25);
    color: var(--accent-dark);
}

.tag-pill {
    display: inline-block;
    background: var(--white);
    color: var(--neutral);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s;
    margin: 4px;
}

.tag-pill:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* ============================================
   POST META
   ============================================ */
.post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-light);
    font-size: 13px;
}

/* ============================================
   POST GRID
   ============================================ */
.posts-section {
    padding: 40px 0 80px;
    background: var(--light);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

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

@media (max-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .post-grid,
    .post-grid--3 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   POST CARD
   ============================================ */
.post-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.post-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 38, 38, 0.08);
}

.post-card:hover::before {
    transform: scaleX(1);
}

.post-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--light);
}

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

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--light), var(--white));
}

.post-card-body {
    padding: 24px;
}

.post-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.35;
}

.post-card-body h3 a {
    color: var(--primary);
    text-decoration: none;
}

.post-card-body h3 a:hover {
    color: var(--secondary);
}

.post-card-body > p {
    font-size: 14px;
    color: var(--neutral);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.pagination-info {
    color: var(--neutral-light);
    font-size: 14px;
}

/* ============================================
   SINGLE POST
   ============================================ */
.post-header {
    padding: 140px 0 40px;
    background: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.post-header-meta {
    margin-bottom: 16px;
    position: relative;
}

.post-header h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.post-subtitle {
    font-size: 19px;
    color: var(--neutral);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 28px;
    position: relative;
}

.post-author-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    position: relative;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.12);
    border-radius: 50%;
    font-size: 20px;
}

.author-info {
    text-align: left;
}

.author-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
}

.post-date-reading {
    display: block;
    font-size: 13px;
    color: var(--neutral-light);
}

/* Feature image */
.post-hero-image {
    margin-bottom: 48px;
}

.post-hero-image .container {
    max-width: 960px;
}

.post-hero-image img {
    border-radius: 24px;
    width: 100%;
}

.post-hero-image figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--neutral-light);
    margin-top: 12px;
}

/* ============================================
   GHOST CONTENT (gh-content)
   ============================================ */
.post-content {
    padding: 0 0 60px;
}

.gh-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--primary);
}

.gh-content > * + * {
    margin-top: 1.5em;
}

.gh-content h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 2.5em;
    margin-bottom: 0.5em;
    color: var(--primary);
}

.gh-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 2em;
    margin-bottom: 0.5em;
    color: var(--primary);
}

.gh-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

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

.gh-content a {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.gh-content a:hover {
    color: var(--secondary-dark);
}

.gh-content strong {
    font-weight: 700;
}

.gh-content ul,
.gh-content ol {
    padding-left: 1.5em;
}

.gh-content li {
    margin-bottom: 0.5em;
}

.gh-content li::marker {
    color: var(--secondary);
}

.gh-content blockquote {
    border-left: 4px solid var(--secondary);
    padding: 20px 28px;
    margin: 2em 0;
    background: var(--white);
    border-radius: 0 16px 16px 0;
    font-size: 18px;
    font-style: italic;
    color: var(--primary);
}

.gh-content blockquote p {
    margin: 0;
}

.gh-content pre {
    background: var(--primary);
    color: #f0f0f0;
    padding: 24px 28px;
    border-radius: 16px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.6;
    margin: 2em 0;
}

.gh-content code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.9em;
}

.gh-content :not(pre) > code {
    background: rgba(78, 205, 196, 0.12);
    color: var(--accent-dark);
    padding: 2px 8px;
    border-radius: 6px;
}

.gh-content hr {
    border: none;
    border-top: 2px solid var(--border);
    margin: 3em 0;
}

.gh-content img {
    border-radius: 16px;
    margin: 2em auto;
}

.gh-content figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--neutral-light);
    margin-top: 8px;
}

.gh-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 15px;
}

.gh-content th {
    background: var(--primary);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.gh-content th:first-child {
    border-radius: 12px 0 0 0;
}

.gh-content th:last-child {
    border-radius: 0 12px 0 0;
}

.gh-content td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}

.gh-content tr:last-child td:first-child {
    border-radius: 0 0 0 12px;
}

.gh-content tr:last-child td:last-child {
    border-radius: 0 0 12px 0;
}

/* Ghost cards / embeds */
.gh-content .kg-card {
    margin: 2em 0;
}

.gh-content .kg-image-card img,
.gh-content .kg-gallery-image img {
    border-radius: 16px;
}

.gh-content .kg-callout-card {
    background: rgba(78, 205, 196, 0.1);
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.gh-content .kg-bookmark-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gh-content .kg-bookmark-card:hover {
    box-shadow: 0 8px 24px rgba(38, 38, 38, 0.08);
}

.gh-content .kg-bookmark-container {
    display: flex;
    text-decoration: none;
    color: var(--primary);
}

.gh-content .kg-bookmark-content {
    flex: 1;
    padding: 20px;
}

.gh-content .kg-bookmark-title {
    font-weight: 700;
    font-size: 16px;
}

.gh-content .kg-bookmark-description {
    font-size: 14px;
    color: var(--neutral);
    margin-top: 8px;
}

.gh-content .kg-bookmark-thumbnail img {
    border-radius: 0;
}

/* Wide and full width images */
.gh-content .kg-width-wide img {
    max-width: 960px;
    margin-left: calc(50% - 480px);
}

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

@media (max-width: 960px) {
    .gh-content .kg-width-wide img {
        max-width: 100%;
        margin-left: auto;
    }
}

/* Post footer tags */
.post-footer-tags {
    padding: 0 0 48px;
}

.post-footer-tags .container {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

/* ============================================
   RELATED POSTS
   ============================================ */
.related-section {
    padding: 60px 0 80px;
    background: var(--light);
}

.related-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

/* ============================================
   CTA (copié de marketingrobot.fr)
   ============================================ */
.cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-card {
    background: var(--primary);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-icon {
    font-size: 56px;
    margin-bottom: 24px;
}

.cta h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 48px 24px;
    }
    .cta h2 {
        font-size: 32px;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   FOOTER (copié de marketingrobot.fr)
   ============================================ */
.footer {
    padding: 80px 0 40px;
    background: var(--primary);
    color: var(--white);
}

.footer .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer .logo-icon {
    background: var(--secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--secondary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page {
    padding: 200px 0 120px;
    text-align: center;
    background: var(--white);
}

.error-page h1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin: 16px 0;
}

.error-page p {
    font-size: 18px;
    color: var(--neutral);
    margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 40px;
    }
    .blog-hero h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    .blog-hero p {
        font-size: 16px;
    }
    .post-header h1 {
        font-size: 30px;
    }
    .post-subtitle {
        font-size: 16px;
    }
    .gh-content {
        font-size: 16px;
    }
    .gh-content h2 {
        font-size: 26px;
    }
    .gh-content h3 {
        font-size: 20px;
    }
    .gh-content blockquote {
        padding: 16px 20px;
    }
    .gh-content pre {
        padding: 16px 20px;
        font-size: 13px;
    }
}

/* ============================================
   GHOST UTILITIES / OVERRIDES
   ============================================ */

/* Hide Ghost default membership elements if not needed */
.gh-navigation-menu .nav-sign-in,
.gh-navigation-menu .nav-sign-up,
.gh-post-upgrade-cta,
.pswp {
    display: none;
}

/* Ensure body classes work */
body.home-template .site-main {
    /* Home specific styles if needed */
}
