@font-face {
    font-family: 'JetBrainsMono-Light';
    src: url('/fonts/JetBrainsMono-Light.ttf') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and default styling */
html {
  scroll-behavior: smooth;
}

:root {
  --text-color: #000;
  --text-medium: #444;
  --text-light: #bbbbbb;
  --background-color: #fff;
  --link-hover: #41cc00;
  --standard-spacer: 1rem;
  --nav-height: 0px;
  --font-mono: 'NectoMono', ui-monospace, monospace;
  --font-size-base: 1rem;
  --line-height-base: 1.5;
  --font-size-small: 0.75rem;
  --font-size-xsmall: 0.65rem;
  --font-size-large: 1.5rem;
}

/* Color utility classes */
.text-color        { color: var(--text-color); }
.text-medium       { color: var(--text-medium); }
.text-light        { color: var(--text-light); }
.text-link-hover   { color: var(--link-hover); }
.bg-background     { background-color: var(--background-color); }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--background-color);
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--background-color);
    padding: 0.5rem 1rem;
    font-size: var(--font-size-base);
}

.site-nav a {
    color: var(--text-color);
    text-decoration: none;
}

.site-credits a {
 color: var(--text-light);
    text-decoration: none;
}

.site-nav a:hover, .site-credits a:hover {
    text-decoration: underline;
}

.nav-groups {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.nav-toggle.is-empty {
    color: #ddd;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

p.bio {
    pointer-events: auto;
        background-color: #f5f5f5;
    padding: 1rem;
    line-height: 1.4;
}

@media (max-width: 640px) {
    .nav-controls,
    .nav-links {
        display: contents;
    }
}

@media (min-width: 1024px) {
    .nav-groups {
        width: 75vw;
        margin-left: auto;
       justify-content: flex-end;
    }
}

.nav-icon,
.nav-swatch {
    display: inline-flex;
    width: 12px;
    height: 12px;
    align-items: center;
    justify-content: center;
    background-color: transparent;
}

.nav-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
    transition: opacity 0.15s ease-in-out;
}

.nav-icon:hover {
    background-color: #fff;
}

.nav-icon:hover img {
    opacity: 0;
}

.nav-swatch {
   background-color: #000 !important; 
}

.nav-swatch:hover {
    background-color: rgb(0, 132, 255) !important;
}


.content-section {
    display: none;
}

.content-section.is-active {
    display: block;
    min-height:50vh;
}

.fallback-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}

.fallback-text {
    font-size: 5rem;
    color: #ddd;
    font-style: italic;
    transform: rotate(-15deg);
    user-select: none;
    overflow-wrap: break-word;
    line-height: 80%;
    text-align: center;
    min-width: 0;
}

.site-footer {
    padding-top: var(--space-4);
    margin-left: calc(-1 * var(--space-3));
    margin-right: calc(-1 * var(--space-3));
    padding-left: var(--space-3);
    padding-right: var(--space-3);
}

.section.sorted-writing {
    background-color: #cbecf7;
    padding:1rem;
}

.section.sorted-writing a {
    text-decoration: none;
}

.section.sorted-writing a:hover {
   text-decoration: none;
    color: blue;
}

.site-credits {
    margin-top: var(--space-4);
    font-size: var(--font-size-small);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

 .header, .section {
    margin-bottom: calc(1.5*var(--standard-spacer));
    }


.site-credits * {
    color: var(--text-light);
}

@media (max-width: 767px) {
    .fallback-text {
        font-size: 2.5rem;
    }
}

main {
    min-height: 75vh;
}

h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
    margin-bottom: 0;
}

p {
    margin-bottom: 1em;
}

a{
    color: var(--text-color);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}


.button {
    display: inline;
    padding: 4px 10px 4px 9px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(233, 233, 233) rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0.35) rgb(233, 233, 233);
    color: #000;
    text-decoration: none;
    text-align: center;
    font-size: var(--font-size-base);
    font-family: inherit;
    line-height: inherit;
    background-color: transparent;
    cursor: pointer;
    margin-bottom: 1rem;
    -webkit-appearance: none;
    appearance: none;
}

