/* Category Posts Shortcode Stílusok */

.category-posts-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0 auto;
    max-width: 100%;
}

.category-posts-header {
    margin-bottom: 32px;
    text-align: center;
    padding-bottom: 20px;

}

.category-posts-title {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0;
}

.category-posts-description {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.category-post-item {
background: #f8f8f8;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-post-featured-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-post-featured-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.category-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-post-no-image {
    width: 100%;
    height: 100%;
    background: #f9fafb;
    border: 2px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.category-post-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-post-meta {
    margin-bottom: 12px;
}

.category-post-date {
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    background-color: #034001;
    padding: 5px 10px;
    border-radius: 50px;
}

.category-post-title {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
}

.category-post-title a {
    color: #111827;
    text-decoration: none;
}

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

.category-post-excerpt {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

.category-post-read-more {
    margin-top: auto;
}

.category-read-more-link {
display: inline-block;
    background: #ececec;
    color: #000000;
    padding: 8px 25px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
}

.category-read-more-link:hover {
    background: #055902;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {

    .category-posts-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .category-posts-title {
        font-size: 24px;
    }
    
    .category-posts-description {
        font-size: 15px;
    }
    
    .category-posts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-post-featured-image {
        height: 180px;
    }
    
    .category-post-content {
        padding: 16px;
    }
    
    .category-post-title {
        font-size: 16px;
    }
    
    .category-post-excerpt {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .category-posts-container {
        padding: 0 12px;
    }
    
    .category-posts-header {
        margin-bottom: 20px;
    }
    
    .category-posts-title {
        font-size: 20px;
    }
    
    .category-posts-grid {
        gap: 20px;
    }
    
    .category-post-featured-image {
        height: 160px;
    }
    
    .category-post-content {
        padding: 14px;
    }
    
    .category-post-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .category-post-excerpt {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .category-read-more-link {
        padding: 6px 12px;
        font-size: 12px;
    }
}