@charset "UTF-8";
.feed-container { width: 100%; max-width: 850px; margin: 20px auto; padding: 0 20px; }
.page-title-container { width: 100%; max-width: 850px; margin: 0 auto; padding: 0 20px; }
.page-title { font-size: 32px; font-weight: bold; text-align: left; margin-top: 20px; }
.feed-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; border-bottom: 1px solid #eee; }
.feed-tabs ul { border-bottom: none; margin-bottom: 0; display: flex; list-style: none; padding: 0; }
.feed-actions { display: flex; gap: 10px; }
.action-btn { color: #333; padding: 8px; display: block; }
.action-btn:hover { color: #000; }
.action-btn svg { width: 24px; height: 24px; fill: currentColor; }
.feed-tabs li a { display: inline-block; padding: 10px 20px; text-decoration: none; color: #888; font-weight: bold; }
.feed-tabs li.active a { color: #000; border-bottom: 2px solid #000; }
.filter-bar { display: flex; gap: 10px; margin-bottom: 20px; align-items: center; }
.filter-bar select { padding: 8px 12px; border: 1px solid #ccc; border-radius: 4px; }
.filter-more-btn { margin-left: auto; background: none; border: 1px solid #ccc; border-radius: 4px; padding: 6px; cursor: pointer; }
.filter-more-btn svg { display: block; }
.feed-info-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.content-count { font-size: 14px; color: #555; }
.sort-dropdown { padding: 5px 10px; border: 1px solid #ddd; }
.feed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.feed-item { position: relative; cursor: pointer; border-radius: 8px; overflow: hidden; aspect-ratio: 3 / 4; }
.feed-item a { display: block; width: 100%; height: 100%; }
.feed-item img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 0.3s ease; }
.feed-item:hover img { transform: scale(1.05); }
.feed-item .item-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); color: white; padding: 20px 10px 10px 10px; opacity: 0; transition: opacity 0.3s; font-weight: bold; }
.feed-item:hover .item-overlay { opacity: 1; }

.feed-grid .no-feeds {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    color: #868e96;
    font-size: 1rem;
}

.feed-grid .no-feeds p {
    margin: 0;
}