/* Feed Container */
.feed-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 32px 16px;
}

/* Header Section */
.feed-header {
    margin-bottom: 28px;
}

.feed-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #f3f4f6;
    letter-spacing: -0.2px;
}

.feed-header p {
    color: #9ca3af;
    margin: 0;
    font-size: 14px;
}

/* Article Grid */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

/* Dark Slate Cards */
.feed-card {
    background: #2e323e;
    border: 1px solid #3b404f;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.feed-card:hover {
    transform: translateY(-2px);
    border-color: #4f566b;
}

.feed-card-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    background-color: #262933;
}

/* Card Content Area */
.feed-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Card Meta & Badges */
.feed-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.feed-badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.25);
    padding: 1px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.feed-card-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.feed-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px 0;
}

.feed-card-title a {
    text-decoration: none;
    color: #f3f4f6;
    transition: color 0.15s ease;
}

.feed-card-title a:hover {
    color: #38bdf8;
}

.feed-card-summary {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* Empty State */
.feed-empty {
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
    padding: 48px 0;
}

/* Pagination Bar */
.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #2e323e;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 16px;
    background: #2e323e;
    border: 1px solid #3b404f;
    border-radius: 4px;
    color: #f3f4f6;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.page-link:hover {
    background: #3b404f;
    border-color: #4f566b;
    color: #ffffff;
}

.page-numbers {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
}