/* Egyszerű Category Page CSS */

/* Fő konténer */
.category-page-container {
    margin: 40px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Kategória fejléc */
.category-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 30px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 16px;
    color: white;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.category-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.category-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 30px;
    max-width: 600px;
    opacity: 0.9;
}

.category-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.category-post-count {
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.category-post-count:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Bejegyzések grid */
.category-posts-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.category-posts-grid[data-columns="1"] { grid-template-columns: 1fr; }
.category-posts-grid[data-columns="2"] { grid-template-columns: repeat(2, 1fr); }
.category-posts-grid[data-columns="3"] { grid-template-columns: repeat(3, 1fr); }
.category-posts-grid[data-columns="4"] { grid-template-columns: repeat(4, 1fr); }

/* Bejegyzés elem */
.category-post-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-post-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

/* Kiemelt kép */
.category-post-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f3f4f6;
}

.category-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-post-item:hover .category-post-image img {
    transform: scale(1.05);
}

/* Tartalom */
.category-post-content {
    padding: 25px;
}

/* Meta információk */
.category-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.post-date {
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.post-date:hover {
    background: #dc2626;
    color: white;
}

.post-author {
    font-size: 12px;
    color: #6b7280;
        display: none;
    font-weight: 600;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.post-author:hover {
    background: #dc2626;
    color: white;
}

.post-category {
    background: #dc2626;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.post-category:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Cím */
.category-post-title {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.category-post-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-post-title a:hover {
    color: #dc2626;
}

/* Kivonat */
.category-post-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
}

/* Tovább link */
.category-post-read-more {
    display: inline-flex;
    align-items: center;
    background: #dc2626;
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.category-post-read-more:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.category-post-read-more::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.category-post-read-more:hover::after {
    margin-left: 12px;
}

/* Pagination */
.category-pagination {
    margin-top: 50px;
    text-align: center;
}

.pagination-nav {
    display: inline-block;
}

.pagination-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item a,
.pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pagination-item a:hover {
    color: white;
    background: #dc2626;
    border-color: #dc2626;
    transform: translateY(-2px);
}

.pagination-item .current {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.pagination-item .dots {
    border: none;
    background: none;
    color: #9ca3af;
}

/* Tablet nézet */
@media (max-width: 1024px) {
    .category-page-container {
        margin: 30px 0;
        padding: 18px;
    }
    
    .category-header {
        margin-bottom: 40px;
        padding: 35px 25px;
    }
    
    .category-title {
        font-size: 36px;
    }
    
    .category-description {
        font-size: 16px;
    }
    
    .category-posts-grid[data-columns="4"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-posts-grid[data-columns="3"] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-posts-grid {
        gap: 25px;
    }
    
    .category-post-image {
        height: 200px;
    }
    
    .category-post-content {
        padding: 20px;
    }
}

/* Mobil nézet */
@media (max-width: 768px) {
    .category-page-container {
        margin: 20px 0;
        padding: 15px;
    }
    
    .category-header {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .category-title {
        font-size: 30px;
    }
    
    .category-description {
        font-size: 15px;
    }
    
    .category-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .category-posts-grid[data-columns="2"],
    .category-posts-grid[data-columns="3"],
    .category-posts-grid[data-columns="4"] {
        grid-template-columns: 1fr;
    }
    
    .category-posts-grid {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .category-post-image {
        height: 180px;
    }
    
    .category-post-content {
        padding: 18px;
    }
    
    .category-post-title {
        font-size: 18px;
    }
    
    .category-post-excerpt {
        font-size: 13px;
    }
    
    .category-post-meta {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .pagination-list {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .pagination-item a,
    .pagination-item span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
}

/* Kis mobil nézet */
@media (max-width: 480px) {
    .category-page-container {
        padding: 12px;
    }
    
    .category-header {
        padding: 25px 15px;
    }
    
    .category-title {
        font-size: 26px;
    }
    
    .category-description {
        font-size: 14px;
    }
    
    .category-posts-grid {
        gap: 18px;
    }
    
    .category-post-image {
        height: 160px;
    }
    
    .category-post-content {
        padding: 15px;
    }
    
    .category-post-title {
        font-size: 17px;
    }
    
    .category-post-read-more {
        font-size: 13px;
        padding: 8px 16px;
    }
}