.mfti-page-title { margin: 0 0 20px; }

.mfti-sort-bar {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.mfti-sort-label { font-weight: 600; margin-right: 6px; }
.mfti-sort-link {
    padding: 6px 14px;
    border-radius: 20px;
    background: #f1f1f1;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.mfti-sort-link.active, .mfti-sort-link:hover { background: #222; color: #fff; }

.mfti-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 900px) {
    .mfti-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .mfti-grid { grid-template-columns: 1fr; }
}
.mfti-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    transition: transform .15s ease;
}
.mfti-card:hover { transform: translateY(-3px); }
.mfti-cover { aspect-ratio: 16 / 9; background: #333; overflow: hidden; }
.mfti-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mfti-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: #666;
}
.mfti-info { padding: 8px 10px; }
.mfti-name {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mfti-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}
.mfti-pagination { margin-top: 24px; display: flex; gap: 6px; flex-wrap: wrap; }
.mfti-pagination a { padding: 6px 12px; background: #f1f1f1; border-radius: 4px; text-decoration: none; color: #333; }
.mfti-pagination a.active { background: #222; color: #fff; }
