.content-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 1.5rem 3rem;
}

/* Page Header */
.content-page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.content-page-header h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.content-page-header p {
    color: #999;
    font-size: 1.1rem;
}

/* Featured Article */
.content-featured {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    display: flex;
    flex-direction: column;
}

.content-featured-body {
    padding: 2rem 2.5rem;
}

.content-featured-label {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

.content-featured-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-featured-excerpt {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-featured-meta {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.content-read-btn {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: #ff0000;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.content-read-btn:hover {
    background: #cc0000;
}

/* Articles Grid */
.content-grid-title {
    font-size: 1.4rem;
    color: #ff0000;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.article-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: #ff0000;
}

.article-card-body {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-date {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
}

.article-card-title {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-card-excerpt {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-read {
    display: inline-block;
    color: #ff0000;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.article-card-read:hover {
    color: #fff;
}

.article-card-read::after {
    content: ' →';
}

/* Empty state */
.content-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

/* Pagination */
.content-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.content-pagination a,
.content-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.content-pagination a {
    background: #1a1a1a;
    color: #ccc;
    border: 1px solid #2a2a2a;
}

.content-pagination a:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.content-pagination span.current {
    background: #ff0000;
    color: #fff;
    border: 1px solid #ff0000;
}

@media (max-width: 768px) {
    .content-page-header h1 {
        font-size: 2rem;
    }

    .content-featured-title {
        font-size: 1.5rem;
    }

    .content-featured-body {
        padding: 1.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}
