<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * Blog/Website Theme CSS
 * Table of Contents:
 * 1. CSS Variables &amp; Reset
 * 2. Base Styles
 * 3. Layout &amp; Container
 * 4. Header &amp; Navigation
 * 5. Sidebar
 * 6. Content &amp; Posts
 * 7. Post Elements (tags, categories)
 * 8. Archives
 * 9. Embeds &amp; Media
 * 10. Typography Elements
 * 11. Footer
 * 12. Lightbox
 * 13. Responsive Styles
 */

/* ==========================================
   1. CSS Variables &amp; Reset
   ========================================== */
:root {
    /* Colors */
    --accent-color: #851C29;
    --background-color: #FFEACA;
    --text-color: #232833;

    /* Shades */
    --light-shade: #F5B85C;
    --medium-shade: #465064;
    --dark-shade: #323C50;
}

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

/* ==========================================
   2. Base Styles
   ========================================== */
html {
    overflow-y: scroll;
    height: 100%;
    font: 100%/1.5 sans-serif;
    word-wrap: break-word;
    margin: 0 auto;
}

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

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

a:hover {
    text-decoration: underline;
}

/* ==========================================
   3. Layout &amp; Container
   ========================================== */
.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--background-color);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    display: block;
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Clearfix for floated elements */
.clearfix {
    clear: both;
    width: 100%;
    display: block;
}

/* ==========================================
   4. Header &amp; Navigation
   ========================================== */
header {
    padding: 2em;
    padding-bottom: 1em;
}

header h1 a {
    color: var(--dark-shade);
    text-decoration: none;
}

header .tagline {
    color: var(--medium-shade);
    font-size: 1.2rem;
    font-style: italic;
}

.header-separator {
    height: 28px;
    width: 100%;
    background-color: var(--accent-color);
    --mask:
      radial-gradient(10.96px at 50% calc(100% + 5.6px),#0000 calc(99% - 4px),#000 calc(101% - 4px) 99%,#0000 101%) calc(50% - 14px) calc(50% - 5.5px + .5px)/28px 11px repeat-x,
      radial-gradient(10.96px at 50% -5.6px,#0000 calc(99% - 4px),#000 calc(101% - 4px) 99%,#0000 101%) 50% calc(50% + 5.5px)/28px 11px repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    margin-top: 2em;
}

/* Hamburger Menu (Mobile) */
.hamburger-menu {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-shade);
    margin: 5px 0;
    transition: 0.3s;
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* ==========================================
   5. Sidebar
   ========================================== */
aside.sidebar {
    width: 100%;
    padding: 1.5em;
    box-sizing: border-box;
    background-color: var(--background-color);
}

/* Mobile Navigation in Sidebar */
.mobile-nav {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--light-shade);
    padding-bottom: 20px;
}

.sidebar-content {
    padding-top: 5px;
}

.sidebar-nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    padding: 0;
}

.sidebar-nav li {
    
}

.sidebar-nav a {
    display: block;
    padding: 8px 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-shade);
}

aside h2, 
.sidebar h2 {
    margin-bottom: 0.3em;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-shade);
}

.sidebar-links {
    margin-bottom: 1.5em;
}

.sidebar-text {
    margin-bottom: 1.5em;
}

aside .sidebar-links ul, 
.sidebar .sidebar-links ul {
    font-size: 0.8em;
    margin-bottom: 15px;
    padding-left: 1.5em;
    font-size: 0.8em;
}

aside .sidebar-text div, 
.sidebar .sidebar-text div {
    font-size: 0.8em;
    margin-bottom: 15px;
}

aside .sidebar-text div p, 
.sidebar .sidebar-text div p {
    margin-bottom: 15px;
}


/* ==========================================
   6. Content &amp; Posts
   ========================================== */
main {
    display: flex;
    flex-direction: column;
    padding: 2em;
    overflow: hidden;
    margin-bottom: 30px;
    flex: 1;
}

.archive-separator {
    height: 1px;
    width: 100%;
    background-color: var(--light-shade);
    margin-top: 2em;
    margin-bottom: 2em;
}

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

.post-date {
    color: var(--medium-shade);
    font-size: 0.9em;
    display: inline-block;
}

.post-date a, 
.post-author a {
    color: var(--medium-shade);
    text-decoration: none;
}

.post-date a:hover, 
.post-author a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.post-author {
    color: var(--medium-shade);
    font-size: 0.9em;
    display: inline-block;
}

