:root {
    --background: #F5F1E8;        /* warm cream */
    --primary: #8B2635;           /* burgundy red */
    --secondary: #C19A6B;         /* camel/tan */
    --tertiary: #4A5D4F;          /* forest green */
    --accent: #D4A373;            /* warm gold */
    --text-color: #2C1810;        /* dark brown */
    --black: #1A0F0A;
    --white: #FFFBF5;             /* warm white */
    --alert: #C1483D;             /* terra cotta */
    --alert-accent: #E8997A;      /* light coral */
    --note: #6B8E7F;              /* sage */
    --note-accent: #A8C5B8;       /* mint sage */
}

.post-preview {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.post-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(44, 24, 16, 0.15);
}

body {
    background: var(--background);
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%235C3A21' fill-opacity='0.04'%3E%3Crect x='48' y='15' width='4' height='4'/%3E%3Crect x='40' y='23' width='4' height='4'/%3E%3Crect x='48' y='23' width='4' height='4'/%3E%3Crect x='56' y='23' width='4' height='4'/%3E%3Crect x='32' y='31' width='4' height='4'/%3E%3Crect x='48' y='31' width='4' height='4'/%3E%3Crect x='64' y='31' width='4' height='4'/%3E%3Crect x='40' y='39' width='4' height='4'/%3E%3Crect x='56' y='39' width='4' height='4'/%3E%3Crect x='48' y='47' width='4' height='4'/%3E%3Crect x='44' y='55' width='4' height='4'/%3E%3Crect x='52' y='55' width='4' height='4'/%3E%3Crect x='40' y='63' width='4' height='4'/%3E%3Crect x='48' y='63' width='4' height='4'/%3E%3Crect x='56' y='63' width='4' height='4'/%3E%3Crect x='36' y='71' width='4' height='4'/%3E%3Crect x='60' y='71' width='4' height='4'/%3E%3C/g%3E%3C/svg%3E");
    
    pointer-events: none;
    z-index: -1;
}

.e-content img {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid var(--glass-border);
    display: block;
    margin: 16px 0;
    box-shadow: 0 4px 12px var(--glass-shadow);
}

@media (max-width: 768px) {
    .e-content img {
        max-width: 80px;
        max-height: 80px;
    }
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Spectral', Georgia, serif;
    color: var(--tertiary);
    font-weight: 600;
}

.e-content {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: clamp(15px, 2vw, 17px);
}

.post-date-wrapper {
    font-size: clamp(12px, 1.5vw, 14px);
    color: var(--primary);
    opacity: 0.8;
}

.post-date-wrapper a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.post-date-wrapper a:hover {
    opacity: 0.7;
}