.button:hover {
    background-color: yellow;
    text-decoration: none;
    box-shadow: none;
    transform: translate(1px, 1px);
}

details.accordion summary {
    list-style: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
}

details.accordion summary::-webkit-details-marker {
    display: none;
}

details.accordion summary::before {
    content: "+ ";
}

details[open].accordion summary::before {
    content: "− ";
}

details.accordion summary:hover {
    color: var(--text-color);
    background-color: #e9e9e9;
}

details.accordion p, details.accordion p:hover {
  color: var(--text-color) !important;
}


/* Projects grid */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    width: 100%;
}

.project-card {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 2 0 calc(33.333% - var(--space-4));
    max-width: 33.333%;
    min-width: 0;
}

.project-card--draft {
    cursor: default;
}

.project-card--draft .project-image img {
    opacity: 0.5;
}

.project-card--draft .project-image::after {
    content: "coming soon";
    white-space: pre;
    position: absolute;
    bottom:5%;
    left: 5%;
    font-family: var(--font-mono);
    font-size: var(--font-size-small);
    line-height: 1;
    text-align: left;
    color: #fff;
    pointer-events: none;
}

.project-image {
    margin-bottom: var(--space-2);
    position: relative;
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}


.project-image--placeholder {
    aspect-ratio: 4 / 3;
    background: #efefef;
}

.project-image--website img,
.post-images--website img {
    border: 1px solid #f2f2f2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}


.project-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.4em;
}

.project-title {
    margin: 0;
}

.project-oneline {
    margin: 0;
    color: var(--text-light);
    font-size: var(--font-size-small);
}

.project-meta {
    margin: 0;
    font-family: var(--font-mono);
    font-size: var(--font-size-xsmall);
    color: var(--text-light);
}

/* Single page slider (kept for project detail pages) */
.gallery-images {
    position: relative;
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior-x: contain;
}

.gallery-images::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    gap: 1rem;
}

.gallery-images .gallery-item {
    flex-shrink: 0;
    scroll-snap-align: start;
}

.gallery-images .gallery-item img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .projects-grid {
        gap: var(--space-3);
    }

    .project-card {
        flex: 1 0 100%;
        max-width: 100%;
    }

    .slider-nav {
        flex-direction: column;
    }

    .slider-caption {
        width: 100%;
        font-size: 0.85rem;
    }
}

.slider-nav {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.5rem;
}

.slider-caption {
    flex: 1;
    min-width: 0;
    font-size: var(--font-size-small);
    justify-content: space-between;
    line-height: 1.25;
    color: var(--text-light);
    display: flex;
    align-items: baseline;
    gap: 12px;
}


.slider-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.caption-primary p {
    display: inline;
    margin: 0;
}

.caption-detail {
    display: none;
}

.caption-detail p {
    display: inline;
    margin: 0;
}

.caption-detail::before {
    content: " — ";
}

.slider-caption a {
    color: inherit;
}

.slider-caption.caption-open {
    color: var(--text-color);
}

.slider-caption.caption-open .slider-btn,
.slider-caption.caption-open ~ .slider-controls,
.slider-caption.caption-open ~ .slider-controls .slider-btn,
.slider-caption.caption-open ~ .slider-controls .slider-counter {
    color: var(--text-color);
}

.slider-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    font-size: var(--font-size-base);
    line-height: 1;
    color: var(--text-light);
    transition: color 0.2s;
}

.slider-btn:hover {
    color: var(--text-color);
}

.slider-btn:disabled {
    color: var(--text-light);
    opacity: 0.4;
    cursor: default;
}

.slider-counter {
    font-size: var(--font-size-small);
    color: var(--text-light);
}