.post-summary p, 
.post-content p {
    margin-top: 1.5em;
}

.post-meta {
    margin-bottom: 20px;
}

.post-content {
    line-height: 1.8;
}

.post-separator {
    height: 28px;
    width: 100%;
    background-color: var(--accent-color);
    --mask:
      radial-gradient(10.96px at 50% calc(100% + 5.6px),#0000 calc(99% - 4px),#000 calc(101% - 4px) 99%,#0000 101%) calc(50% - 14px) calc(50% - 5.5px + .5px)/28px 11px repeat-x,
      radial-gradient(10.96px at 50% -5.6px,#0000 calc(99% - 4px),#000 calc(101% - 4px) 99%,#0000 101%) 50% calc(50% + 5.5px)/28px 11px repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    margin-top: 3em;
    margin-bottom: 3em;
}

/* ==========================================
   7. Post Elements (tags, categories)
   ========================================== */
/* Tags */
.post-tags, 
.post-category {
    margin-top: 3em;
    font-size: 0.6em;
}

.post-tags {
    display: inline-block;
}

.tag {
    display: inline-block;
    background-color: var(--background-color);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 3px 8px;
    border-radius: 1em;
}

.tag:hover {
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
}

.tag-list, 
.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tag-item, 
.category-item {
    background-color: var(--light-shade);
    padding: 15px;
    border-radius: 4px;
}

.tag-count, 
.category-count {
    font-size: 0.8rem;
    color: var(--medium-shade);
    font-weight: normal;
}

.tag-meta, 
.category-meta {
    color: var(--medium-shade);
    font-style: italic;
}

/* Categories */
.post-category {
    display: inline-block;
}

.post-category a {
    display: inline-block;
    color: white;
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 3px 8px;
    border-radius: 1em;
}

.post-category a:hover {
    background-color: var(--background-color);
    color: var(--accent-color);
    text-decoration: none;
}

.category-description {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ==========================================
   8. Archives
   ========================================== */
.archive-year {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0px 0 10px;
    color: var(--dark-shade);
}

.archive-month {
    font-size: 1.2rem;
    margin: 20px 0 10px;
    color: var(--dark-shade);
}

.archive-month a {
    color: inherit;
    text-decoration: none;
}

.archive-month a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.archive-posts {
    list-style: none;
    padding-left: 0;
}

.archive-date {
    color: var(--medium-shade);
    display: inline-block;
    width: 70px;
}

/* Monthly Archive Pages */
.archive-meta {
    color: var(--medium-shade);
    font-style: italic;
}

.month-navigation,
.pagination-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--light-shade);
}

.month-navigation .nav-previous,
.month-navigation .nav-next,
.pagination-navigation .nav-previous,
.pagination-navigation .nav-next {
    flex: 1;
}

.month-navigation .nav-next,
.pagination-navigation .nav-next {
    text-align: right;
}

.month-navigation a,
.pagination-navigation a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.month-navigation a:hover,
.pagination-navigation a:hover {
    text-decoration: underline;
}

/* ==========================================
   9. Embeds &amp; Media
   ========================================== */
.embed {
    margin: 1.5em 0;
    overflow: hidden;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

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

.link-embed {
    border: 1px solid var(--light-shade);
    border-radius: 8px;
    overflow: hidden;
}

.link-embed a {
    display: grid;
    grid-template-areas: 
        "image title"
        "image description"
        "image url";
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto 1fr auto;
    padding: 0;
    color: var(--text-color);
    text-decoration: none;
}

.link-embed a:hover {
    background-color: var(--light-shade);
    text-decoration: none;
}

.link-title {
    grid-area: title;
    font-weight: bold;
    padding: 10px 10px 5px 10px;
}

.link-description {
    grid-area: description;
    font-size: 0.9em;
    padding: 0 10px;
    color: var(--dark-shade);
}

.link-url {
    grid-area: url;
    font-size: 0.8em;
    color: var(--medium-shade);
    padding: 5px 10px 10px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.link-image {
    grid-area: image;
    height: 100%;
}

.link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   10. Typography Elements
   ========================================== */
blockquote {
    color: var(--dark-shade);
    font-style: italic;
    border-left: 2px solid var(--accent-color);
    padding-left: 1.3em;
}

/* ==========================================
   11. Footer
   ========================================== */
footer {
    text-align: center;
    padding: 2em;
    color: var(--medium-shade);
    font-size: 0.9rem;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid var(--light-shade);
}

/* ==========================================
   12. Lightbox
   ========================================== */

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow: hidden;
}

#lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.lightbox-prev, .lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 20px;
}

/* Image gallery styles */
.embed.image-embed {
    margin: 20px 0;
}

.embed.image-embed img.embed-image {
    max-width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 8px;
}

/* Style for the single image display - full width */
.embed.image-embed.single-image {
    width: 100%;
    margin: 20px 0;
    text-align: center;
}

.embed.image-embed.single-image a {
    display: block;
    width: 100%;
}

.embed.image-embed.single-image img.embed-image {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin: 0 auto;
}

.gallery-container {
    position: relative;
    width: 100%;
    /* Create fixed aspect ratio container using padding-bottom technique */
    padding-bottom: 75%; /* 4:3 aspect ratio (75% = 3/4) */
    overflow: hidden;
}

.gallery-slide {
    display: none;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gallery-slide a {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Maintains aspect ratio while fitting in the container */
    display: block;
}

.gallery-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.gallery-prev, .gallery-next {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    margin: 0 10px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
}

.gallery-dot.active {
    background-color: var(--accent-color);
}

/* ==========================================
   13. Responsive Styles
   ========================================== */
/* Desktop (&gt; 900px) */
@media (min-width: 901px) {
    body {
        background-color: var(--background-color);
        font-size: 115%;
    }
    
    .container {
        background-color: var(--background-color);
    }
    
    aside.sidebar {
        float: right;
        width: 30%;
        padding: 1.5em;
        margin-left: 1.5em;
        position: static;
        height: auto;
        right: auto;
        top: auto;
    }
    
    main {
        overflow: auto;
        margin-right: 0;
    }
    
    .mobile-sidebar-overlay {
        display: none !important;
    }
    
    .hamburger-menu {
        display: none !important;
    }
}

/* Mobile (â‰¤ 900px) */
@media (max-width: 900px) {            
    body {
        background-color: var(--background-color);
    }
    
    .container {
        padding: 0.5em;
        position: relative;
        overflow-x: hidden;
    }

    header {
        padding: 1em;
    }

    footer {
        padding: 1em;
    }

    /* Hide desktop nav on mobile */
    nav:not(.sidebar-nav):not(.month-navigation):not(.pagination-navigation) {
        display: none;
    }
    
    /* Show mobile nav in sidebar */
    .mobile-nav {
        display: block;
    }
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1000;
    }
    
    /* Transform hamburger to X when sidebar is open */
    body.sidebar-open .hamburger-icon span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    body.sidebar-open .hamburger-icon span:nth-child(2) {
        opacity: 0;
    }
    
    body.sidebar-open .hamburger-icon span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Show overlay when sidebar is open */
    body.sidebar-open .mobile-sidebar-overlay {
        display: block;
    }
    
    /* Mobile sidebar styling */
    aside.sidebar {
        position: fixed;
        top: 0;
        right: -85%; /* Start offscreen */
        width: 85%;
        height: 100%;
        background-color: var(--background-color);
        padding: 25px 20px;
        padding-top: 30px;
        margin: 0;
        float: none;
        border: none;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    }
    
    body.sidebar-open .sidebar {
        right: 0; /* Slide in from right */
    }


    aside .sidebar-text div, 
    .sidebar .sidebar-text div {
        font-size: 1em;
        margin-bottom: 15px;
    }

    aside .sidebar-links ul, 
    .sidebar .sidebar-links ul {
        font-size: 1em;
    }

    
    /* Hide regular aside on mobile */
    aside:not(.sidebar) {
        display: none;
    }
    
    .tag-list, .category-list {
        grid-template-columns: 1fr;
    }
    
    /* Mobile link embeds */
    .link-embed a {
        grid-template-areas: 
            "image"
            "title"
            "description"
            "url";
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
    }
    
    .link-image {
        height: 200px;
    }

    main {
        padding-left: 1em;
        padding-right: 1em;
        width: 100%; /* Full width when sidebar is hidden */
    }
    
    /* Mobile pagination styling */
    .month-navigation,
    .pagination-navigation {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .month-navigation .nav-previous,
    .month-navigation .nav-next,
    .pagination-navigation .nav-previous,
    .pagination-navigation .nav-next {
        text-align: center;
    }
}</pre></body></html>