/*
Theme Name: sallie
Theme URI: https://sallieillustrations.com/
Template: lightning
Description: sallie web
Author:
Tags:
Version: 1.0.0
*/


/* カテゴリーページ 3列グリッド */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-in-out;  /* ←この1行を追加 */
}

/* フェードインアニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.grid-item {
    text-align: center;
}

.grid-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.grid-item h3 {
    margin-top: 15px;
    font-size: 1.1rem;
}

.grid-item .post-date {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.grid-item a {
    text-decoration: none;
    color: inherit;
}

.grid-item a:hover img {
    opacity: 0.8;
    transition: opacity 0.3s;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}