/* Archive Pages CSS - Category, Search, Tag */

/* Breadcrumb Navigasyon - Minimal ve Profesyonel Stil */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
    margin-bottom: 10px;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.5;
}

.breadcrumb-home {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
}

.breadcrumb-home:hover {
    color: var(--primary-color, #e74c3c);
}

.breadcrumb-separator {
    color: #bdc3c7;
    font-size: 13px;
    user-select: none;
    margin: 0 4px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.breadcrumb-category {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
}

.breadcrumb-category:hover {
    color: var(--primary-color, #e74c3c);
}

.breadcrumb-current {
    color: #95a5a6;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
}

/* Genel Layout */
.category-page,
.search-page,
.tag-page {
    padding: 15px 20px 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Category Featured Section (Tam Genişlik - 1 Büyük + 3 Küçük) */
.category-featured-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

/* Büyük Kart */
.featured-big-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 525px;
}

.featured-big-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.featured-big-image {
    position: relative;
    width: 100%;
    height: 525px;
    overflow: hidden;
    background: #f5f5f5;
}

.featured-big-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-big-card:hover .featured-big-image img {
    transform: scale(1.05);
}

.featured-big-image .category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary-color, #e74c3c), var(--dark-accent-hover, #c0392b));
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.featured-big-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.featured-big-title {
    margin: 0 0 12px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.featured-big-title a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-big-title a:hover {
    color: var(--primary-color, #e74c3c);
}

.featured-big-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.featured-big-meta .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Küçük Kartlar */
.featured-small-cards {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
}

.featured-small-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 120px;
}

.featured-small-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.featured-small-image {
    flex-shrink: 0;
    width: 140px;
    height: 120px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.featured-small-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-small-card:hover .featured-small-image img {
    transform: scale(1.1);
}

.featured-small-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-small-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.featured-small-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-small-title a:hover {
    color: var(--primary-color, #e74c3c);
}

.featured-small-meta {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #95a5a6;
}

.featured-small-meta .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.page-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* Page Header */
.page-header {
    margin-bottom: 30px;
    padding-bottom: 0;
    margin-top: 0;
    border-bottom: none;
}

.category-page .page-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 0;
    border-bottom: none !important;
    position: relative;
}

.category-page .page-title {
    flex-shrink: 0;
    margin: 0;
}

.category-page .page-header::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--primary-color, #e74c3c);
}

.search-page .page-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
    margin-bottom: 30px;
}

.search-page .page-title {
    flex-shrink: 0;
    margin: 0;
}

.search-page .page-header::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--primary-color, #3498db);
}

.tag-page .page-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 0;
    border-bottom: none;
    position: relative;
    margin-bottom: 30px;
}

.tag-page .page-title {
    flex-shrink: 0;
    margin: 0;
}

.tag-page .page-header::after {
    content: '';
    flex: 1;
    height: 3px;
    background: var(--primary-color, #667eea);
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.tag-page .page-title {
    color: var(--primary-color, #667eea);
}


.search-term {
    color: var(--primary-color, #3498db);
}


.search-results-count {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0;
}


/* Search Form */
.search-form-wrapper {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

.search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.search-field:focus {
    outline: none;
    border-color: var(--primary-color, #3498db);
}

.search-submit {
    padding: 12px 30px;
    background: var(--primary-color, #3498db);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: var(--dark-accent-hover, #2980b9);
}

.search-submit .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.post-thumbnail {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    flex-shrink: 0;
}

.post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Görsel yoksa placeholder */
.post-thumbnail:not(:has(img))::after {
    content: '📰';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.3;
}

.post-card:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #95a5a6;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Post Views Display - Archive Pages */
.post-card-meta .post-views,
.post-meta .post-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post-card-meta .post-views-display,
.post-meta .post-views-display {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #95a5a6;
}

.post-card-meta .post-views-display svg,
.post-meta .post-views-display svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: currentColor;
}

.post-card-meta .post-views-display span,
.post-meta .post-views-display span {
    font-weight: 600;
}

.post-meta .post-category {
    background: linear-gradient(135deg, var(--primary-color, #e74c3c), var(--dark-accent-hover, #c0392b));
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.post-meta .post-category .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.post-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-page .post-title a:hover {
    color: var(--primary-color, #e74c3c);
}

.search-page .post-title a:hover {
    color: var(--primary-color, #3498db);
}

.tag-page .post-title a:hover {
    color: var(--primary-color, #667eea);
}

.post-excerpt {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 63px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    background: transparent;
}

.category-page .read-more {
    color: var(--primary-color, #e74c3c);
    border: 2px solid var(--primary-color, #e74c3c);
}

.search-page .read-more {
    color: var(--primary-color, #3498db);
    border: 2px solid var(--primary-color, #3498db);
}

.tag-page .read-more {
    color: var(--primary-color, #667eea);
    border: 2px solid var(--primary-color, #667eea);
}

.category-page .read-more:hover {
    background: var(--primary-color, #e74c3c);
    color: #fff;
    gap: 12px;
    transform: translateX(5px);
}

.search-page .read-more:hover {
    background: var(--primary-color, #3498db);
    color: #fff;
    gap: 12px;
    transform: translateX(5px);
}

.tag-page .read-more:hover {
    background: var(--primary-color, #667eea);
    color: #fff;
    gap: 12px;
    transform: translateX(5px);
}

.read-more .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* No Results / No Posts */
.no-posts,
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.no-results {
    padding: 80px 20px;
}

.no-results-icon {
    font-size: 80px;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.no-results-icon .dashicons {
    width: 80px;
    height: 80px;
    font-size: 80px;
}

.no-results h2 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.no-results p,
.no-posts p {
    font-size: 16px;
    color: #7f8c8d;
    margin: 0 0 10px 0;
}

.no-posts p {
    font-size: 18px;
    margin: 0;
}

.search-suggestions {
    font-size: 14px !important;
    color: #95a5a6 !important;
}

/* Pagination */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
}

.pagination .dots {
    border: none;
    background: transparent;
    padding: 0;
    min-width: auto;
}

.category-page .pagination a:hover {
    background: var(--primary-color, #e74c3c);
    color: #fff;
    border-color: var(--primary-color, #e74c3c);
}

.category-page .pagination .current {
    background: var(--primary-color, #e74c3c);
    color: #fff;
    border-color: var(--primary-color, #e74c3c);
}

.search-page .pagination a:hover {
    background: var(--primary-color, #3498db);
    color: #fff;
    border-color: var(--primary-color, #3498db);
}

.search-page .pagination .current {
    background: var(--primary-color, #3498db);
    color: #fff;
    border-color: var(--primary-color, #3498db);
}

.tag-page .pagination a:hover {
    background: var(--primary-color, #667eea);
    color: #fff;
    border-color: var(--primary-color, #667eea);
}

.tag-page .pagination .current {
    background: var(--primary-color, #667eea);
    color: #fff;
    border-color: var(--primary-color, #667eea);
}

/* ========================================
   SIDEBAR - REMOVED
   Tüm sidebar stilleri sidebar.css dosyasında
   Archive sayfaları sidebar.css kullanır
   ======================================== */

/* Responsive */
@media (max-width: 992px) {
    .page-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: 2;
    }
    
    .category-featured-section {
        grid-template-columns: 1fr;
    }
    
    .featured-big-card {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .category-page,
    .search-page,
    .tag-page {
        padding: 15px 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .page-layout {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .category-featured-section {
        gap: 15px;
        margin-bottom: 30px;
        max-width: 100%;
    }
    
    .featured-big-card {
        height: 400px;
        max-width: 100%;
    }
    
    .featured-big-image {
        height: 400px;
    }
    
    .featured-small-cards {
        gap: 12px;
    }
    
    .featured-small-card {
        height: 110px;
        max-width: 100%;
    }
    
    .featured-small-image {
        width: 120px;
        height: 110px;
        position: relative;
        overflow: hidden;
    }
    
    .featured-small-image img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .featured-small-content {
        padding: 12px;
    }
    
    .featured-small-title {
        font-size: 14px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .post-card {
        max-width: 100%;
        overflow: hidden;
    }
    
    .post-thumbnail {
        padding-top: 56.25%;
    }
    
    .post-thumbnail img {
        max-width: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .post-content {
        padding: 15px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .post-excerpt {
        flex: 1;
    }
    
    .pagination {
        margin-top: 30px;
    }
    
    .pagination .nav-links {
        gap: 6px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
    
    .post-title {
        font-size: 18px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .page-title {
        font-size: 24px;
        word-wrap: break-word;
    }
    
    .search-page .page-title {
        font-size: 22px;
    }
    
    .search-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .search-field {
        width: 100%;
    }
    
    .tag-icon {
        font-size: 36px;
    }
    
    .tag-icon .dashicons {
        width: 36px;
        height: 36px;
        font-size: 36px;
    }
    
    .page-header {
        padding-bottom: 10px;
        margin-bottom: 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .tag-page .page-header {
        padding: 0;
        margin-bottom: 15px;
    }
    
    .featured-big-title {
        font-size: 20px;
        word-wrap: break-word;
    }
    
    .featured-big-content {
        padding: 15px;
    }
    
    .breadcrumb-nav {
        flex-wrap: nowrap;
        padding: 10px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
    }
    
    .breadcrumb-nav::-webkit-scrollbar {
        display: none;
    }
    
    .breadcrumb-home,
    .breadcrumb-category,
    .breadcrumb-current {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ========================================
   DARK MODE - ARCHIVE PAGES
   ======================================== */

/* Ana Container ve Genel Background */
.dark-mode .container {
    background: #0f0f0f;
}

.dark-mode .category-page,
.dark-mode .search-page,
.dark-mode .tag-page {
    background: #0f0f0f;
}

.dark-mode .content-area {
    background: #0f0f0f;
}

/* Archive Header */
.dark-mode .archive-header {
    background: #1a1a1a;
    border-color: #333;
}

.dark-mode .archive-title {
    color: #ffffff !important;
}

.dark-mode .archive-description {
    color: #b0b0b0;
}

.dark-mode .archive-posts {
    background: #0f0f0f;
}

/* Breadcrumb */
.dark-mode .breadcrumb-nav {
    color: #999;
}

.dark-mode .breadcrumb-home,
.dark-mode .breadcrumb-category {
    color: #999;
}

.dark-mode .breadcrumb-home:hover,
.dark-mode .breadcrumb-category:hover {
    color: var(--primary-color, #e74c3c);
}

.dark-mode .breadcrumb-separator {
    color: #666;
}

.dark-mode .breadcrumb-current {
    color: #ffffff;
}

/* Featured Big Card */
.dark-mode .featured-big-card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.dark-mode .featured-big-image {
    background: #2a2a2a;
}

.dark-mode .featured-big-title a {
    color: #ffffff;
}

.dark-mode .featured-big-title a:hover {
    color: var(--primary-color, #e74c3c);
}

.dark-mode .featured-big-meta {
    color: rgba(255,255,255,0.9);
}

/* Featured Small Cards */
.dark-mode .featured-small-card {
    background: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.dark-mode .featured-small-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.dark-mode .featured-small-title a {
    color: #ffffff;
}

.dark-mode .featured-small-title a:hover {
    color: var(--primary-color, #e74c3c);
}

.dark-mode .featured-small-meta {
    color: #999;
}

.dark-mode .page-title {
    color: #ffffff;
}

.dark-mode .search-term {
    color: var(--primary-color, #3498db);
}

.dark-mode .search-results-count {
    color: #999;
}

.dark-mode .search-form-wrapper {
    background: #1f1f1f;
}

.dark-mode .search-field {
    background: #2a2a2a;
    border-color: #444;
    color: #ffffff;
}

.dark-mode .search-field:focus {
    border-color: var(--primary-color, #3498db);
}

/* Post Cards - Detaylı */
.dark-mode .post-card {
    background: #1a1a1a !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border-top-color: var(--primary-color, #e74c3c) !important;
}

.dark-mode .post-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.dark-mode .post-thumbnail {
    background: linear-gradient(135deg, #2a2a2a, #1f1f1f);
}

.dark-mode .post-card-image {
    background: #2a2a2a;
}

.dark-mode .post-card-image .no-image-placeholder {
    background: #2a2a2a;
}

.dark-mode .post-content {
    background: #1a1a1a !important;
    color: #d0d0d0;
}

.dark-mode .post-card-content {
    background: #1a1a1a !important;
    color: #d0d0d0;
}

.dark-mode .post-card-title a {
    color: #ffffff !important;
}

.dark-mode .post-card-title a:hover {
    color: var(--primary-color, #e74c3c) !important;
}

.dark-mode .post-card-excerpt {
    color: #b0b0b0 !important;
}

.dark-mode .post-meta {
    color: #999 !important;
}

.dark-mode .post-card-meta {
    color: #999 !important;
}

.dark-mode .post-card-meta .post-date,
.dark-mode .post-card-meta .post-author,
.dark-mode .post-card-meta .post-views {
    color: #999 !important;
}

.dark-mode .post-card-category .category-badge {
    background: var(--primary-color, #e74c3c) !important;
    color: #ffffff !important;
}

.dark-mode .post-card-meta .post-views-display,
.dark-mode .post-meta .post-views-display {
    color: #999;
}

.dark-mode .post-title a {
    color: #ffffff;
}

.dark-mode .category-page .post-title a:hover {
    color: var(--primary-color, #e74c3c);
}

.dark-mode .search-page .post-title a:hover {
    color: var(--primary-color, #3498db);
}

.dark-mode .tag-page .post-title a:hover {
    color: var(--primary-color, #667eea);
}

.dark-mode .post-excerpt {
    color: #b0b0b0 !important;
}

/* Main Content */
.dark-mode .main-content {
    background: #0f0f0f;
}

/* Page Layout */
.dark-mode .page-layout {
    background: #0f0f0f;
}

.dark-mode .category-page .read-more {
    color: var(--primary-color, #e74c3c);
    border-color: var(--primary-color, #e74c3c);
}

.dark-mode .search-page .read-more {
    color: var(--primary-color, #3498db);
    border-color: var(--primary-color, #3498db);
}

.dark-mode .tag-page .read-more {
    color: var(--primary-color, #667eea);
    border-color: var(--primary-color, #667eea);
}

.dark-mode .category-page .read-more:hover {
    background: var(--primary-color, #e74c3c);
    color: #fff;
}

.dark-mode .search-page .read-more:hover {
    background: var(--primary-color, #3498db);
    color: #fff;
}

.dark-mode .tag-page .read-more:hover {
    background: var(--primary-color, #667eea);
    color: #fff;
}

.dark-mode .no-posts,
.dark-mode .no-results {
    background: #1f1f1f;
}

.dark-mode .no-results-icon {
    color: #666;
}

.dark-mode .no-results h2 {
    color: #ffffff;
}

.dark-mode .no-results p,
.dark-mode .no-posts p {
    color: #999;
}

.dark-mode .search-suggestions {
    color: #999 !important;
}

.dark-mode .pagination a,
.dark-mode .pagination span {
    background: #1a1a1a;
    border-color: #444;
    color: #ffffff;
}

.dark-mode .category-page .pagination a:hover {
    background: var(--primary-color, #e74c3c);
    color: #fff;
    border-color: var(--primary-color, #e74c3c);
}

.dark-mode .category-page .pagination .current {
    background: var(--primary-color, #e74c3c);
    color: #fff;
    border-color: var(--primary-color, #e74c3c);
}

.dark-mode .search-page .pagination a:hover {
    background: var(--primary-color, #3498db);
    color: #fff;
    border-color: var(--primary-color, #3498db);
}

.dark-mode .search-page .pagination .current {
    background: var(--primary-color, #3498db);
    color: #fff;
    border-color: var(--primary-color, #3498db);
}

.dark-mode .tag-page .pagination a:hover {
    background: var(--primary-color, #667eea);
    color: #fff;
    border-color: var(--primary-color, #667eea);
}

.dark-mode .tag-page .pagination .current {
    background: var(--primary-color, #667eea);
    color: #fff;
    border-color: var(--primary-color, #667eea);
}

@media (max-width: 480px) {
    .category-page,
    .search-page,
    .tag-page {
        padding: 15px 10px;
    }
    
    .category-featured-section {
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .featured-big-card {
        height: 320px;
    }
    
    .featured-big-image {
        height: 320px;
    }
    
    .featured-big-title {
        font-size: 18px;
    }
    
    .featured-big-content {
        padding: 12px;
    }
    
    .featured-big-meta {
        font-size: 12px;
        gap: 10px;
    }
    
    .featured-small-card {
        height: 100px;
        gap: 10px;
    }
    
    .featured-small-image {
        width: 100px;
        height: 100px;
        position: relative;
        overflow: hidden;
    }
    
    .featured-small-image img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
    
    .featured-small-content {
        padding: 10px;
    }
    
    .featured-small-title {
        font-size: 13px;
    }
    
    .featured-small-meta {
        font-size: 11px;
    }
    
    .posts-grid {
        gap: 10px;
        margin-bottom: 25px;
    }
    
    .post-card {
        border-radius: 6px;
    }
    
    .post-thumbnail {
        padding-top: 56.25%;
    }
    
    .post-content {
        padding: 12px;
    }
    
    .post-title {
        font-size: 16px;
    }
    
    .post-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 2;
        min-height: 42px;
    }
    
    .post-meta {
        font-size: 12px;
        gap: 10px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .search-page .page-title {
        font-size: 18px;
    }
    
    .page-header {
        margin-bottom: 20px;
    }
    
    .pagination {
        margin-top: 25px;
    }
    
    .pagination .nav-links {
        gap: 5px;
    }
    
    .pagination a,
    .pagination span {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
    
    .pagination .prev,
    .pagination .next {
        padding: 0 10px;
    }
    
    .search-form-wrapper {
        padding: 20px 15px;
        margin-bottom: 25px;
    }
    
    .search-field {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .search-submit {
        padding: 10px 20px;
        font-size: 14px;
    }
}