/* ========================================
   THREADS PAGE - CLEAN MINIMAL DESIGN
   ======================================== */

/* Override about.css centering */
.container {
    min-height: 100vh;
    display: block;
    justify-content: flex-start;
}

/* Layout */
.about-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 40px 100px;
    gap: 80px;
    width: 100%;
    align-items: flex-start;
    min-height: calc(100vh - 240px);
}

.about-sidebar {
    width: 240px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    align-self: flex-start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.about-sidebar > *:first-child {
    margin-top: 0 !important;
}

.about-content {
    flex: 1;
    min-width: 0;
    min-height: 400px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--cam-text-tertiary);
}

/* Hero */
.about-hero {
    margin-top: 0;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.9);
}

.hub-intro {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0;
}

.hub-intro a {
    color: inherit;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.hub-intro a:hover {
    color: var(--cam-text-primary);
    text-decoration-color: var(--cam-text-primary);
}

.hero-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
    margin: 0;
    font-weight: 400;
}

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

.breadcrumb a:hover {
    color: var(--cam-text-primary);
}

.breadcrumb-sep {
    opacity: 0.4;
}

.breadcrumb-current {
    color: var(--cam-text-primary);
}

/* Sidebar Navigation */
.about-sidebar h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 5px;
    margin-top: 20px;
    font-weight: normal;
}

.about-sidebar h2:first-child {
    margin-top: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.contact-list li {
    margin-bottom: 4px;
}

.contact-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.contact-list a:hover,
.contact-list a.active {
    color: var(--color-text-primary);
}

/* Sidebar Stats */
.feed-section {
    margin-top: 30px;
}

.feed-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.feed-item {
    margin-bottom: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.8);
}

.feed-item .sub {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 !important;
    margin: 0 0 10px 0;
    list-style: none;
}

.skills-list li {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    transition: all 0.2s ease;
}

.skills-list li a {
    color: inherit;
    text-decoration: none;
}

.skills-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-text-primary);
}

/* Sidebar Search */
.sidebar-search {
    margin-top: 20px;
    position: relative;
}

.sidebar-search input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 8px 0;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3px;
    transition: border-color 0.2s;
    border-radius: 0;
}

.sidebar-search input:focus {
    background: transparent;
    border-bottom-color: rgba(255,255,255,0.3);
    outline: none;
}

.sidebar-search input::placeholder {
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 9px;
}

/* Grid Layout - Masonry Columns */
.content-grid {
    display: block;
    column-count: 2;
    column-gap: 40px;
}

/* Cards */
.connection-card {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
    break-inside: avoid;
    page-break-inside: avoid;
    background: transparent;
    border: none;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--cam-text-primary);
    transition: all 0.2s ease;
}

.connection-card:hover {
    text-decoration: none !important;
}

.connection-card * {
    text-decoration: none !important;
}

/* Card Images */
.connection-card-image {
    aspect-ratio: 4/3;
    background: transparent;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 12px;
}

.connection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
    opacity: 0.9;
}

.connection-card:hover .connection-card-image img {
    opacity: 1;
}

/* Thread Cover Grid */
.thread-cover-grid {
    display: grid;
    width: 100%;
    height: 100%;
    gap: 2px;
}

.thread-cover-grid.count-1 { grid-template-columns: 1fr; }
.thread-cover-grid.count-2 { grid-template-columns: 1fr 1fr; }
.thread-cover-grid.count-3 {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}
.thread-cover-grid.count-3 img:first-child { grid-row: 1 / 3; }
.thread-cover-grid.count-4 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.thread-cover-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.connection-card-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.connection-header-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.connection-title {
    font-size: 15px;
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.9);
    margin: 0;
    transition: color 0.2s ease;
}

.connection-card:hover .connection-title {
    color: rgba(255,255,255,1);
}

/* Type Badges */
.type-badge {
    display: inline-block;
    padding: 0;
    font-size: 9px;
    font-family: var(--font-mono);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.35);
}

