/* ============================================
   CUSTOM THUMBNAIL STYLES
   Added for TP, Quiz, Tuto custom post types
   ============================================ */

/* Thumbnails styles */
.post-thumbnail {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-thumbnail-link:hover .post-thumbnail img {
    transform: scale(1.05);
}

/* Post card in archives */
.post-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.post-card .post-thumbnail {
    margin-bottom: 0;
    border-radius: 0;
}

.post-card .post-content {
    padding: 1.5rem;
}