/* Bundled CSS - Generated automatically */

/* base/reset.css */
/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFFFFC;
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style-position: inside;
}


/* base/typography.css */
/* Typography */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', Courier, monospace;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: #0B1215;
  background: #FFFFFC;
  padding: 0;
  padding-top: 80px; /* Account for fixed header */
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

code, pre {
  font-family: var(--font-mono);
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}


/* base/utilities.css */
/* Utility Classes */

/* Ensure main takes full width */
main {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Focus Styles for Accessibility */
*:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}


/* components/header.css */
/* Shared header styles for all pages */
.site-header {
    border-bottom: 2px solid #0B1215;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFC;
    z-index: 1200;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger-menu {
    display: none;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0B1215;
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #FFFFFC;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding: 80px 30px 30px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav .nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.header-left {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-left: 0;
}

.header-nav {
    display: flex;
    align-items: baseline;
    gap: 30px;
    position: relative;
    padding-right: 0;
}

.nav-link {
    color: #0B1215;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s;
    padding-bottom: 4px;
    position: relative;
}

.nav-link:hover {
    opacity: 0.6;
}

/* Dropdown menu styles */
.nav-item-with-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
    transition: transform 0.2s;
}

.nav-item-with-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFC;
    border: 2px solid #0B1215;
    margin-top: 4px;
    padding-top: 4px;
    min-width: 150px;
    display: none;
    z-index: 200;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Bridge the gap between nav item and dropdown to maintain hover state */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.nav-item-with-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #0B1215;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* Mobile submenu styles */
.nav-link-submenu {
    display: block;
    padding: 10px 0 10px 20px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-bottom: none;
}

.nav-underline {
    position: absolute;
    bottom: -2px;
    height: 2px;
    background: #0B1215;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.tagline {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h1 a {
    color: #0B1215;
    text-decoration: none;
}

h1 a:hover {
    opacity: 0.8;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    header {
        position: fixed;
        padding: 20px;
    }

    .header-left {
        padding-left: 0;
    }

    .tagline {
        display: none;
    }

    .header-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .mobile-nav {
        display: block;
    }
}

/* Newsletter Modal Styles */
.newsletter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 18, 21, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.newsletter-modal-content {
    background: #FFFFFC;
    border: 2px solid #0B1215;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: #0B1215;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.newsletter-modal-close:hover {
    opacity: 0.6;
}

.newsletter-modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0B1215;
}

.newsletter-modal-description {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.newsletter-form-group {
    margin-bottom: 20px;
}

.newsletter-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #0B1215;
}

.newsletter-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #0B1215;
    background: #FFFFFC;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

.newsletter-form-group input:focus {
    outline: none;
    border-color: #0B1215;
    box-shadow: 0 0 0 3px rgba(11, 18, 21, 0.1);
}

.newsletter-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: #0B1215;
    color: #FFFFFC;
    border: 2px solid #0B1215;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.newsletter-submit-btn:hover:not(:disabled) {
    background: #FFFFFC;
    color: #0B1215;
}

.newsletter-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 20px;
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
    display: none;
}

.newsletter-message.success {
    display: block;
    background: #d4edda;
    border: 2px solid #28a745;
    color: #155724;
}

.newsletter-message.error {
    display: block;
    background: #f8d7da;
    border: 2px solid #dc3545;
    color: #721c24;
}

@media (max-width: 768px) {
    .newsletter-modal-content {
        padding: 30px 20px;
    }

    .newsletter-modal-title {
        font-size: 24px;
    }

    .newsletter-modal-description {
        font-size: 14px;
    }
}

/* Floating CTAs Container */
.floating-cta-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    align-items: flex-end;
}

.floating-cta-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #0B1215;
    color: #FFFFFC;
    border: 2px solid #0B1215;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s ease;
    padding: 0;
    box-shadow: 0 2px 8px rgba(11, 18, 21, 0.3);
}

.floating-cta-close:hover {
    background: #FFFFFC;
    color: #0B1215;
    transform: rotate(90deg);
}

.floating-cta-button {
    background: #0B1215;
    color: #FFFFFC;
    border: 2px solid #0B1215;
    border-radius: 50px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(11, 18, 21, 0.3);
}

.floating-cta-button:hover {
    background: #FFFFFC;
    color: #0B1215;
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(11, 18, 21, 0.4);
}

.floating-cta-icon {
    font-size: 18px;
    line-height: 1;
}

.floating-cta-text {
    line-height: 1;
}