/* Work single page */
.work-single-carousel {
    margin-bottom: var(--space-4);
}

.work-single-gallery {
    aspect-ratio: unset !important;
    height: 85vh;
}

.work-single-gallery .gallery-item {
    height: 100%;
    width: auto;
    flex-shrink: 0;
}

.work-single-gallery .gallery-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    object-position: left top;
}

.work-single-nav {
    margin-top: 0.5rem;
}

.work-single-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    max-width: 40rem;
    margin-top: var(--space-4);
}

.work-single-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.work-single-title {

}

.work-single-details {
    color: var(--text-light);
    display: flex;
    gap: var(--space-3);
}

.work-single-details a {
    color: inherit;
}

.work-single-content {
    color: var(--text-medium);
}

.work-single-content p {
    margin: 0;
}

.work-single-content a {
    color: inherit;
}

.work-back-link {
    display: inline-block;
    margin-top: var(--space-5);
    font-size: var(--font-size-small);
    color: var(--text-light);
    text-decoration: none;
}

/* Writing single page */
.writing-single {
    max-width: 38rem;
}

.writing-single-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.writing-single-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.writing-single-title {
    font-size: var(--font-size-large);
    font-weight: normal;
    line-height: 1.2;
}

.writing-single-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-mono);
    font-size: var(--font-size-small);
    color: var(--text-light);
}

.writing-single-link {
    color: var(--text-light);
    text-decoration: none;
}

.writing-single-link:hover {
    color: var(--text-color);
}

.writing-single-image img {
    width: 100%;
    height: auto;
    display: block;
}

.writing-single-content {
    font-size: var(--font-size-base);
    line-height: 1.6;
}

.writing-single-content p {
    margin-bottom: 1em;
}

.writing-single-content a {
    color: inherit;
}

.work-back-link:hover {
    color: var(--text-color);
}

/* Captions: fixed to bottom, shown on click */
.caption-hover {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    padding: var(--space-4);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 100;
    max-height: 20vh;
    overflow-y: auto;
}

.caption-hover.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.caption p:last-of-type {
    display: inline;
}

.post-external:hover {
  background-color: var( --link-hover);
}

/* Mobile: captions appear below images instead of fixed to bottom */
@media (max-width: 768px) {
    .caption-hover {
        position: static;
        opacity: 1;
        pointer-events: auto;
        background-color: transparent;
        padding: var(--space-2) 0;
        max-height: none;
        margin-top: var(--space-2);
    }
    
}

.location::before {
      content: "⋆˚꩜｡";
      margin-right: calc(0.25* var(--standard-spacer)); /* Replace with your desired emoji */
    }

.top{
    top: 0;
    position: absolute;
}

.m-0 {
    margin: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: calc(0.25* var(--standard-spacer));
}

.mb-2 {
    margin-bottom: calc(0.5* var(--standard-spacer));
}

.gap-1 {
    gap: var(--standard-spacer);
}

.gap-4 {
    gap: calc(4*var(--standard-spacer));
}

/* header css*/

.header *:not(:last-child) {
margin-right: calc(1.5* var(--standard-spacer));
}


/* Feed container */
.feed-container {
    display: flex;
    gap: 1rem;
    width: 100%;
}

