/* Collection Display Type Styles */

/* Card hover effect */
.collection-card {
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.collection-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Card image */
.collection-card-img {
    height: 180px;
    object-fit: cover;
}

/* Placeholder for items without cover */
.collection-card-placeholder {
    height: 180px;
    background: var(--bs-tertiary-bg, #f8f9fa);
}

/* Preview text truncation */
.collection-card-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Filter pills */
.collection-filter .btn {
    white-space: nowrap;
}
.collection-filter .badge {
    font-size: 0.7em;
}

/* Article layout (item view) */
.collection-article .collection-cover {
    max-height: 400px;
    object-fit: cover;
    border-radius: 0.375rem;
}

.collection-article .collection-meta {
    color: var(--bs-secondary-color, #6c757d);
    font-size: 0.9rem;
}

.collection-article .collection-tags .badge {
    font-weight: normal;
}

/* Responsive */
@media (max-width: 768px) {
    .collection-card-img {
        height: 140px;
    }
}
