.post {
    background: var(--card-bg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.post h2 {
    margin: 0.5rem 0;
    color: var(--primary-green);
}

.tag-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    color: var(--accent-warm);
    font-weight: bold;
}

.gallery-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 4px;
    width: 100%;
    max-width: 100%;
}

.thumbnail {
    overflow: hidden;
    border-radius: 6px;
    background: #e9ecef;
    transition: transform 0.2s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.thumbnail:hover {
    transform: scale(1.02);
}
