/* Blog List Page Specific */
.blog-list-page {
    min-height: 100vh;
    padding-top: 120px;
}

.blog-list-page .section-subtitle {
    font-size: 1.125rem;
    color: #999;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Tag Display */
.tag-display {
    margin: 3rem 0 2rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.selected-tag {
    display: inline-block;
    padding: 10px 24px;
    background: #4169E1;
    border: 1px solid #4169E1;
    border-radius: 50px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}

.clear-tag {
    padding: 8px 16px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.clear-tag:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 100, 100, 0.5);
    color: #fff;
}

/* Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #4169E1;
    border-color: #4169E1;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: #4169E1;
    border-color: #4169E1;
    color: #fff;
}

/* Tags Section */
.tags-section {
    margin: 40px 0 60px;
    text-align: center;
}

.tags-section h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.25px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: capitalize;
}

.tag-item:hover {
    background: rgba(65, 105, 225, 0.2);
    border-color: rgba(65, 105, 225, 0.5);
    color: #4169E1;
    transform: translateY(-1px);
}

.tag-item.active {
    background: linear-gradient(135deg, #4169E1, #6B73FF);
    border-color: #4169E1;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}