/* Life section layout */
.gallery-life {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.gallery-feed {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.month-labels-column {
    width: 4rem;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
}

.month-label {
    position: absolute;
    color: var(--text-light);
    white-space: nowrap;
    padding-top: 2px;
    font-family: var(--font-mono);
    font-size: var(--font-size-xsmall);
}

.gallery-feed .grid-life {
    flex: 1;
    min-width: 0;
}

/* Life grid — 10-col sub-grid, 3 images per row with varying widths */
.grid-life {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: auto;
    gap: 8px;
}

.life-grid-item {
    overflow: hidden;
    grid-column: span 3; /* default: 30% */
}

/* Row A: 30%, 40%, 30% */
.life-grid-item:nth-child(9n+1) { grid-column: span 3; }
.life-grid-item:nth-child(9n+2) { grid-column: span 4; }
.life-grid-item:nth-child(9n+3) { grid-column: span 3; }

/* Row B: 40%, 30%, 30% */
.life-grid-item:nth-child(9n+4) { grid-column: span 4; }
.life-grid-item:nth-child(9n+5) { grid-column: span 3; }
.life-grid-item:nth-child(9n+6) { grid-column: span 3; }

/* Row C: 30%, 30%, 40% */
.life-grid-item:nth-child(9n+7) { grid-column: span 3; }
.life-grid-item:nth-child(9n+8) { grid-column: span 3; }
.life-grid-item:nth-child(9n+9) { grid-column: span 4; }

.life-grid-item img {
    width: 100%;
    height: auto;
    display: block;
}



/* Memo styling */
.memo {
    position: fixed;
    bottom: 1rem;
    left: 1.25rem;
    color: #00AD76;
    font-family: ui-monospace, 'Cascadia Code', Menlo, Consolas, monospace;
    font-size: var(--font-size-xsmall);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: var(--space-1) var(--space-2);
    border: 1px solid var(--text-color);
    background-color: var(--background-color);
}



/* Image modal */
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.798);
    margin-top: -1px;
    animation: zoom 0.25s;
    z-index: 100;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal img {
    object-fit: contain;
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    z-index: 2;
}

/* Writing section */
.gallery-writing {
    align-items: flex-start;
}

.writing-content {
    max-width: 480px;
    min-height: 90vh;
}

.writing-content p {
    margin-top: 0;
    margin-bottom: var(--space-4);
    line-height: 1.4;
}

/* Writing list layout */
.writing-list {
    width: 100%;
}

.writing-list-header,
.writing-row {
    display: grid;
    grid-template-columns: 72px 1fr 300px 56px;
    gap: 1rem;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--text-light);
}

.writing-list-header {
    font-size: var(--font-size-small);
    font-family: var(--font-mono);
    color: var(--text-color);
   border-bottom: 1px solid var(--text-light);
    padding-bottom: 0.4rem;
    margin-bottom: 0;
}

.writing-row {
    color: inherit;
    position: relative;
}

.writing-row:hover {
    background: #f7f7f7;
}

.writing-title a {
    text-decoration: none;
    color: inherit;
}

.writing-title a::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.writing-external {
    display: inline-block;
    font-family: var(--font-mono);
    text-decoration: none !important;
    margin-left: 0.3em;
    vertical-align: middle;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.writing-external:hover {
    color: var(--text-color);
}

.writing-thumb {
    width: 72px;
}

.writing-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.writing-thumb-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #000;
}

.writing-title {
    font-size: var(--font-size-large);
}

.writing-pub,
.writing-year {
    font-size: var(--font-size-small);
    font-family: var(--font-mono);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .writing-list-header,
    .writing-row {
        grid-template-columns: 48px 1fr auto;
    }

    .writing-list-header > :nth-child(3),
    .writing-row .writing-pub {
        display: none;
    }

    .writing-thumb {
        width: 48px;
    }
}

/* Post single — writing and project detail pages */
.post-single {
    padding-top: var(--space-3);
    padding-bottom: var(--space-5);
}

