@charset "utf-8";
/* 分类页css */
.eddie-category-container {
    max-width:1200px;
    margin-left: auto;
    margin-right: auto;
    margin-top:30px;
    margin-bottom: 30px;

}
.eddie-category-grid-container{
    width:100%;
    display: grid;
    margin-top:20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.eddie-category-grid-item {
    width: 100%;
}

.eddie-category-post-thumbnail {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.eddie-category-post-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.eddie-category-post-title {
    text-align: center;
    padding: 20px;
    font-weight: 600;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    max-width: 90%;
    color:#000;
}