.type-badge.type-post,
.type-badge.type-blog { color: #7BA3E8; }

.type-badge.type-project,
.type-badge.type-portfolio { color: #E879B9; }

.type-badge.type-photo { color: #8FD9A8; }

.type-badge.type-thread { color: #F4A261; }

.type-badge.type-location,
.type-badge.type-category,
.type-badge.type-tag { color: rgba(255,255,255,0.4); }

/* Card Metadata */
.connection-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-item {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-family: var(--font-sans);
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.meta-value {
    color: rgba(255,255,255,0.55);
}

/* Card Tags */
.connection-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.tag-pill {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    font-size: 10px;
    font-family: var(--font-mono);
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
}

.connection-card:hover .tag-pill {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
}

/* View Toggle Buttons */
.timeline-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.timeline-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.3);
    padding: 0;
    cursor: pointer;
    font-size: 11px;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    font-family: var(--font-sans);
    font-weight: 400;
    transition: color 0.2s ease;
}

.timeline-btn:hover {
    color: rgba(255,255,255,0.6);
}

.timeline-btn.active {
    color: rgba(255,255,255,0.9);
}

/* Timeline View */
.timeline-year-section {
    margin-bottom: 40px;
}

.timeline-year-section .timeline-year {
    font-size: 1.3em;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-transform: lowercase;
}

.timeline-year-section .timeline-item {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.timeline-year-section .timeline-date {
    flex-shrink: 0;
    width: 45px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: lowercase;
    font-weight: 400;
    padding-top: 2px;
}

.timeline-card {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.timeline-card:hover {
    opacity: 0.8;
}

.timeline-thumb-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
}

.timeline-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.timeline-card:hover .timeline-thumb {
    opacity: 1;
}

.timeline-text-content {
    flex: 1;
    min-width: 0;
}

.timeline-text-content .connection-header-row {
    margin-bottom: 4px;
}

.timeline-text-content .connection-title {
    font-size: 14px;
}

.connection-reasons {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

.reason-item {
    font-family: var(--font-mono);
}

/* List View */
.list-view {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    color: inherit;
}

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

.list-item .connection-header-row {
    margin-bottom: 0;
    flex-grow: 1;
    gap: 12px;
}

.list-item .connection-reasons {
    margin-left: auto;
}

/* Start Page */
.start-page {
    display: none;
    min-height: calc(100vh - 300px);
}

/* Hide sidebar when start page is active */
body:has(.start-page[style*="display: block"]) .about-sidebar {
    display: none;
}

body:has(.start-page[style*="display: block"]) .about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Stats Grid */
.hub-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box {
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    transition: all 0.3s ease;
}

.stat-box:hover {
    opacity: 0.8;
}

.stat-num {
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.stat-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-mono);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-mono);
    line-height: 1.4;
}

/* Featured Content */
.hub-featured {
    margin-bottom: 60px;
}

.hub-featured h2 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-weight: normal;
    font-family: var(--font-mono);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.featured-card {
    background: transparent;
    border: none;
    padding: 0;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    overflow: hidden;
}

.featured-card:hover {
    transform: translateY(-2px);
}

.featured-card-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 16px;
}

.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.featured-card:hover .featured-card-image img {
    opacity: 1;
    transform: scale(1.02);
}

.featured-card-content {
    padding: 0;
}

.featured-card-type {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-family: var(--font-mono);
}

.featured-card-title {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
    line-height: 1.4;
}

.featured-card-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
}

/* Hub Sections */
.hub-section {
    margin-bottom: 60px;
}

.hub-section h2 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    font-weight: normal;
    font-family: var(--font-mono);
}

/* Recent Activity */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    gap: 12px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-1px);
}

.activity-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.activity-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.activity-item:hover .activity-thumb img {
    opacity: 1;
}

.activity-info {
    flex: 1;
    min-width: 0;
}

.activity-type {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    font-family: var(--font-mono);
}

.activity-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.activity-date {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
}

/* Featured Threads */
.threads-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.thread-preview-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.thread-preview-card:hover {
    transform: translateY(-2px);
}

.thread-preview-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 12px;
}

.thread-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.thread-preview-card:hover .thread-preview-image img {
    opacity: 1;
    transform: scale(1.02);
}

.thread-preview-content {
    padding: 0;
}

.thread-preview-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    font-weight: 400;
}

.thread-preview-meta {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.tag-cloud-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.tag-cloud-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-mono);
}

.tag-cloud-count {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-mono);
}

/* Navigation Grid */
.hub-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hub-nav-card {
    background: rgba(255, 255, 255, 0.04);
    border: none;
    padding: 20px 16px;
    text-decoration: none;
    color: inherit;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
}

.hub-nav-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.hub-nav-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    font-weight: 400;
}

.hub-nav-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
    font-variant-numeric: tabular-nums;
}

/* Tab Views */
.hub-view-wrapper {
    position: relative;
    min-height: calc(100vh - 300px);
    margin-top: 0;
}

.hub-view {
    display: none;
    min-height: calc(100vh - 300px);
    margin-top: 0;
}

.hub-view.active {
    display: block;
}

