/* Frontend Styles */
.notion-blog-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.notion-blog-item {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.notion-blog-image {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.notion-blog-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.notion-blog-item:hover .notion-blog-image img {
    transform: scale(1.05);
}

.notion-blog-item h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #333;
}

.notion-blog-excerpt {
    color: #444;
    line-height: 1.6;
}

.notion-blog-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
} 