.post-article {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.post-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

@media (min-width: 768px) {
    .post-header,
    .post-content {
        max-width: 70%;
    }
}

.post-title {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.post-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.post-meta-tags{
    line-height: 1;
}

.post-date,
.post-publication {
    color: var(--text-light);
}

.post-external:hover {
    color: var(--text-color);
}

.post-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
}

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

/* Rein in oversized post images on large desktop screens */
@media (min-width: 1024px) {
    .post-images {
        padding-right: 10%;
    }
}



.post-content p {
    margin-bottom: 1.25em;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.post-content img,
.post-body-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: var(--space-3) 0;
}

.post-content h2 {
    font-size: var(--font-size-large);
    font-weight: inherit;
    margin: 1.75em 0 0.5em;
}

.post-content h3 {
    font-size: 1.15rem;
    font-weight: inherit;
    margin: 1.5em 0 0.5em;
}

.post-content h4,
.post-content h5,
.post-content h6 {
    font-size: inherit;
    font-weight: inherit;
    margin: 1.25em 0 0.5em;
}

.post-content a {
    color: inherit;
}

.post-content blockquote, .post-content .highlight {
    margin: 1.75em 0;
    padding: 1.25em;
    background-color: #f5f5f5;
}

.post-content blockquote p {
    margin-bottom: 0;
}

.post-content ul,
.post-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.25em;
}

.post-content li {
    margin-bottom: 0.4em;
}

.post-content hr {
    border: none;
    border-top: 1px solid #e9e9e9;
    margin: 2em 0;
}

.post-content code {
    font-family: var(--font-mono);
    font-size: var(--font-size-small);
    background-color: #f5f5f5;
    padding: 0.1em 0.35em;
}

.post-content pre {
    background-color: #f5f5f5;
    padding: 1.25em;
    overflow-x: auto;
    margin-bottom: 1.25em;
}

.post-content pre code {
    background: none;
    padding: 0;
    font-size: var(--font-size-xsmall);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.25em;
    font-size: var(--font-size-small);
}

.post-content th,
.post-content td {
    text-align: left;
    padding: 0.4em 0.75em;
    border-bottom: 1px solid #e9e9e9;
}

.post-content th {
    font-weight: inherit;
    border-bottom-color: #ccc;
}

.post-content tbody tr:nth-child(even) {
    background-color: #f5f5f5;
}

/* Strip Chroma syntax highlighting — use plain monospace palette */
.post-content .chroma { background: none; color: inherit; }
.post-content .chroma * { color: inherit !important; background: none !important; font-style: normal !important; font-weight: inherit !important; }

.post-back {
    display: inline-block;
    margin-top: var(--space-5);
    font-size: var(--font-size-small);
    color: var(--text-light);
    text-decoration: none;
}

.post-back:hover {
    color: var(--text-color);
}

/* Page layout: sidebar + content columns */
.page-layout {
    padding-top: var(--nav-height);
}

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

.project-index {
    display: none;
}

@media (min-width: 768px) {
    #view-work,
    #view-life {
        max-width: 75vw;
        margin-left: auto;
        margin-right: auto;
    }
}

#view-work,
#view-life {
    padding-top: var(--nav-height);
}

@media (min-width: 768px) {
    :root {
        --sidebar-width: 22rem;
    }

    .page-layout {
        display: flex;
        align-items: flex-start;
    }

    .project-index {
        display: block;
        position: sticky;
        top: var(--nav-height);
        align-self: flex-start;
        width: var(--sidebar-width);
        flex-shrink: 0;
        max-height: calc(100vh - var(--nav-height));
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-top: var(--space-3);
        padding-right: var(--space-4);
    }

    .project-index::-webkit-scrollbar {
        display: none;
    }
}

/* Blog */
.blog-layout {
    padding-top: var(--nav-height);
}

.blog-centered {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-5) var(--space-3);
}

.blog-home {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
    display: flex;
    flex-direction: column;
}

.blog-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-list-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4em 0;
    border-bottom: 1px solid #efefef;
}

.blog-list-item:first-child {
    border-top: 1px solid #efefef;
}

.blog-list-item:hover{
background-color: var(--link-hover);
}


.blog-list-title {
    text-decoration: none;
    color: var(--text-color);
    flex: 1;
    min-width: 0;
}

.blog-list-date, .blog-post-date {
    font-size: var(--font-size-small);
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-post-header {
    margin-bottom: var(--space-4);
}

.blog-post-title {
    margin-bottom: var(--space-1);
}

.blog-post-content {
    max-width: 100%;
}