/* Podcast Dropdown */
.floating-cta-dropdown {
    display: none;
    flex-direction: column;
    background: #FFFFFC;
    border: 2px solid #0B1215;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 18, 21, 0.3);
    margin-bottom: -4px;
}

.floating-cta-dropdown.active {
    display: flex;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-dropdown-item {
    padding: 14px 20px;
    text-decoration: none;
    color: #0B1215;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.floating-dropdown-item:last-child {
    border-bottom: none;
}

.floating-dropdown-item:hover {
    background: #f5f5f5;
}

.dropdown-icon {
    font-size: 10px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .floating-cta-container {
        bottom: 20px;
        right: 20px;
        left: 20px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .floating-cta-button {
        padding: 12px 16px;
        font-size: 11px;
        flex: 1;
        justify-content: center;
        max-width: 160px;
    }

    .floating-cta-icon {
        font-size: 14px;
    }

    .floating-cta-text {
        font-size: 11px;
    }

    .floating-cta-dropdown {
        position: absolute;
        bottom: 100%;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
        width: 200px;
    }

    .floating-dropdown-item {
        padding: 12px 18px;
        font-size: 12px;
    }
}


/* components/prose.css */
/* Prose Container - For blog posts and articles */
.prose-container {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

.post-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
}

.post-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0B1215;
}

.post-meta {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: #666;
  flex-wrap: wrap;
}

.post-author {
  color: #666;
}

.post-tags, .post-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
}

.post-content {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

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

.post-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0B1215;
  margin-top: 40px;
  margin-bottom: 16px;
}

.post-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-top: 24px;
  margin-bottom: 12px;
}

.post-content ul,
.post-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.post-content a {
  color: #000;
  text-decoration: underline;
}

.post-content a:hover {
  opacity: 0.7;
}

/* Image Gallery Grid for Projects */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.image-gallery img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  display: block;
  object-fit: cover;
}

/* Single image (not in gallery) */
.post-content img:not(.image-gallery img) {
  max-width: 400px;
  width: auto;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  border: 1px solid #e0e0e0;
  display: block;
}

.blog-image {
  max-width: 600px;
  border: 1px solid #e0e0e0;
}

.blog-video {
  max-width: 100%;
  border-radius: 8px;
  margin: 24px 0;
  border: 1px solid #e0e0e0;
}

.job-video {
  margin: 24px 0 32px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.back-link {
  color: #666;
  text-decoration: none;
  font-size: 14px;
}

.back-link:hover {
  color: #000;
}

/* Job-specific styles */
.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-type,
.job-location,
.job-department {
  font-weight: 500;
  background: #f0f0f0;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .prose-container {
    padding: 40px 15px;
  }

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

  .post-meta {
    flex-direction: column;
    gap: 8px;
  }

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

  .post-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .image-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


/* components/list-card.css */
/* Card-based layouts for index pages */
.page-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 60px 20px 0;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.page-description {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Posts Grid */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.post-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

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

.post-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
}

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

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

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

.post-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-card-title a {
  color: #000;
  text-decoration: none;
}

.post-card-title a:hover {
  text-decoration: underline;
}

.post-card-meta {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.post-card-author {
  color: #888;
}

.post-type-badge {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-type-badge.project {
  background: #e3f2fd;
  color: #1976d2;
}

.post-type-badge.thought {
  background: #f3e5f5;
  color: #7b1fa2;
}

.post-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 12px;
}

/* Jobs List */
.jobs-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.job-card {
  border: 2px solid #000;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.job-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.job-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.job-card-title a {
  color: #000;
  text-decoration: none;
}

.job-card-title a:hover {
  text-decoration: underline;
}

.job-card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.job-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.job-card-link {
  display: inline-block;
  color: #000;
  text-decoration: underline;
  font-weight: 500;
}

.job-card-link:hover {
  opacity: 0.7;
}

.cta-primary {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cta-primary:hover {
  opacity: 0.85;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }

  .page-description {
    font-size: 16px;
  }

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

  .job-card {
    padding: 20px;
  }

  .job-card-title {
    font-size: 20px;
  }
}


/* components/sidebar.css */
/* Two-Panel Layout with Sidebar Navigation */

.two-panel-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  min-height: calc(100vh - 60px); /* Account for header */
  position: relative;
  max-width: 100%;
  width: 100%;
}

/* Sidebar Navigation */
.sidebar-nav {
  background: #F8F8F8;
  border-right: 2px solid #E0E0E0;
  overflow-y: auto;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 0;
}

.sidebar-header {
  padding: 20px 24px 20px 40px;
  border-bottom: 1px solid #E0E0E0;
  position: sticky;
  top: 0;
  background: #F8F8F8;
  z-index: 10;
}

.sidebar-header:has(.sidebar-filters) {
  padding: 16px 24px 16px 40px;
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  font-family: var(--font-sans);
  color: #0B1215;
  display: none;
}

/* Filter Tabs */
.sidebar-filters {
  display: flex;
  gap: 6px;
  margin-top: 0;
}

.filter-btn {
  flex: 1;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid #D0D0D0;
  background: #FFFFFC;
  color: #888;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
  border-radius: 0;
}

.filter-btn:hover {
  background: #F8F8F8;
  border-color: #999;
  color: #333;
}

.filter-btn.active {
  background: #0B1215;
  color: #FFFFFC;
  border-color: #0B1215;
}

/* Sidebar List */
.sidebar-list {
  padding: 0;
}

.sidebar-item {
  display: block;
  padding: 20px 24px 20px 40px;
  border-bottom: 1px solid #E8E8E8;
  text-decoration: none;
  color: #0B1215;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #FFFFFC;
}

.sidebar-item:hover {
  background: #F0F0F0;
}

.sidebar-item.active {
  background: #E8E8E8;
  border-left: 3px solid #0B1215;
  padding-left: 37px;
}

.sidebar-item.hidden {
  display: none;
}

.sidebar-item-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 8px;
}