/* Tag List View */
.tag-controls {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    padding: 0 0 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    align-items: center;
}

.tag-sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tag-sort label {
    font-size: 11px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.tag-sort select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 2px 4px 2px 0;
    font-size: 11px;
    font-family: var(--font-sans);
    font-weight: 400;
    text-transform: lowercase;
}

.tag-stats {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.tag-stats #tagCount {
    color: rgba(255, 255, 255, 0.8);
}

.tag-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tag-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none;
    gap: 20px;
    transition: opacity 0.2s ease;
}

.tag-list-item:hover {
    opacity: 0.7;
}

.tag-name {
    font-size: 13px;
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: lowercase;
}

.tag-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.tag-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-mono);
    min-width: 60px;
    text-align: right;
}

.tag-types {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.35);
    font-family: var(--font-mono);
}

/* Timeline Filters */
.timeline-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    padding: 0 0 12px 0;
    align-items: center;
}

.timeline-filters .filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-filters label {
    font-size: 11px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.4);
}

.timeline-filters select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 2px 4px 2px 0;
    font-size: 11px;
    font-family: var(--font-sans);
    text-transform: lowercase;
}

.timeline-filters .filter-stats {
    margin-left: auto;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.timeline-filters .filter-stats #timelineItemCount {
    color: rgba(255, 255, 255, 0.8);
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
}

.timeline-year {
    margin-bottom: 50px;
}

.timeline-year .year-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 25px;
}

.timeline-year .year-header h2 {
    font-size: 1.5em;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.timeline-year .year-count {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: lowercase;
}

.timeline-month {
    margin-bottom: 35px;
}

.timeline-month .month-header {
    font-size: 13px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
    font-weight: 400;
}

.timeline-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-item {
    display: flex;
    gap: 18px;
}

.timeline-item .item-date {
    flex-shrink: 0;
    width: 45px;
    font-size: 10px;
    text-transform: lowercase;
    color: rgba(255, 255, 255, 0.35);
    padding-top: 2px;
}

.timeline-item .item-content {
    flex: 1;
}

.timeline-item .item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.timeline-item .item-title {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.timeline-item .item-title:hover {
    color: rgba(255, 255, 255, 1);
}

.timeline-item .item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

.timeline-item .meta-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.timeline-item .tag {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
}

.timeline-item .item-thumbnail {
    margin-top: 8px;
    overflow: hidden;
    max-width: 250px;
}

.timeline-item .item-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.timeline-item:hover .item-thumbnail img {
    opacity: 1;
}

/* Related Content */
.related-content-section {
    margin-top: 50px;
    padding-top: 20px;
}

.section-title {
    font-size: 9px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--font-mono);
}

/* Empty State */
.empty-state-card {
    text-align: center;
    padding: 60px 20px;
}

.empty-state-card h2 {
    font-size: 14px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.empty-state-card p {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 500px;
    margin: 0 auto 12px;
}

.empty-state-card code {
    background: rgba(255,255,255,0.05);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 11px;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--cam-text-tertiary);
    font-size: 14px;
    opacity: 0.6;
}

#timelineNoResults {
    text-align: center;
    padding: 60px 20px;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-layout {
        flex-direction: column;
        gap: 40px;
        padding: 100px 20px 60px;
    }

    .about-sidebar {
        width: 100%;
        position: static;
        max-height: none;
        padding-bottom: 30px;
    }

    .content-grid {
        column-count: 2;
        column-gap: 30px;
    }

    body:has(.start-page[style*="display: block"]) .about-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hub-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .hub-nav-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .threads-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .content-grid {
        column-count: 1;
    }

    .timeline-year-section .timeline-item {
        flex-direction: column;
        gap: 12px;
    }

    .timeline-year-section .timeline-date {
        width: auto;
    }

    .tag-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .tag-info {
        width: 100%;
        justify-content: space-between;
    }

    .tag-count {
        text-align: left;
        min-width: auto;
    }

    .timeline-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .timeline-filters .filter-group {
        width: 100%;
        justify-content: space-between;
    }

    .timeline-filters .filter-stats {
        margin-left: 0;
    }

    .timeline-item {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-item .item-date {
        width: auto;
    }
}

@media (max-width: 480px) {
    .hub-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-box {
        padding: 20px 16px;
    }

    .stat-num {
        font-size: 28px;
    }

    .hub-nav-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hub-nav-card {
        padding: 20px 16px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .threads-preview {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .tags-cloud {
        gap: 8px;
    }

    .tag-cloud-item {
        padding: 6px 10px;
    }
}