.sidebar-item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px 0;
  flex: 1;
  color: #0B1215;
}

.sidebar-item-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 3px;
  background: #D9D9D9;
  color: #0B1215;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.sidebar-item-badge.thought {
  background: #E3F2FD;
  color: #0B1215;
}

.sidebar-item-badge.project {
  background: #F3E5F5;
  color: #0B1215;
}

.sidebar-item-description {
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  margin: 0 0 8px 0;
}

.sidebar-item-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: #8C8C8C;
  font-family: var(--font-sans);
}

.sidebar-item-meta time {
  font-weight: 500;
}

/* Main Content Area */
.main-content-area {
  padding: 60px 100px 60px 80px;
  background: #FFFFFC;
  overflow-y: auto;
  width: 100%;
}

/* Remove max-width constraint on prose container in two-panel layout */
.two-panel-layout .prose-container {
  max-width: none;
  width: 100%;
  margin: 0;
}

/* Tablet Responsive */
@media (max-width: 1200px) {
  .two-panel-layout {
    grid-template-columns: 1fr 2fr;
  }

  .sidebar-header {
    padding: 28px 20px 20px;
  }

  .sidebar-item {
    padding: 18px 20px;
  }

  .sidebar-item.active {
    padding-left: 17px;
  }

  .main-content-area {
    padding: 40px 40px 40px 30px;
  }
}

/* Mobile - Slide-out Panel Pattern */
@media (max-width: 900px) {
  .two-panel-layout {
    grid-template-columns: 1fr !important;
    display: block;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
  }

  .sidebar-nav {
    position: relative;
    height: calc(100vh - 64px);
    max-height: none;
    border-right: none;
    border-bottom: none;
    width: 100%;
    top: 0;
    overflow-y: auto;
  }

  .sidebar-header {
    position: sticky;
    top: 0;
  }

  /* Main content hidden by default on mobile, slides in from right */
  .main-content-area {
    position: fixed;
    top: 64px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: #FFFFFC;
    padding: 20px;
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    z-index: 1300;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
  }

  /* When content is active/visible */
  .main-content-area.active {
    right: 0;
  }

  .two-panel-layout .prose-container {
    position: relative;
    z-index: 1;
    padding-top: 50px; /* Space for close button */
  }

  .post-header {
    position: relative;
    z-index: 1;
  }

  /* Close button for mobile slide-out */
  .mobile-close-btn {
    display: flex;
    position: fixed;
    top: 74px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #0B1215;
    color: #FFFFFC;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 1301;
    padding: 0;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  }
}

/* Hide close button on desktop - outside mobile media query */
@media (min-width: 901px) {
  .mobile-close-btn {
    display: none !important;
  }
}

/* Mobile Toggle Button (optional for small screens) */
.sidebar-toggle {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 100;
}

@media (max-width: 900px) {
  .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sidebar-nav.collapsed {
    max-height: 0;
    overflow: hidden;
    border-bottom: none;
  }
}


/* components/footer.css */
/* Site Footer */

.site-footer {
  border-top: 2px solid #0B1215;
  padding: 40px 0;
  margin-top: auto;
  background: #FFFFFC;
}

.footer-container {
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content {
  flex: 1;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0B1215;
}

.footer-copy {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: #0B1215;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 0 20px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}


